2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_MPEG_HDR_H
|
|
|
|
#define MPLAYER_MPEG_HDR_H
|
2001-10-30 18:45:54 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
// video info:
|
|
|
|
int mpeg1; // 0=mpeg2 1=mpeg1
|
|
|
|
int display_picture_width;
|
|
|
|
int display_picture_height;
|
|
|
|
int aspect_ratio_information;
|
|
|
|
int frame_rate_code;
|
2005-08-06 16:15:07 +00:00
|
|
|
float fps;
|
2001-10-30 18:45:54 +00:00
|
|
|
int bitrate; // 0x3FFFF==VBR
|
|
|
|
// timing:
|
|
|
|
int picture_structure;
|
|
|
|
int progressive_sequence;
|
|
|
|
int repeat_first_field;
|
|
|
|
int progressive_frame;
|
|
|
|
int top_field_first;
|
|
|
|
int display_time; // secs*100
|
2005-01-12 20:43:53 +00:00
|
|
|
//the following are for mpeg4
|
2005-04-19 21:17:39 +00:00
|
|
|
unsigned int timeinc_resolution, timeinc_bits, timeinc_unit;
|
2005-01-12 20:43:53 +00:00
|
|
|
int picture_type;
|
2001-10-30 18:45:54 +00:00
|
|
|
} mp_mpeg_header_t;
|
|
|
|
|
2007-10-19 10:08:02 +00:00
|
|
|
int mp_header_process_sequence_header (mp_mpeg_header_t * picture, const unsigned char * buffer);
|
2001-10-30 18:45:54 +00:00
|
|
|
int mp_header_process_extension (mp_mpeg_header_t * picture, unsigned char * buffer);
|
2006-05-07 16:05:38 +00:00
|
|
|
float mpeg12_aspect_info(mp_mpeg_header_t *picture);
|
2005-01-12 20:43:53 +00:00
|
|
|
int mp4_header_process_vol(mp_mpeg_header_t * picture, unsigned char * buffer);
|
2005-03-01 23:45:32 +00:00
|
|
|
void mp4_header_process_vop(mp_mpeg_header_t * picture, unsigned char * buffer);
|
2005-02-24 20:02:41 +00:00
|
|
|
int h264_parse_sps(mp_mpeg_header_t * picture, unsigned char * buf, int len);
|
2007-01-20 12:04:20 +00:00
|
|
|
int mp_vc1_decode_sequence_header(mp_mpeg_header_t * picture, unsigned char * buf, int len);
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_MPEG_HDR_H */
|