diff --git a/doc/APIchanges b/doc/APIchanges index a491d1d24cc95d989df6de60e13d1a4c6298d58c..a561c01d0f463606ef1d21530a19131e111b88fb 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,9 @@ libavutil: 2012-10-22 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 Add CODEC_FLAG_UNALIGNED to allow decoders to produce unaligned output. diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c265d87fe61a0b9a33c2b51760afad316ba79c56..968f9e557a943f87249814a369f941462faa9425 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3537,6 +3537,8 @@ typedef struct AVCodecParserContext { * For all other types, this is in units of AVCodecContext.time_base. */ int duration; + + enum AVFieldOrder field_order; } AVCodecParserContext; typedef struct AVCodecParser { diff --git a/libavcodec/version.h b/libavcodec/version.h index 2165a3d061a55d42e5d4264df1a95f49367596f2..2dc0f4d89d77885e5ebdae6c541b73aafe95972d 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -27,7 +27,7 @@ */ #define LIBAVCODEC_VERSION_MAJOR 55 -#define LIBAVCODEC_VERSION_MINOR 3 +#define LIBAVCODEC_VERSION_MINOR 4 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \