annotate libmpdemux/mpeg_hdr.h @ 8462:800d77666843
Support the latest development code from XViD dev-api-3 CVS
branch. Still compatible (at compile time) with the stable XViD code.
Adds :
- GMC, global motion compensation (gmc)
- quarter pixel motion estimation (qpel)
- B frames (max_bframes, bquant_ratio, bquant_offset)
- half-resolution U&V encoding (reduced)
- ?? (me_colour)
Based on a patch by Marco "elcabesa" Belli <elcabesa at inwind dot it>.
Also :
* renamed option "br" to "bitrate".
* renamed option "quality" to "me_quality" and defaults to 4 (fast and
still not that bad).
* added option "4mv", was previously silently included in quality 4, 5
and 6.
author |
rguyom |
date |
Sun, 15 Dec 2002 18:35:11 +0000 |
parents |
4bc54a0f775f |
children |
92553e3c8f01 |
rev |
line source |
2565
|
1
|
|
2 typedef struct {
|
|
3 // video info:
|
|
4 int mpeg1; // 0=mpeg2 1=mpeg1
|
|
5 int display_picture_width;
|
|
6 int display_picture_height;
|
|
7 int aspect_ratio_information;
|
|
8 int frame_rate_code;
|
|
9 int fps; // fps*10000
|
|
10 int bitrate; // 0x3FFFF==VBR
|
|
11 // timing:
|
|
12 int picture_structure;
|
|
13 int progressive_sequence;
|
|
14 int repeat_first_field;
|
|
15 int progressive_frame;
|
|
16 int top_field_first;
|
|
17 int display_time; // secs*100
|
|
18 } mp_mpeg_header_t;
|
|
19
|
|
20 int mp_header_process_sequence_header (mp_mpeg_header_t * picture, unsigned char * buffer);
|
|
21 int mp_header_process_extension (mp_mpeg_header_t * picture, unsigned char * buffer);
|