Commit 1e7943c3 authored by Michael Niedermayer's avatar Michael Niedermayer

snow: yuv410 support

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fba18ef8
......@@ -295,6 +295,8 @@ static int decode_header(SnowContext *s){
s->avctx->pix_fmt= PIX_FMT_YUV420P;
}else if(s->chroma_h_shift == 0 && s->chroma_v_shift==0){
s->avctx->pix_fmt= PIX_FMT_YUV444P;
}else if(s->chroma_h_shift == 2 && s->chroma_v_shift==2){
s->avctx->pix_fmt= PIX_FMT_YUV410P;
} else {
av_log(s, AV_LOG_ERROR, "unsupported color subsample mode %d %d\n", s->chroma_h_shift, s->chroma_v_shift);
s->chroma_h_shift = s->chroma_v_shift = 1;
......
......@@ -220,7 +220,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
case PIX_FMT_YUV420P:
// case PIX_FMT_GRAY8:
// case PIX_FMT_YUV411P:
// case PIX_FMT_YUV410P:
case PIX_FMT_YUV410P:
s->colorspace_type= 0;
break;
/* case PIX_FMT_RGB32:
......
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