Browse Source

Improve unsupported (pixel) format error message.

patch by Stefano Sabatini, stefano.sabatini-lala poste it

Originally committed as revision 10996 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Stefano Sabatini Diego Biurrun 18 years ago
parent
commit
2e39d0cd5b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/snow.c

+ 1
- 1
libavcodec/snow.c View File

@@ -4115,7 +4115,7 @@ static int encode_init(AVCodecContext *avctx)
s->colorspace= 1;
break;*/
default:
av_log(avctx, AV_LOG_ERROR, "format not supported\n");
av_log(avctx, AV_LOG_ERROR, "pixel format not supported\n");
return -1;
}
// avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_h_shift, &s->chroma_v_shift);


Loading…
Cancel
Save