2009-05-08 21:51:13 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
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;
|
2010-02-21 13:53:41 +00:00
|
|
|
int frame_rate_extension_n;
|
|
|
|
int frame_rate_extension_d;
|
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
|
|
|
|
2010-02-17 22:58:03 +00:00
|
|
|
unsigned char mp_getbits(unsigned char *buffer, unsigned int from, unsigned char len);
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_MPEG_HDR_H */
|