Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-09-09 05:18:26 +0300
committerVittorio Giovara <vittorio.giovara@gmail.com>2016-01-21 23:33:19 +0300
commit0e6c8532215790bbe560a9eea4f3cc82bb55cf92 (patch)
tree0a45577e3a85a8aa3205093c39ef2d8dcca2d4a5 /libavcodec/qsvenc_h264.c
parent55c7e5bf7c8d368c9bc60a219b04849ec9f4c84c (diff)
lavc: Move b_frame_strategy and b_sensitivity to codec private options
The b_frame_strategy option is only used by mpegvideoenc, qsv, x264, and xavs, while b_sensitivity is only used by mpegvideoenc. These are very codec-specific options, so deprecate the global variants. Set proper limits to the maximum allowed values. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavcodec/qsvenc_h264.c')
-rw-r--r--libavcodec/qsvenc_h264.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/qsvenc_h264.c b/libavcodec/qsvenc_h264.c
index 2294604371..7f4fb8126f 100644
--- a/libavcodec/qsvenc_h264.c
+++ b/libavcodec/qsvenc_h264.c
@@ -109,7 +109,9 @@ static const AVCodecDefault qsv_enc_defaults[] = {
{ "coder", "ac" },
{ "flags", "+cgop" },
+#if FF_API_PRIVATE_OPT
{ "b_strategy", "-1" },
+#endif
{ NULL },
};