[FFmpeg-cvslog] mpegvideo: Fix swapping of UV planes for VCR2
Kostya Shishkov
git at videolan.org
Tue Nov 19 04:24:24 CET 2013
ffmpeg | branch: master | Kostya Shishkov <kostya.shishkov at gmail.com> | Wed Nov 13 18:44:26 2013 +0100| [16e7b189c548b4075ff4b5dd62af10e2acae260b] | committer: Diego Biurrun
mpegvideo: Fix swapping of UV planes for VCR2
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=16e7b189c548b4075ff4b5dd62af10e2acae260b
---
libavcodec/mpegvideo.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 7ffb261..737a92f 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -518,6 +518,15 @@ fail:
return ret;
}
+static void exchange_uv(MpegEncContext *s)
+{
+ int16_t (*tmp)[64];
+
+ tmp = s->pblocks[4];
+ s->pblocks[4] = s->pblocks[5];
+ s->pblocks[5] = tmp;
+}
+
static int init_duplicate_context(MpegEncContext *s)
{
int y_size = s->b8_stride * (2 * s->mb_height + 1);
@@ -548,6 +557,8 @@ static int init_duplicate_context(MpegEncContext *s)
for (i = 0; i < 12; i++) {
s->pblocks[i] = &s->block[i];
}
+ if (s->avctx->codec_tag == AV_RL32("VCR2"))
+ exchange_uv(s);
if (s->out_format == FMT_H263) {
/* ac values */
@@ -622,6 +633,8 @@ int ff_update_duplicate_context(MpegEncContext *dst, MpegEncContext *src)
for (i = 0; i < 12; i++) {
dst->pblocks[i] = &dst->block[i];
}
+ if (dst->avctx->codec_tag == AV_RL32("VCR2"))
+ exchange_uv(dst);
if (!dst->edge_emu_buffer &&
(ret = ff_mpv_frame_size_alloc(dst, dst->linesize)) < 0) {
av_log(dst->avctx, AV_LOG_ERROR, "failed to allocate context "
More information about the ffmpeg-cvslog
mailing list