diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-11-14 15:16:01 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-01-27 09:14:39 +0100 |
commit | e44b58924fe7b180bf8b0c277c15d1a58210a0e9 (patch) | |
tree | 8a5f1e4668aa76616c0ca805eb5b02e21d657a1c /libavcodec/avcodec.h | |
parent | f771b3ab5d3c0b763ee356152be550f4121babd0 (diff) | |
download | ffmpeg-e44b58924fe7b180bf8b0c277c15d1a58210a0e9.tar.gz |
lavc: deprecate unused AVCodecContext.stream_codec_tag
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 025f1198bf..1abe985a48 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1081,13 +1081,13 @@ typedef struct AVCodecContext { */ unsigned int codec_tag; +#if FF_API_STREAM_CODEC_TAG /** - * fourcc from the AVI stream header (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A'). - * This is used to work around some encoder bugs. - * - encoding: unused - * - decoding: Set by user, will be converted to uppercase by libavcodec during init. + * @deprecated this field is unused */ + attribute_deprecated unsigned int stream_codec_tag; +#endif void *priv_data; |