changeset 178:374f80a78f0d libavcodec

informal msg
author arpi_esp
date Wed, 26 Dec 2001 14:02:08 +0000
parents 53da914d6f46
children 02b2b7ffe324
files mpegvideo.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mpegvideo.c	Sun Dec 23 22:25:18 2001 +0000
+++ b/mpegvideo.c	Wed Dec 26 14:02:08 2001 +0000
@@ -273,8 +273,10 @@
             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: