1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/frame: add AV_FRAME_FLAG_LOSSLESS

Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
Marton Balint
2024-12-08 20:13:28 +01:00
parent 539cea3183
commit 2d91f89445
3 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,9 @@ The last version increases of all libraries were on 2024-03-07
API changes, most recent first:
2025-01-05 - xxxxxxxxxx - lavc 61.30.100 - frame.h
Add AV_FRAME_FLAG_LOSSLESS.
2025-01-03 - xxxxxxxxxx - lavc 61.29.100 - codec_id.h
Add AV_CODEC_ID_JPEGXL_ANIM.

View File

@ -29,7 +29,7 @@
#include "version_major.h"
#define LIBAVCODEC_VERSION_MINOR 29
#define LIBAVCODEC_VERSION_MINOR 30
#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \

View File

@ -665,6 +665,10 @@ typedef struct AVFrame {
* is interlaced.
*/
#define AV_FRAME_FLAG_TOP_FIELD_FIRST (1 << 4)
/**
* A flag to mark frames which were encoded losslessly from the input.
*/
#define AV_FRAME_FLAG_LOSSLESS (1 << 5)
/**
* @}
*/