summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-10-08 10:39:02 +0000
committerAnton Khirnov <anton@khirnov.net>2014-10-18 05:26:56 +0200
commit59b55c494e01de09dfd7cbf9cbbe7223265ac283 (patch)
tree7bf55f68c49547626293db6d74fb5a6a8025138a /avconv.c
parent66a68ddd1ac376b24db8695058bc8fc28f5bada6 (diff)
lavc: deprecate unused me_threshold field
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/avconv.c b/avconv.c
index c94e8f83fc..dc21afff4a 100644
--- a/avconv.c
+++ b/avconv.c
@@ -564,8 +564,7 @@ static void do_video_out(AVFormatContext *s,
in_picture->top_field_first = !!ost->top_field_first;
in_picture->quality = enc->global_quality;
- if (!enc->me_threshold)
- in_picture->pict_type = 0;
+ in_picture->pict_type = 0;
if (ost->forced_kf_index < ost->forced_kf_count &&
in_picture->pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
in_picture->pict_type = AV_PICTURE_TYPE_I;