You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavc: add lossy/lossless codec properties.
This commit is contained in:
@@ -13,6 +13,10 @@ libavutil: 2011-04-18
|
|||||||
|
|
||||||
API changes, most recent first:
|
API changes, most recent first:
|
||||||
|
|
||||||
|
2012-xx-xx - xxxxxxx - lavc 54.26.1 - avcodec.h
|
||||||
|
Add codec descriptor properties AV_CODEC_PROP_LOSSY and
|
||||||
|
AV_CODEC_PROP_LOSSLESS.
|
||||||
|
|
||||||
2012-08-18 - lavc 54.26 - avcodec.h
|
2012-08-18 - lavc 54.26 - avcodec.h
|
||||||
Add codec descriptors for accessing codec properties without having
|
Add codec descriptors for accessing codec properties without having
|
||||||
to refer to a specific decoder or encoder.
|
to refer to a specific decoder or encoder.
|
||||||
|
@@ -467,6 +467,16 @@ typedef struct AVCodecDescriptor {
|
|||||||
* Video codecs only.
|
* Video codecs only.
|
||||||
*/
|
*/
|
||||||
#define AV_CODEC_PROP_INTRA_ONLY (1 << 0)
|
#define AV_CODEC_PROP_INTRA_ONLY (1 << 0)
|
||||||
|
/**
|
||||||
|
* Codec supports lossy compression. Audio and video codecs only.
|
||||||
|
* @note a codec may support both lossy and lossless
|
||||||
|
* compression modes
|
||||||
|
*/
|
||||||
|
#define AV_CODEC_PROP_LOSSY (1 << 1)
|
||||||
|
/**
|
||||||
|
* Codec supports lossless compression. Audio and video codecs only.
|
||||||
|
*/
|
||||||
|
#define AV_CODEC_PROP_LOSSLESS (1 << 2)
|
||||||
|
|
||||||
#if FF_API_OLD_DECODE_AUDIO
|
#if FF_API_OLD_DECODE_AUDIO
|
||||||
/* in bytes */
|
/* in bytes */
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
#define LIBAVCODEC_VERSION_MAJOR 54
|
#define LIBAVCODEC_VERSION_MAJOR 54
|
||||||
#define LIBAVCODEC_VERSION_MINOR 26
|
#define LIBAVCODEC_VERSION_MINOR 26
|
||||||
#define LIBAVCODEC_VERSION_MICRO 0
|
#define LIBAVCODEC_VERSION_MICRO 1
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||||
LIBAVCODEC_VERSION_MINOR, \
|
LIBAVCODEC_VERSION_MINOR, \
|
||||||
|
Reference in New Issue
Block a user