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/options_table.h | |
parent | f771b3ab5d3c0b763ee356152be550f4121babd0 (diff) | |
download | ffmpeg-e44b58924fe7b180bf8b0c277c15d1a58210a0e9.tar.gz |
lavc: deprecate unused AVCodecContext.stream_codec_tag
Diffstat (limited to 'libavcodec/options_table.h')
-rw-r--r-- | libavcodec/options_table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h index 91d7ff9585..621f77fd63 100644 --- a/libavcodec/options_table.h +++ b/libavcodec/options_table.h @@ -308,7 +308,9 @@ static const AVOption avcodec_options[] = { {"simple", "use mbcmp (default)", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MB_DECISION_SIMPLE }, INT_MIN, INT_MAX, V|E, "mbd"}, {"bits", "use fewest bits", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MB_DECISION_BITS }, INT_MIN, INT_MAX, V|E, "mbd"}, {"rd", "use best rate distortion", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MB_DECISION_RD }, INT_MIN, INT_MAX, V|E, "mbd"}, +#if FF_API_STREAM_CODEC_TAG {"stream_codec_tag", NULL, OFFSET(stream_codec_tag), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX}, +#endif {"sc_threshold", "scene change threshold", OFFSET(scenechange_threshold), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|E}, #if FF_API_MPV_OPT {"lmin", "deprecated, use encoder private options instead", OFFSET(lmin), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, V|E}, |