comparison libmpdemux/video.c @ 4336:71fa805e84d6

aspect ratio 9 added.
author jaf
date Thu, 24 Jan 2002 15:21:22 +0000
parents aca490499e1f
children f6d45a3f005c
comparison
equal deleted inserted replaced
4335:270cbfe45b30 4336:71fa805e84d6
118 sh_video->aspect=4.0/3.0; 118 sh_video->aspect=4.0/3.0;
119 break; 119 break;
120 case 3: // PAL/NTSC Widescreen SVCD/DVD 16:9 120 case 3: // PAL/NTSC Widescreen SVCD/DVD 16:9
121 case 6: // (PAL?)/NTSC Widescreen SVCD 16:9 121 case 6: // (PAL?)/NTSC Widescreen SVCD 16:9
122 sh_video->aspect=16.0/9.0; 122 sh_video->aspect=16.0/9.0;
123 break;
124 case 9: // Movie Type ??? / 640x480
125 sh_video->aspect=0.0;
123 break; 126 break;
124 default: 127 default:
125 fprintf(stderr,"Detected unknown aspect_ratio_information in mpeg sequence header.\n" 128 fprintf(stderr,"Detected unknown aspect_ratio_information in mpeg sequence header.\n"
126 "Please report the aspect value (%i) along with the movie type (VGA,PAL,NTSC," 129 "Please report the aspect value (%i) along with the movie type (VGA,PAL,NTSC,"
127 "SECAM) and the movie resolution (720x576,352x240,480x480,...) to the MPlayer" 130 "SECAM) and the movie resolution (720x576,352x240,480x480,...) to the MPlayer"