diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-05 22:46:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-05 22:48:47 +0100 |
commit | 9222a176e14847a8751e8d799799573e652550ad (patch) | |
tree | 56ed1b3476d31c3650a0ec7e77ea0bed98ad47f8 /libavcodec/mpegvideo.c | |
parent | 9d921cce4f5501e4c507cc921f76a283bee39d09 (diff) | |
parent | c45eeb2dbf42382d335da8068231a8026c08843b (diff) | |
download | ffmpeg-9222a176e14847a8751e8d799799573e652550ad.tar.gz |
Merge commit 'c45eeb2dbf42382d335da8068231a8026c08843b'
* commit 'c45eeb2dbf42382d335da8068231a8026c08843b':
mpegvideo: replace assert about interlaced EC with debug av_log()
Conflicts:
libavcodec/mpegvideo.c
See: c88bbc01eb7f67f7399fb89800bf1bfc89edb248
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index f84557b4d3..35a10b9c0b 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -361,7 +361,8 @@ static void mpeg_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type, s->dest[2] = s->current_picture.f->data[2] + (s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize) + s->mb_x * (16 >> s->chroma_x_shift); if (ref) - av_log(s->avctx, AV_LOG_DEBUG, "Interlaced error concealment is not fully implemented\n"); + av_log(s->avctx, AV_LOG_DEBUG, + "Interlaced error concealment is not fully implemented\n"); ff_mpv_decode_mb(s, s->block); } |