diff options
author | Kieran Kunhya <kierank@obe.tv> | 2014-08-03 19:24:56 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-03 15:43:02 -0700 |
commit | 1ef9e8376466bb1e2c147e47554b94cab9c8b04a (patch) | |
tree | eccb333b18ff0e037c9b2956f12e752ade4ef0c5 /libavcodec/avcodec.h | |
parent | d0393d79bc3d61c9f2ff832c0e273b7774ff0269 (diff) | |
download | ffmpeg-1ef9e8376466bb1e2c147e47554b94cab9c8b04a.tar.gz |
avcodec: Deprecate dtg_active_format field in favor of avframe side-data
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index dc8d57e186..3569ac15d1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1503,6 +1503,7 @@ typedef struct AVCodecContext { */ int me_subpel_quality; +#if FF_API_AFD /** * DTG active format information (additional aspect ratio * information only used in DVB MPEG-2 transport streams) @@ -1510,8 +1511,9 @@ typedef struct AVCodecContext { * * - encoding: unused * - decoding: Set by decoder. + * @deprecated Deprecated in favor of AVSideData */ - int dtg_active_format; + attribute_deprecated int dtg_active_format; #define FF_DTG_AFD_SAME 8 #define FF_DTG_AFD_4_3 9 #define FF_DTG_AFD_16_9 10 @@ -1519,6 +1521,7 @@ typedef struct AVCodecContext { #define FF_DTG_AFD_4_3_SP_14_9 13 #define FF_DTG_AFD_16_9_SP_14_9 14 #define FF_DTG_AFD_SP_4_3 15 +#endif /* FF_API_AFD */ /** * maximum motion estimation search range in subpel units |