avcodec: Add field order information to AVCodecParserContext.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
566b7a20fd
commit
507b1e454c
@ -13,6 +13,9 @@ libavutil: 2012-10-22
|
|||||||
|
|
||||||
API changes, most recent first:
|
API changes, most recent first:
|
||||||
|
|
||||||
|
2013-04-xx - xxxxxxx - lavc 55.4.0 - avcodec.h
|
||||||
|
Add field_order to AVCodecParserContext.
|
||||||
|
|
||||||
2013-03-xx - xxxxxxx - lavc 55.2.0 - avcodec.h
|
2013-03-xx - xxxxxxx - lavc 55.2.0 - avcodec.h
|
||||||
Add CODEC_FLAG_UNALIGNED to allow decoders to produce unaligned output.
|
Add CODEC_FLAG_UNALIGNED to allow decoders to produce unaligned output.
|
||||||
|
|
||||||
|
|||||||
@ -3537,6 +3537,8 @@ typedef struct AVCodecParserContext {
|
|||||||
* For all other types, this is in units of AVCodecContext.time_base.
|
* For all other types, this is in units of AVCodecContext.time_base.
|
||||||
*/
|
*/
|
||||||
int duration;
|
int duration;
|
||||||
|
|
||||||
|
enum AVFieldOrder field_order;
|
||||||
} AVCodecParserContext;
|
} AVCodecParserContext;
|
||||||
|
|
||||||
typedef struct AVCodecParser {
|
typedef struct AVCodecParser {
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_MAJOR 55
|
#define LIBAVCODEC_VERSION_MAJOR 55
|
||||||
#define LIBAVCODEC_VERSION_MINOR 3
|
#define LIBAVCODEC_VERSION_MINOR 4
|
||||||
#define LIBAVCODEC_VERSION_MICRO 0
|
#define LIBAVCODEC_VERSION_MICRO 0
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user