From 5d60484769466b5b344bf3525760f0877b92a245 Mon Sep 17 00:00:00 2001 From: ranma Date: Sat, 3 Jul 2004 11:38:56 +0000 Subject: [PATCH] Remove useless "size restrictions" message git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12756 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/mpeg_hdr.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libmpdemux/mpeg_hdr.c b/libmpdemux/mpeg_hdr.c index f9ce49d867..65be35d779 100644 --- a/libmpdemux/mpeg_hdr.c +++ b/libmpdemux/mpeg_hdr.c @@ -39,11 +39,6 @@ int mp_header_process_sequence_header (mp_mpeg_header_t * picture, unsigned char 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];