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:
authorLukasz Marek <lukasz.m.luki2@gmail.com>2014-11-21 02:17:46 +0300
committerLukasz Marek <lukasz.m.luki2@gmail.com>2014-11-21 03:19:53 +0300
commit7d75a399a4d216ea3d924d6e8c18868731d93132 (patch)
treedb1a193f34f1a2f158ac61373133c4b015f6e42b /libavcodec/options.c
parent21ded9ce67d8a17acfb8cf5b243099b575e09cb0 (diff)
lavc/options: fix rc_eq leak
rc_eq is an option, so it is copied by av_opt_copy(dest, src); above.
Diffstat (limited to 'libavcodec/options.c')
-rw-r--r--libavcodec/options.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c
index 9713e8d33e..44f3e904bf 100644
--- a/libavcodec/options.c
+++ b/libavcodec/options.c
@@ -209,16 +209,6 @@ int avcodec_copy_context(AVCodecContext *dest, const AVCodecContext *src)
dest->inter_matrix = NULL;
dest->rc_override = NULL;
dest->subtitle_header = NULL;
-#if FF_API_MPV_OPT
- FF_DISABLE_DEPRECATION_WARNINGS
- dest->rc_eq = NULL;
- if (src->rc_eq) {
- dest->rc_eq = av_strdup(src->rc_eq);
- if (!dest->rc_eq)
- return AVERROR(ENOMEM);
- }
- FF_ENABLE_DEPRECATION_WARNINGS
-#endif
#define alloc_and_copy_or_fail(obj, size, pad) \
if (src->obj && size > 0) { \