1
|
1 /*
|
|
2 * mpeg2.h
|
9852
|
3 * Copyright (C) 2000-2002 Michel Lespinasse <walken@zoy.org>
|
|
4 * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
|
1
|
5 *
|
|
6 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
|
9852
|
7 * See http://libmpeg2.sourceforge.net/ for updates.
|
36
|
8 *
|
1
|
9 * mpeg2dec is free software; you can redistribute it and/or modify
|
|
10 * it under the terms of the GNU General Public License as published by
|
36
|
11 * the Free Software Foundation; either version 2 of the License, or
|
|
12 * (at your option) any later version.
|
|
13 *
|
1
|
14 * mpeg2dec is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
36
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
1
|
17 * GNU General Public License for more details.
|
36
|
18 *
|
1
|
19 * You should have received a copy of the GNU General Public License
|
36
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1
|
22 */
|
|
23
|
9852
|
24 #ifndef MPEG2_H
|
|
25 #define MPEG2_H
|
|
26
|
|
27 #define SEQ_FLAG_MPEG2 1
|
|
28 #define SEQ_FLAG_CONSTRAINED_PARAMETERS 2
|
|
29 #define SEQ_FLAG_PROGRESSIVE_SEQUENCE 4
|
|
30 #define SEQ_FLAG_LOW_DELAY 8
|
|
31 #define SEQ_FLAG_COLOUR_DESCRIPTION 16
|
36
|
32
|
9852
|
33 #define SEQ_MASK_VIDEO_FORMAT 0xe0
|
|
34 #define SEQ_VIDEO_FORMAT_COMPONENT 0
|
|
35 #define SEQ_VIDEO_FORMAT_PAL 0x20
|
|
36 #define SEQ_VIDEO_FORMAT_NTSC 0x40
|
|
37 #define SEQ_VIDEO_FORMAT_SECAM 0x60
|
|
38 #define SEQ_VIDEO_FORMAT_MAC 0x80
|
|
39 #define SEQ_VIDEO_FORMAT_UNSPECIFIED 0xa0
|
|
40
|
|
41 typedef struct {
|
|
42 unsigned int width, height;
|
|
43 unsigned int chroma_width, chroma_height;
|
|
44 unsigned int byte_rate;
|
|
45 unsigned int vbv_buffer_size;
|
|
46 uint32_t flags;
|
|
47
|
|
48 unsigned int picture_width, picture_height;
|
|
49 unsigned int display_width, display_height;
|
|
50 unsigned int pixel_width, pixel_height;
|
|
51 unsigned int frame_period;
|
36
|
52
|
9852
|
53 uint8_t profile_level_id;
|
|
54 uint8_t colour_primaries;
|
|
55 uint8_t transfer_characteristics;
|
|
56 uint8_t matrix_coefficients;
|
|
57 } sequence_t;
|
|
58
|
|
59 #define PIC_MASK_CODING_TYPE 7
|
|
60 #define PIC_FLAG_CODING_TYPE_I 1
|
|
61 #define PIC_FLAG_CODING_TYPE_P 2
|
|
62 #define PIC_FLAG_CODING_TYPE_B 3
|
|
63 #define PIC_FLAG_CODING_TYPE_D 4
|
1
|
64
|
9852
|
65 #define PIC_FLAG_TOP_FIELD_FIRST 8
|
|
66 #define PIC_FLAG_PROGRESSIVE_FRAME 16
|
|
67 #define PIC_FLAG_COMPOSITE_DISPLAY 32
|
|
68 #define PIC_FLAG_SKIP 64
|
|
69 #define PIC_FLAG_PTS 128
|
|
70 #define PIC_MASK_COMPOSITE_DISPLAY 0xfffff000
|
|
71
|
|
72 typedef struct {
|
|
73 unsigned int temporal_reference;
|
|
74 unsigned int nb_fields;
|
|
75 uint32_t pts;
|
|
76 uint32_t flags;
|
|
77 struct {
|
|
78 int x, y;
|
|
79 } display_offset[3];
|
|
80 } picture_t;
|
1
|
81
|
9852
|
82 typedef struct {
|
|
83 uint8_t * buf[3];
|
|
84 void * id;
|
|
85 } fbuf_t;
|
1
|
86
|
9852
|
87 typedef struct {
|
|
88 const sequence_t * sequence;
|
|
89 const picture_t * current_picture;
|
|
90 const picture_t * current_picture_2nd;
|
|
91 const fbuf_t * current_fbuf;
|
|
92 const picture_t * display_picture;
|
|
93 const picture_t * display_picture_2nd;
|
|
94 const fbuf_t * display_fbuf;
|
|
95 const fbuf_t * discard_fbuf;
|
|
96 const uint8_t * user_data;
|
|
97 int user_data_len;
|
|
98 } mpeg2_info_t;
|
|
99
|
|
100 typedef struct mpeg2dec_s mpeg2dec_t;
|
|
101 typedef struct decoder_s decoder_t;
|
|
102
|
|
103 #define STATE_SEQUENCE 1
|
|
104 #define STATE_SEQUENCE_REPEATED 2
|
|
105 #define STATE_GOP 3
|
|
106 #define STATE_PICTURE 4
|
|
107 #define STATE_SLICE_1ST 5
|
|
108 #define STATE_PICTURE_2ND 6
|
|
109 #define STATE_SLICE 7
|
|
110 #define STATE_END 8
|
|
111 #define STATE_INVALID 9
|
36
|
112
|
9852
|
113 struct convert_init_s;
|
|
114 void mpeg2_convert (mpeg2dec_t * mpeg2dec,
|
|
115 void (* convert) (int, int, uint32_t, void *,
|
|
116 struct convert_init_s *), void * arg);
|
|
117 void mpeg2_set_buf (mpeg2dec_t * mpeg2dec, uint8_t * buf[3], void * id);
|
|
118 void mpeg2_custom_fbuf (mpeg2dec_t * mpeg2dec, int custom_fbuf);
|
|
119 void mpeg2_init_fbuf (decoder_t * decoder, uint8_t * current_fbuf[3],
|
|
120 uint8_t * forward_fbuf[3], uint8_t * backward_fbuf[3]);
|
|
121
|
|
122 void mpeg2_slice (decoder_t * decoder, int code, const uint8_t * buffer);
|
36
|
123
|
9852
|
124 #define MPEG2_ACCEL_X86_MMX 1
|
|
125 #define MPEG2_ACCEL_X86_3DNOW 2
|
|
126 #define MPEG2_ACCEL_X86_MMXEXT 4
|
|
127 #define MPEG2_ACCEL_PPC_ALTIVEC 1
|
|
128 #define MPEG2_ACCEL_ALPHA 1
|
|
129 #define MPEG2_ACCEL_ALPHA_MVI 2
|
|
130 #define MPEG2_ACCEL_MLIB 0x40000000
|
|
131 #define MPEG2_ACCEL_DETECT 0x80000000
|
36
|
132
|
9852
|
133 uint32_t mpeg2_accel (uint32_t accel);
|
|
134 mpeg2dec_t * mpeg2_init (void);
|
|
135 const mpeg2_info_t * mpeg2_info (mpeg2dec_t * mpeg2dec);
|
|
136 void mpeg2_close (mpeg2dec_t * mpeg2dec);
|
36
|
137
|
9852
|
138 void mpeg2_buffer (mpeg2dec_t * mpeg2dec, uint8_t * start, uint8_t * end);
|
|
139 int mpeg2_parse (mpeg2dec_t * mpeg2dec);
|
|
140
|
|
141 void mpeg2_skip (mpeg2dec_t * mpeg2dec, int skip);
|
|
142 void mpeg2_slice_region (mpeg2dec_t * mpeg2dec, int start, int end);
|
|
143
|
|
144 void mpeg2_pts (mpeg2dec_t * mpeg2dec, uint32_t pts);
|
|
145
|
|
146 #endif /* MPEG2_H */
|