comparison libmpdemux/mpeg_hdr.h @ 25553:6ac1ece1f9fe

Add multiple inclusion guards to all header files that lack them.
author diego
date Tue, 01 Jan 2008 21:35:58 +0000
parents 328d1b36952a
children 4129c8cfa742
comparison
equal deleted inserted replaced
25552:21f17f58f5bc 25553:6ac1ece1f9fe
1 #ifndef MPEG_HDR_H
2 #define MPEG_HDR_H
1 3
2 typedef struct { 4 typedef struct {
3 // video info: 5 // video info:
4 int mpeg1; // 0=mpeg2 1=mpeg1 6 int mpeg1; // 0=mpeg2 1=mpeg1
5 int display_picture_width; 7 int display_picture_width;
25 float mpeg12_aspect_info(mp_mpeg_header_t *picture); 27 float mpeg12_aspect_info(mp_mpeg_header_t *picture);
26 int mp4_header_process_vol(mp_mpeg_header_t * picture, unsigned char * buffer); 28 int mp4_header_process_vol(mp_mpeg_header_t * picture, unsigned char * buffer);
27 void mp4_header_process_vop(mp_mpeg_header_t * picture, unsigned char * buffer); 29 void mp4_header_process_vop(mp_mpeg_header_t * picture, unsigned char * buffer);
28 int h264_parse_sps(mp_mpeg_header_t * picture, unsigned char * buf, int len); 30 int h264_parse_sps(mp_mpeg_header_t * picture, unsigned char * buf, int len);
29 int mp_vc1_decode_sequence_header(mp_mpeg_header_t * picture, unsigned char * buf, int len); 31 int mp_vc1_decode_sequence_header(mp_mpeg_header_t * picture, unsigned char * buf, int len);
32
33 #endif /* MPEG_HDR_H */