changeset 12755:85556424c02e

Remove useless "size restrictions" message
author ranma
date Sat, 03 Jul 2004 11:38:56 +0000
parents 5a2eb96bb809
children b194d780dcda
files libmpdemux/mpeg_hdr.c
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/mpeg_hdr.c	Sat Jul 03 02:19:14 2004 +0000
+++ b/libmpdemux/mpeg_hdr.c	Sat Jul 03 11:38:56 2004 +0000
@@ -39,11 +39,6 @@
     width = ((height >> 12) + 15) & ~15;
     height = ((height & 0xfff) + 15) & ~15;
 
-    if ((width > 768) || (height > 576)){
-	printf("size restrictions for MP@ML or MPEG1 exceeded! (%dx%d)\n",width,height);
-//	return 1;	/* size restrictions for MP@ML or MPEG1 */
-    }
-    
     picture->aspect_ratio_information = buffer[3] >> 4;
     picture->frame_rate_code = buffer[3] & 15;
     picture->fps=frameratecode2framerate[picture->frame_rate_code];