Commit b227be34 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mjpegenc: the AMV encoder doesnt support yuv422

Fixes Ticket3883
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 808db3e6
......@@ -241,7 +241,7 @@ AVCodec ff_amv_encoder = {
.encode2 = amv_encode_picture,
.close = ff_mpv_encode_end,
.pix_fmts = (const enum AVPixelFormat[]){
AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_NONE
AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_NONE
},
};
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment