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:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-20 00:43:16 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-20 00:43:16 +0400
commit373d7dd3716067d5151fe33b35db1aa3d1921229 (patch)
tree9712979adf1cb11344e7247a63628831b5fd52e2 /libavcodec/mvcdec.c
parent75ef907db80f77912f8e7815e75cf401dd68e2f2 (diff)
parent911fa05b514e1be009e00b79d7004b93717c023b (diff)
Merge commit '911fa05b514e1be009e00b79d7004b93717c023b'
* commit '911fa05b514e1be009e00b79d7004b93717c023b': mvc: Specify the pixel format for the mv-mvc* tests Conflicts: tests/fate/video.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mvcdec.c')
-rw-r--r--libavcodec/mvcdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mvcdec.c b/libavcodec/mvcdec.c
index f37b76da8c..69f0ee259c 100644
--- a/libavcodec/mvcdec.c
+++ b/libavcodec/mvcdec.c
@@ -52,7 +52,7 @@ static av_cold int mvc_decode_init(AVCodecContext *avctx)
return ret;
avctx->pix_fmt = (avctx->codec_id == AV_CODEC_ID_MVC1) ? AV_PIX_FMT_RGB555
- : AV_PIX_FMT_BGRA;
+ : AV_PIX_FMT_RGB32;
s->frame = av_frame_alloc();
if (!s->frame)
return AVERROR(ENOMEM);