Remove useless "size restrictions" message

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12756 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ranma 2004-07-03 11:38:56 +00:00
parent 561612e85d
commit 5d60484769
1 changed files with 0 additions and 5 deletions

View File

@ -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];