2 * based on libmpeg2/header.c by Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 static float frameratecode2framerate
[16] = {
33 // Official mpeg1/2 framerates: (1-8)
39 // libmpeg3's "Unofficial economy rates": (10-13)
41 // some invalid ones: (14-15)
46 int mp_header_process_sequence_header (mp_mpeg_header_t
* picture
, const unsigned char * buffer
)
50 if ((buffer
[6] & 0x20) != 0x20){
51 fprintf(stderr
, "missing marker bit!\n");
52 return 1; /* missing marker_bit */
55 height
= (buffer
[0] << 16) | (buffer
[1] << 8) | buffer
[2];
57 picture
->display_picture_width
= (height
>> 12);
58 picture
->display_picture_height
= (height
& 0xfff);
60 width
= ((height
>> 12) + 15) & ~15;
61 height
= ((height
& 0xfff) + 15) & ~15;
63 picture
->aspect_ratio_information
= buffer
[3] >> 4;
64 picture
->frame_rate_code
= buffer
[3] & 15;
65 picture
->fps
=frameratecode2framerate
[picture
->frame_rate_code
];
66 picture
->bitrate
= (buffer
[4]<<10)|(buffer
[5]<<2)|(buffer
[6]>>6);
68 picture
->picture_structure
= 3; //FRAME_PICTURE;
69 picture
->display_time
=100;
70 picture
->frame_rate_extension_n
= 1;
71 picture
->frame_rate_extension_d
= 1;
75 static int header_process_sequence_extension (mp_mpeg_header_t
* picture
,
76 unsigned char * buffer
)
78 /* check chroma format, size extensions, marker bit */
80 if ( ((buffer
[1] & 0x06) == 0x00) ||
81 ((buffer
[1] & 0x01) != 0x00) || (buffer
[2] & 0xe0) ||
82 ((buffer
[3] & 0x01) != 0x01) )
85 picture
->progressive_sequence
= (buffer
[1] >> 3) & 1;
86 picture
->frame_rate_extension_n
= ((buffer
[5] >> 5) & 3) + 1;
87 picture
->frame_rate_extension_d
= (buffer
[5] & 0x1f) + 1;
93 static int header_process_picture_coding_extension (mp_mpeg_header_t
* picture
, unsigned char * buffer
)
95 picture
->picture_structure
= buffer
[2] & 3;
96 picture
->top_field_first
= buffer
[3] >> 7;
97 picture
->repeat_first_field
= (buffer
[3] >> 1) & 1;
98 picture
->progressive_frame
= buffer
[4] >> 7;
100 // repeat_first implementation by A'rpi/ESP-team, based on libmpeg3:
101 picture
->display_time
=100;
102 if(picture
->repeat_first_field
){
103 if(picture
->progressive_sequence
){
104 if(picture
->top_field_first
)
105 picture
->display_time
+=200;
107 picture
->display_time
+=100;
109 if(picture
->progressive_frame
){
110 picture
->display_time
+=50;
113 //temopral hack. We calc time on every field, so if we have 2 fields
114 // interlaced we'll end with double time for 1 frame
115 if( picture
->picture_structure
!=3 ) picture
->display_time
/=2;
119 int mp_header_process_extension (mp_mpeg_header_t
* picture
, unsigned char * buffer
)
121 switch (buffer
[0] & 0xf0) {
122 case 0x10: /* sequence extension */
123 return header_process_sequence_extension (picture
, buffer
);
124 case 0x80: /* picture coding extension */
125 return header_process_picture_coding_extension (picture
, buffer
);
130 float mpeg12_aspect_info(mp_mpeg_header_t
*picture
)
134 switch(picture
->aspect_ratio_information
) {
135 case 2: // PAL/NTSC SVCD/DVD 4:3
136 case 8: // PAL VCD 4:3
137 case 12: // NTSC VCD 4:3
140 case 3: // PAL/NTSC Widescreen SVCD/DVD 16:9
141 case 6: // (PAL?)/NTSC Widescreen SVCD 16:9
144 case 4: // according to ISO-138182-2 Table 6.3
147 case 1: // VGA 1:1 - do not prescale
148 case 9: // Movie Type ??? / 640x480
152 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,"Detected unknown aspect_ratio_information in mpeg sequence header.\n"
153 "Please report the aspect value (%i) along with the movie type (VGA,PAL,NTSC,"
154 "SECAM) and the movie resolution (720x576,352x240,480x480,...) to the MPlayer"
155 " developers, so that we can add support for it!\nAssuming 1:1 aspect for now.\n",
156 picture
->aspect_ratio_information
);
163 unsigned char mp_getbits(unsigned char *buffer
, unsigned int from
, unsigned char len
)
166 unsigned char m
, u
, l
, y
;
171 l
= (len
> u
? len
- u
: 0);
173 y
= (buffer
[n
] << m
);
177 y
|= (buffer
[n
+1] >> (8-l
));
179 //fprintf(stderr, "GETBITS(%d -> %d): bytes=0x%x 0x%x, n=%d, m=%d, l=%d, u=%d, Y=%d\n",
180 // from, (int) len, (int) buffer[n],(int) buffer[n+1], n, (int) m, (int) l, (int) u, (int) y);
184 static inline unsigned int mp_getbits16(unsigned char *buffer
, unsigned int from
, unsigned char len
)
187 return (mp_getbits(buffer
, from
, len
- 8) << 8) | mp_getbits(buffer
, from
+ len
- 8, 8);
189 return mp_getbits(buffer
, from
, len
);
192 #define getbits mp_getbits
193 #define getbits16 mp_getbits16
195 static int read_timeinc(mp_mpeg_header_t
* picture
, unsigned char * buffer
, int n
)
197 if(picture
->timeinc_bits
> 8) {
198 picture
->timeinc_unit
= getbits(buffer
, n
, picture
->timeinc_bits
- 8) << 8;
199 n
+= picture
->timeinc_bits
- 8;
200 picture
->timeinc_unit
|= getbits(buffer
, n
, 8);
203 picture
->timeinc_unit
= getbits(buffer
, n
, picture
->timeinc_bits
);
204 n
+= picture
->timeinc_bits
;
206 //fprintf(stderr, "TIMEINC2: %d, bits: %d\n", picture->timeinc_unit, picture->timeinc_bits);
210 int mp4_header_process_vol(mp_mpeg_header_t
* picture
, unsigned char * buffer
)
212 unsigned int n
, aspect
=0, aspectw
=0, aspecth
=0, x
=1, v
;
214 //begins with 0x0000012x
216 picture
->timeinc_bits
= picture
->timeinc_resolution
= picture
->timeinc_unit
= 0;
218 if(getbits(buffer
, n
, 1))
221 aspect
=getbits(buffer
, n
, 4);
224 aspectw
= getbits(buffer
, n
, 8);
226 aspecth
= getbits(buffer
, n
, 8);
230 if(getbits(buffer
, n
, 1)) {
232 if(getbits(buffer
, n
, 1))
239 picture
->timeinc_resolution
= getbits(buffer
, n
, 8) << 8;
241 picture
->timeinc_resolution
|= getbits(buffer
, n
, 8);
244 picture
->timeinc_bits
= 0;
245 v
= picture
->timeinc_resolution
- 1;
248 picture
->timeinc_bits
++;
250 picture
->timeinc_bits
= (picture
->timeinc_bits
> 1 ? picture
->timeinc_bits
: 1);
254 if(getbits(buffer
, n
++, 1)) { //fixed_vop_timeinc
255 n
+= read_timeinc(picture
, buffer
, n
);
257 if(picture
->timeinc_unit
)
258 picture
->fps
= (float) picture
->timeinc_resolution
/ (float) picture
->timeinc_unit
;
262 picture
->display_picture_width
= getbits16(buffer
, n
, 13);
265 picture
->display_picture_height
= getbits16(buffer
, n
, 13);
268 //fprintf(stderr, "ASPECT: %d, PARW=%d, PARH=%d, TIMEINCRESOLUTION: %d, FIXED_TIMEINC: %d (number of bits: %d), FPS: %u\n",
269 // aspect, aspectw, aspecth, picture->timeinc_resolution, picture->timeinc_unit, picture->timeinc_bits, picture->fps);
274 void mp4_header_process_vop(mp_mpeg_header_t
* picture
, unsigned char * buffer
)
278 picture
->picture_type
= getbits(buffer
, n
, 2);
280 while(getbits(buffer
, n
, 1))
283 getbits(buffer
, n
, 1);
285 n
+= read_timeinc(picture
, buffer
, n
);
288 #define min(a, b) ((a) <= (b) ? (a) : (b))
290 static unsigned int read_golomb(unsigned char *buffer
, unsigned int *init
)
292 unsigned int x
, v
= 0, v2
= 0, m
, len
= 0, n
= *init
;
294 while(getbits(buffer
, n
++, 1) == 0)
301 v
|= getbits(buffer
, n
, m
);
308 for(n
= 0; n
< len
; n
++)
312 //fprintf(stderr, "READ_GOLOMB(%u), V=2^%u + %u-1 = %u\n", *init, len, v, v2);
317 inline static int read_golomb_s(unsigned char *buffer
, unsigned int *init
)
319 unsigned int v
= read_golomb(buffer
, init
);
320 return (v
& 1) ? ((v
+ 1) >> 1) : -(v
>> 1);
323 static int h264_parse_vui(mp_mpeg_header_t
* picture
, unsigned char * buf
, unsigned int n
)
325 unsigned int overscan
, vsp_color
, chroma
, timing
, fixed_fps
;
327 if(getbits(buf
, n
++, 1))
329 picture
->aspect_ratio_information
= getbits(buf
, n
, 8);
331 if(picture
->aspect_ratio_information
== 255)
333 picture
->display_picture_width
= (getbits(buf
, n
, 8) << 8) | getbits(buf
, n
+ 8, 8);
336 picture
->display_picture_height
= (getbits(buf
, n
, 8) << 8) | getbits(buf
, n
+ 8, 8);
341 if((overscan
=getbits(buf
, n
++, 1)))
343 if((vsp_color
=getbits(buf
, n
++, 1)))
346 if(getbits(buf
, n
++, 1))
349 if((chroma
=getbits(buf
, n
++, 1)))
351 read_golomb(buf
, &n
);
352 read_golomb(buf
, &n
);
354 if((timing
=getbits(buf
, n
++, 1)))
356 picture
->timeinc_unit
= (getbits(buf
, n
, 8) << 24) | (getbits(buf
, n
+8, 8) << 16) | (getbits(buf
, n
+16, 8) << 8) | getbits(buf
, n
+24, 8);
359 picture
->timeinc_resolution
= (getbits(buf
, n
, 8) << 24) | (getbits(buf
, n
+8, 8) << 16) | (getbits(buf
, n
+16, 8) << 8) | getbits(buf
, n
+24, 8);
362 fixed_fps
= getbits(buf
, n
, 1);
364 if(picture
->timeinc_unit
> 0 && picture
->timeinc_resolution
> 0)
365 picture
->fps
= (float) picture
->timeinc_resolution
/ (float) picture
->timeinc_unit
;
370 //fprintf(stderr, "H264_PARSE_VUI, OVESCAN=%u, VSP_COLOR=%u, CHROMA=%u, TIMING=%u, DISPW=%u, DISPH=%u, TIMERES=%u, TIMEINC=%u, FIXED_FPS=%u\n", overscan, vsp_color, chroma, timing, picture->display_picture_width, picture->display_picture_height,
371 // picture->timeinc_resolution, picture->timeinc_unit, picture->timeinc_unit, fixed_fps);
376 static int mp_unescape03(unsigned char *buf
, int len
)
388 if(buf
[i
] == 0 && buf
[i
+1] == 0 && buf
[i
+2] == 3)
390 dest
[j
] = dest
[j
+1] = 0;
402 dest
[j
] = buf
[len
-2];
403 dest
[j
+1] = buf
[len
-1];
405 memcpy(buf
, dest
, len
);
411 int h264_parse_sps(mp_mpeg_header_t
* picture
, unsigned char * buf
, int len
)
413 unsigned int n
= 0, v
, i
, k
, mbh
;
416 len
= mp_unescape03(buf
, len
);
418 picture
->fps
= picture
->timeinc_unit
= picture
->timeinc_resolution
= 0;
420 read_golomb(buf
, &n
);
422 if(read_golomb(buf
, &n
) == 3)
424 read_golomb(buf
, &n
);
425 read_golomb(buf
, &n
);
427 if(getbits(buf
, n
++, 1)){
428 for(i
= 0; i
< 8; i
++)
429 { // scaling list is skipped for now
430 if(getbits(buf
, n
++, 1))
433 for(k
= (i
< 6 ? 16 : 64); k
&& v
; k
--)
434 v
= (v
+ read_golomb_s(buf
, &n
)) & 255;
439 read_golomb(buf
, &n
);
440 v
= read_golomb(buf
, &n
);
442 read_golomb(buf
, &n
);
445 getbits(buf
, n
++, 1);
446 read_golomb(buf
, &n
);
447 read_golomb(buf
, &n
);
448 v
= read_golomb(buf
, &n
);
449 for(i
= 0; i
< v
; i
++)
450 read_golomb(buf
, &n
);
452 read_golomb(buf
, &n
);
453 getbits(buf
, n
++, 1);
454 picture
->display_picture_width
= 16 *(read_golomb(buf
, &n
)+1);
455 mbh
= read_golomb(buf
, &n
)+1;
456 frame_mbs_only
= getbits(buf
, n
++, 1);
457 picture
->display_picture_height
= 16 * (2 - frame_mbs_only
) * mbh
;
459 getbits(buf
, n
++, 1);
460 getbits(buf
, n
++, 1);
461 if(getbits(buf
, n
++, 1))
463 read_golomb(buf
, &n
);
464 read_golomb(buf
, &n
);
465 read_golomb(buf
, &n
);
466 read_golomb(buf
, &n
);
468 if(getbits(buf
, n
++, 1))
469 n
= h264_parse_vui(picture
, buf
, n
);
474 int mp_vc1_decode_sequence_header(mp_mpeg_header_t
* picture
, unsigned char * buf
, int len
)
478 len
= mp_unescape03(buf
, len
);
480 picture
->display_picture_width
= picture
->display_picture_height
= 0;
483 x
= getbits(buf
, n
, 2);
485 if(x
!= 3) //not advanced profile
488 getbits16(buf
, n
, 14);
490 picture
->display_picture_width
= getbits16(buf
, n
, 12) * 2 + 2;
492 picture
->display_picture_height
= getbits16(buf
, n
, 12) * 2 + 2;
496 x
= getbits(buf
, n
, 1);
500 getbits16(buf
, n
, 14);
502 getbits16(buf
, n
, 14);
504 if(getbits(buf
, n
++, 1)) //aspect ratio
506 x
= getbits(buf
, n
, 4);
510 getbits16(buf
, n
, 16);
515 if(getbits(buf
, n
++, 1)) //framerates
517 int frexp
=0, frnum
=0, frden
=0;
519 if(getbits(buf
, n
++, 1))
521 frexp
= getbits16(buf
, n
, 16);
523 picture
->fps
= (double) (frexp
+1) / 32.0;
527 float frates
[] = {0, 24000, 25000, 30000, 50000, 60000, 48000, 72000, 0};
528 float frdivs
[] = {0, 1000, 1001, 0};
530 frnum
= getbits(buf
, n
, 8);
532 frden
= getbits(buf
, n
, 4);
534 if((frden
== 1 || frden
== 2) && (frnum
< 8))
535 picture
->fps
= frates
[frnum
] / frdivs
[frden
];