summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-07-03 11:38:56 +0000
committerranma <ranma@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-07-03 11:38:56 +0000
commit5d60484769466b5b344bf3525760f0877b92a245 (patch)
treeb36da3cfc6ff67914706dfacf61a29459e5b07af /libmpdemux
parent561612e85db670a05a3af52765282660428b6ba6 (diff)
downloadmpv-5d60484769466b5b344bf3525760f0877b92a245.tar.bz2
mpv-5d60484769466b5b344bf3525760f0877b92a245.tar.xz
Remove useless "size restrictions" message
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12756 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/mpeg_hdr.c5
1 files changed, 0 insertions, 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];