summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-11-14 15:16:01 +0100
committerAnton Khirnov <anton@khirnov.net>2015-01-27 09:14:39 +0100
commite44b58924fe7b180bf8b0c277c15d1a58210a0e9 (patch)
tree8a5f1e4668aa76616c0ca805eb5b02e21d657a1c /libavcodec/avcodec.h
parentf771b3ab5d3c0b763ee356152be550f4121babd0 (diff)
lavc: deprecate unused AVCodecContext.stream_codec_tag
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h8
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;