summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-27 11:19:52 +0100
committerAnton Khirnov <anton@khirnov.net>2013-10-31 20:21:13 +0100
commitccc71298456d97f64f539e303c771d04dcb33c53 (patch)
tree836aa017e856990ff331a24fe0b6078e6b36de80 /libavcodec/mpegvideo.c
parentb6a4701612514c97d22f7ffb37993539f7718352 (diff)
lavc: deprecate FF_DEBUG_MV and remove all traces of its use
It has not been actually used since 37045e422903695e610cca6ecb753df643ab9380, when the broken vismv code was removed.
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 718f946302..ae458ab96d 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -321,8 +321,7 @@ static int alloc_picture_tables(MpegEncContext *s, Picture *pic)
return AVERROR(ENOMEM);
}
- if (s->out_format == FMT_H263 || s->encoding ||
- (s->avctx->debug & FF_DEBUG_MV) || s->avctx->debug_mv) {
+ if (s->out_format == FMT_H263 || s->encoding) {
int mv_size = 2 * (b8_array_size + 4) * sizeof(int16_t);
int ref_index_size = 4 * mb_array_size;