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;
73 static int header_process_sequence_extension (mp_mpeg_header_t
* picture
,
74 unsigned char * buffer
)
76 /* check chroma format, size extensions, marker bit */
78 if ( ((buffer
[1] & 0x06) == 0x00) ||
79 ((buffer
[1] & 0x01) != 0x00) || (buffer
[2] & 0xe0) ||
80 ((buffer
[3] & 0x01) != 0x01) )
83 picture
->progressive_sequence
= (buffer
[1] >> 3) & 1;
88 static int header_process_picture_coding_extension (mp_mpeg_header_t
* picture
, unsigned char * buffer
)
90 picture
->picture_structure
= buffer
[2] & 3;
91 picture
->top_field_first
= buffer
[3] >> 7;
92 picture
->repeat_first_field
= (buffer
[3] >> 1) & 1;
93 picture
->progressive_frame
= buffer
[4] >> 7;
95 // repeat_first implementation by A'rpi/ESP-team, based on libmpeg3:
96 picture
->display_time
=100;
97 if(picture
->repeat_first_field
){
98 if(picture
->progressive_sequence
){
99 if(picture
->top_field_first
)
100 picture
->display_time
+=200;
102 picture
->display_time
+=100;
104 if(picture
->progressive_frame
){
105 picture
->display_time
+=50;
108 //temopral hack. We calc time on every field, so if we have 2 fields
109 // interlaced we'll end with double time for 1 frame
110 if( picture
->picture_structure
!=3 ) picture
->display_time
/=2;
114 int mp_header_process_extension (mp_mpeg_header_t
* picture
, unsigned char * buffer
)
116 switch (buffer
[0] & 0xf0) {
117 case 0x10: /* sequence extension */
118 return header_process_sequence_extension (picture
, buffer
);
119 case 0x80: /* picture coding extension */
120 return header_process_picture_coding_extension (picture
, buffer
);
125 float mpeg12_aspect_info(mp_mpeg_header_t
*picture
)
129 switch(picture
->aspect_ratio_information
) {
130 case 2: // PAL/NTSC SVCD/DVD 4:3
131 case 8: // PAL VCD 4:3
132 case 12: // NTSC VCD 4:3
135 case 3: // PAL/NTSC Widescreen SVCD/DVD 16:9
136 case 6: // (PAL?)/NTSC Widescreen SVCD 16:9
139 case 4: // according to ISO-138182-2 Table 6.3
142 case 1: // VGA 1:1 - do not prescale
143 case 9: // Movie Type ??? / 640x480
147 mp_msg(MSGT_DECVIDEO
,MSGL_ERR
,"Detected unknown aspect_ratio_information in mpeg sequence header.\n"
148 "Please report the aspect value (%i) along with the movie type (VGA,PAL,NTSC,"
149 "SECAM) and the movie resolution (720x576,352x240,480x480,...) to the MPlayer"
150 " developers, so that we can add support for it!\nAssuming 1:1 aspect for now.\n",
151 picture
->aspect_ratio_information
);
158 unsigned char mp_getbits(unsigned char *buffer
, unsigned int from
, unsigned char len
)
161 unsigned char m
, u
, l
, y
;
166 l
= (len
> u
? len
- u
: 0);
168 y
= (buffer
[n
] << m
);
172 y
|= (buffer
[n
+1] >> (8-l
));
174 //fprintf(stderr, "GETBITS(%d -> %d): bytes=0x%x 0x%x, n=%d, m=%d, l=%d, u=%d, Y=%d\n",
175 // from, (int) len, (int) buffer[n],(int) buffer[n+1], n, (int) m, (int) l, (int) u, (int) y);
179 static inline unsigned int mp_getbits16(unsigned char *buffer
, unsigned int from
, unsigned char len
)
182 return (mp_getbits(buffer
, from
, len
- 8) << 8) | mp_getbits(buffer
, from
+ len
- 8, 8);
184 return mp_getbits(buffer
, from
, len
);
187 #define getbits mp_getbits
188 #define getbits16 mp_getbits16
190 static int read_timeinc(mp_mpeg_header_t
* picture
, unsigned char * buffer
, int n
)
192 if(picture
->timeinc_bits
> 8) {
193 picture
->timeinc_unit
= getbits(buffer
, n
, picture
->timeinc_bits
- 8) << 8;
194 n
+= picture
->timeinc_bits
- 8;
195 picture
->timeinc_unit
|= getbits(buffer
, n
, 8);
198 picture
->timeinc_unit
= getbits(buffer
, n
, picture
->timeinc_bits
);
199 n
+= picture
->timeinc_bits
;
201 //fprintf(stderr, "TIMEINC2: %d, bits: %d\n", picture->timeinc_unit, picture->timeinc_bits);
205 int mp4_header_process_vol(mp_mpeg_header_t
* picture
, unsigned char * buffer
)
207 unsigned int n
, aspect
=0, aspectw
=0, aspecth
=0, x
=1, v
;
209 //begins with 0x0000012x
211 picture
->timeinc_bits
= picture
->timeinc_resolution
= picture
->timeinc_unit
= 0;
213 if(getbits(buffer
, n
, 1))
216 aspect
=getbits(buffer
, n
, 4);
219 aspectw
= getbits(buffer
, n
, 8);
221 aspecth
= getbits(buffer
, n
, 8);
225 if(getbits(buffer
, n
, 1)) {
227 if(getbits(buffer
, n
, 1))
234 picture
->timeinc_resolution
= getbits(buffer
, n
, 8) << 8;
236 picture
->timeinc_resolution
|= getbits(buffer
, n
, 8);
239 picture
->timeinc_bits
= 0;
240 v
= picture
->timeinc_resolution
- 1;
243 picture
->timeinc_bits
++;
245 picture
->timeinc_bits
= (picture
->timeinc_bits
> 1 ? picture
->timeinc_bits
: 1);
249 if(getbits(buffer
, n
, 1)) { //fixed_vop_timeinc
251 n
= read_timeinc(picture
, buffer
, n
);
253 if(picture
->timeinc_unit
)
254 picture
->fps
= (float) picture
->timeinc_resolution
/ (float) picture
->timeinc_unit
;
257 //fprintf(stderr, "ASPECT: %d, PARW=%d, PARH=%d, TIMEINCRESOLUTION: %d, FIXED_TIMEINC: %d (number of bits: %d), FPS: %u\n",
258 // aspect, aspectw, aspecth, picture->timeinc_resolution, picture->timeinc_unit, picture->timeinc_bits, picture->fps);
263 void mp4_header_process_vop(mp_mpeg_header_t
* picture
, unsigned char * buffer
)
267 picture
->picture_type
= getbits(buffer
, n
, 2);
269 while(getbits(buffer
, n
, 1))
272 getbits(buffer
, n
, 1);
274 n
= read_timeinc(picture
, buffer
, n
);
277 #define min(a, b) ((a) <= (b) ? (a) : (b))
279 static unsigned int read_golomb(unsigned char *buffer
, unsigned int *init
)
281 unsigned int x
, v
= 0, v2
= 0, m
, len
= 0, n
= *init
;
283 while(getbits(buffer
, n
++, 1) == 0)
290 v
|= getbits(buffer
, n
, m
);
297 for(n
= 0; n
< len
; n
++)
301 //fprintf(stderr, "READ_GOLOMB(%u), V=2^%u + %u-1 = %u\n", *init, len, v, v2);
306 inline static int read_golomb_s(unsigned char *buffer
, unsigned int *init
)
308 unsigned int v
= read_golomb(buffer
, init
);
309 return (v
& 1) ? ((v
+ 1) >> 1) : -(v
>> 1);
312 static int h264_parse_vui(mp_mpeg_header_t
* picture
, unsigned char * buf
, unsigned int n
)
314 unsigned int overscan
, vsp_color
, chroma
, timing
, fixed_fps
;
316 if(getbits(buf
, n
++, 1))
318 picture
->aspect_ratio_information
= getbits(buf
, n
, 8);
320 if(picture
->aspect_ratio_information
== 255)
322 picture
->display_picture_width
= (getbits(buf
, n
, 8) << 8) | getbits(buf
, n
+ 8, 8);
325 picture
->display_picture_height
= (getbits(buf
, n
, 8) << 8) | getbits(buf
, n
+ 8, 8);
330 if((overscan
=getbits(buf
, n
++, 1)))
332 if((vsp_color
=getbits(buf
, n
++, 1)))
335 if(getbits(buf
, n
++, 1))
338 if((chroma
=getbits(buf
, n
++, 1)))
340 read_golomb(buf
, &n
);
341 read_golomb(buf
, &n
);
343 if((timing
=getbits(buf
, n
++, 1)))
345 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);
348 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);
351 fixed_fps
= getbits(buf
, n
, 1);
353 if(picture
->timeinc_unit
> 0 && picture
->timeinc_resolution
> 0)
354 picture
->fps
= (float) picture
->timeinc_resolution
/ (float) picture
->timeinc_unit
;
359 //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,
360 // picture->timeinc_resolution, picture->timeinc_unit, picture->timeinc_unit, fixed_fps);
365 static int mp_unescape03(unsigned char *buf
, int len
);
367 int h264_parse_sps(mp_mpeg_header_t
* picture
, unsigned char * buf
, int len
)
369 unsigned int n
= 0, v
, i
, k
, mbh
;
372 len
= mp_unescape03(buf
, len
);
374 picture
->fps
= picture
->timeinc_unit
= picture
->timeinc_resolution
= 0;
376 read_golomb(buf
, &n
);
378 if(read_golomb(buf
, &n
) == 3)
380 read_golomb(buf
, &n
);
381 read_golomb(buf
, &n
);
383 if(getbits(buf
, n
++, 1)){
384 for(i
= 0; i
< 8; i
++)
385 { // scaling list is skipped for now
386 if(getbits(buf
, n
++, 1))
389 for(k
= (i
< 6 ? 16 : 64); k
&& v
; k
--)
390 v
= (v
+ read_golomb_s(buf
, &n
)) & 255;
395 read_golomb(buf
, &n
);
396 v
= read_golomb(buf
, &n
);
398 read_golomb(buf
, &n
);
401 getbits(buf
, n
++, 1);
402 read_golomb(buf
, &n
);
403 read_golomb(buf
, &n
);
404 v
= read_golomb(buf
, &n
);
405 for(i
= 0; i
< v
; i
++)
406 read_golomb(buf
, &n
);
408 read_golomb(buf
, &n
);
409 getbits(buf
, n
++, 1);
410 picture
->display_picture_width
= 16 *(read_golomb(buf
, &n
)+1);
411 mbh
= read_golomb(buf
, &n
)+1;
412 frame_mbs_only
= getbits(buf
, n
++, 1);
413 picture
->display_picture_height
= 16 * (2 - frame_mbs_only
) * mbh
;
415 getbits(buf
, n
++, 1);
416 getbits(buf
, n
++, 1);
417 if(getbits(buf
, n
++, 1))
419 read_golomb(buf
, &n
);
420 read_golomb(buf
, &n
);
421 read_golomb(buf
, &n
);
422 read_golomb(buf
, &n
);
424 if(getbits(buf
, n
++, 1))
425 n
= h264_parse_vui(picture
, buf
, n
);
430 static int mp_unescape03(unsigned char *buf
, int len
)
442 if(buf
[i
] == 0 && buf
[i
+1] == 0 && buf
[i
+2] == 3)
444 dest
[j
] = dest
[j
+1] = 0;
456 dest
[j
] = buf
[len
-2];
457 dest
[j
+1] = buf
[len
-1];
459 memcpy(buf
, dest
, len
);
465 int mp_vc1_decode_sequence_header(mp_mpeg_header_t
* picture
, unsigned char * buf
, int len
)
469 len
= mp_unescape03(buf
, len
);
471 picture
->display_picture_width
= picture
->display_picture_height
= 0;
474 x
= getbits(buf
, n
, 2);
476 if(x
!= 3) //not advanced profile
479 getbits16(buf
, n
, 14);
481 picture
->display_picture_width
= getbits16(buf
, n
, 12) * 2 + 2;
483 picture
->display_picture_height
= getbits16(buf
, n
, 12) * 2 + 2;
487 x
= getbits(buf
, n
, 1);
491 getbits16(buf
, n
, 14);
493 getbits16(buf
, n
, 14);
495 if(getbits(buf
, n
++, 1)) //aspect ratio
497 x
= getbits(buf
, n
, 4);
501 getbits16(buf
, n
, 16);
506 if(getbits(buf
, n
++, 1)) //framerates
508 int frexp
=0, frnum
=0, frden
=0;
510 if(getbits(buf
, n
++, 1))
512 frexp
= getbits16(buf
, n
, 16);
514 picture
->fps
= (double) (frexp
+1) / 32.0;
518 float frates
[] = {0, 24000, 25000, 30000, 50000, 60000, 48000, 72000, 0};
519 float frdivs
[] = {0, 1000, 1001, 0};
521 frnum
= getbits(buf
, n
, 8);
523 frden
= getbits(buf
, n
, 4);
525 if((frden
== 1 || frden
== 2) && (frnum
< 8))
526 picture
->fps
= frates
[frnum
] / frdivs
[frden
];