diff options
author | Arpi <arpi@thot.banki.hu> | 2001-12-26 14:02:08 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2001-12-26 14:02:08 +0000 |
commit | 3a842ea5d1917e0702a7dc6f0732052dd848ae05 (patch) | |
tree | 3001092ef43f33a431dd457ac552c7d2fe41e6c9 | |
parent | 51fdf2de1be1582b4cd5a1b0aa78a651f3a57435 (diff) | |
download | ffmpeg-3a842ea5d1917e0702a7dc6f0732052dd848ae05.tar.gz |
informal msg
Originally committed as revision 238 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpegvideo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index ab9190a399..80a35635d6 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -273,8 +273,10 @@ int MPV_encode_init(AVCodecContext *avctx) return -1; break; case CODEC_ID_H263: - if (h263_get_picture_format(s->width, s->height) == 7) + if (h263_get_picture_format(s->width, s->height) == 7){ + printf("Input picture size isn't suitable for h263 codec! try h263+\n"); return -1; + } s->out_format = FMT_H263; break; case CODEC_ID_H263P: |