Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * H.26L/H.264/AVC/JVT/14496-10/... parser | ||
3 | * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at> | ||
4 | * | ||
5 | * This file is part of FFmpeg. | ||
6 | * | ||
7 | * FFmpeg is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU Lesser General Public | ||
9 | * License as published by the Free Software Foundation; either | ||
10 | * version 2.1 of the License, or (at your option) any later version. | ||
11 | * | ||
12 | * FFmpeg is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * Lesser General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU Lesser General Public | ||
18 | * License along with FFmpeg; if not, write to the Free Software | ||
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
20 | */ | ||
21 | |||
22 | /** | ||
23 | * @file | ||
24 | * H.264 / AVC / MPEG-4 part10 parser. | ||
25 | * @author Michael Niedermayer <michaelni@gmx.at> | ||
26 | */ | ||
27 | |||
28 | #define UNCHECKED_BITSTREAM_READER 1 | ||
29 | |||
30 | #include <stdint.h> | ||
31 | |||
32 | #include "libavutil/avutil.h" | ||
33 | #include "libavutil/error.h" | ||
34 | #include "libavutil/log.h" | ||
35 | #include "libavutil/mem.h" | ||
36 | #include "libavutil/pixfmt.h" | ||
37 | |||
38 | #include "avcodec.h" | ||
39 | #include "get_bits.h" | ||
40 | #include "golomb.h" | ||
41 | #include "h264.h" | ||
42 | #include "h264dsp.h" | ||
43 | #include "h264_parse.h" | ||
44 | #include "h264_sei.h" | ||
45 | #include "h264_ps.h" | ||
46 | #include "h2645_parse.h" | ||
47 | #include "h264data.h" | ||
48 | #include "mpegutils.h" | ||
49 | #include "parser.h" | ||
50 | #include "refstruct.h" | ||
51 | #include "startcode.h" | ||
52 | |||
53 | typedef struct H264ParseContext { | ||
54 | ParseContext pc; | ||
55 | H264ParamSets ps; | ||
56 | H264DSPContext h264dsp; | ||
57 | H264POCContext poc; | ||
58 | H264SEIContext sei; | ||
59 | int is_avc; | ||
60 | int nal_length_size; | ||
61 | int got_first; | ||
62 | int picture_structure; | ||
63 | uint8_t parse_history[6]; | ||
64 | int parse_history_count; | ||
65 | int parse_last_mb; | ||
66 | int64_t reference_dts; | ||
67 | int last_frame_num, last_picture_structure; | ||
68 | } H264ParseContext; | ||
69 | |||
70 | 39441 | static int find_start_code(const uint8_t *buf, int buf_size, | |
71 | int buf_index, int next_avc) | ||
72 | { | ||
73 | 39441 | uint32_t state = -1; | |
74 | |||
75 | 39441 | buf_index = avpriv_find_start_code(buf + buf_index, buf + next_avc + 1, &state) - buf - 1; | |
76 | |||
77 | 39441 | return FFMIN(buf_index, buf_size); | |
78 | } | ||
79 | |||
80 | 186312 | static int h264_find_frame_end(H264ParseContext *p, const uint8_t *buf, | |
81 | int buf_size, void *logctx) | ||
82 | { | ||
83 | int i, j; | ||
84 | uint32_t state; | ||
85 | 186312 | ParseContext *pc = &p->pc; | |
86 | |||
87 |
1/2✓ Branch 0 taken 186312 times.
✗ Branch 1 not taken.
|
186312 | int next_avc = p->is_avc ? 0 : buf_size; |
88 | // mb_addr= pc->mb_addr - 1; | ||
89 | 186312 | state = pc->state; | |
90 |
2/2✓ Branch 0 taken 95 times.
✓ Branch 1 taken 186217 times.
|
186312 | if (state > 13) |
91 | 95 | state = 7; | |
92 | |||
93 |
1/4✗ Branch 0 not taken.
✓ Branch 1 taken 186312 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
|
186312 | if (p->is_avc && !p->nal_length_size) |
94 | ✗ | av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal length size invalid\n"); | |
95 | |||
96 |
2/2✓ Branch 0 taken 2571565 times.
✓ Branch 1 taken 159784 times.
|
2731349 | for (i = 0; i < buf_size; i++) { |
97 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2571565 times.
|
2571565 | if (i >= next_avc) { |
98 | ✗ | int64_t nalsize = 0; | |
99 | ✗ | i = next_avc; | |
100 | ✗ | for (j = 0; j < p->nal_length_size; j++) | |
101 | ✗ | nalsize = (nalsize << 8) | buf[i++]; | |
102 | ✗ | if (!nalsize || nalsize > buf_size - i) { | |
103 | ✗ | av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal size %"PRId64" " | |
104 | "remaining %d\n", nalsize, buf_size - i); | ||
105 | ✗ | return buf_size; | |
106 | } | ||
107 | ✗ | next_avc = i + nalsize; | |
108 | ✗ | state = 5; | |
109 | } | ||
110 | |||
111 |
2/2✓ Branch 0 taken 1207797 times.
✓ Branch 1 taken 1363768 times.
|
2571565 | if (state == 7) { |
112 | 1207797 | i += p->h264dsp.startcode_find_candidate(buf + i, next_avc - i); | |
113 |
2/2✓ Branch 0 taken 1050800 times.
✓ Branch 1 taken 156997 times.
|
1207797 | if (i < next_avc) |
114 | 1050800 | state = 2; | |
115 |
2/2✓ Branch 0 taken 1224052 times.
✓ Branch 1 taken 139716 times.
|
1363768 | } else if (state <= 2) { |
116 |
2/2✓ Branch 0 taken 99866 times.
✓ Branch 1 taken 1124186 times.
|
1224052 | if (buf[i] == 1) |
117 | 99866 | state ^= 5; // 2->7, 1->4, 0->5 | |
118 |
2/2✓ Branch 0 taken 951187 times.
✓ Branch 1 taken 172999 times.
|
1124186 | else if (buf[i]) |
119 | 951187 | state = 7; | |
120 | else | ||
121 | 172999 | state >>= 1; // 2->1, 1->0, 0->0 | |
122 |
2/2✓ Branch 0 taken 74911 times.
✓ Branch 1 taken 64805 times.
|
139716 | } else if (state <= 5) { |
123 | 74911 | int nalu_type = buf[i] & 0x1F; | |
124 |
6/6✓ Branch 0 taken 72669 times.
✓ Branch 1 taken 2242 times.
✓ Branch 2 taken 71244 times.
✓ Branch 3 taken 1425 times.
✓ Branch 4 taken 58346 times.
✓ Branch 5 taken 12898 times.
|
74911 | if (nalu_type == H264_NAL_SEI || nalu_type == H264_NAL_SPS || |
125 |
2/2✓ Branch 0 taken 4620 times.
✓ Branch 1 taken 53726 times.
|
58346 | nalu_type == H264_NAL_PPS || nalu_type == H264_NAL_AUD) { |
126 |
2/2✓ Branch 0 taken 8780 times.
✓ Branch 1 taken 12405 times.
|
21185 | if (pc->frame_start_found) { |
127 | 8780 | i++; | |
128 | 8780 | goto found; | |
129 | } | ||
130 |
5/6✓ Branch 0 taken 1840 times.
✓ Branch 1 taken 51886 times.
✓ Branch 2 taken 1840 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 1306 times.
✓ Branch 5 taken 534 times.
|
53726 | } else if (nalu_type == H264_NAL_SLICE || nalu_type == H264_NAL_DPA || |
131 | nalu_type == H264_NAL_IDR_SLICE) { | ||
132 | 53192 | state += 8; | |
133 | 53192 | continue; | |
134 | } | ||
135 | 12939 | state = 7; | |
136 | } else { | ||
137 | 64805 | unsigned int mb, last_mb = p->parse_last_mb; | |
138 | GetBitContext gb; | ||
139 | 64805 | p->parse_history[p->parse_history_count++] = buf[i]; | |
140 | |||
141 | 64805 | init_get_bits(&gb, p->parse_history, 8*p->parse_history_count); | |
142 | 64805 | mb= get_ue_golomb_long(&gb); | |
143 |
3/4✓ Branch 1 taken 11613 times.
✓ Branch 2 taken 53192 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 11613 times.
|
64805 | if (get_bits_left(&gb) > 0 || p->parse_history_count > 5) { |
144 | 53192 | p->parse_last_mb = mb; | |
145 |
2/2✓ Branch 0 taken 26429 times.
✓ Branch 1 taken 26763 times.
|
53192 | if (pc->frame_start_found) { |
146 |
2/2✓ Branch 0 taken 17748 times.
✓ Branch 1 taken 8681 times.
|
26429 | if (mb <= last_mb) { |
147 | 17748 | i -= p->parse_history_count - 1; | |
148 | 17748 | p->parse_history_count = 0; | |
149 | 17748 | goto found; | |
150 | } | ||
151 | } else | ||
152 | 26763 | pc->frame_start_found = 1; | |
153 | 35444 | p->parse_history_count = 0; | |
154 | 35444 | state = 7; | |
155 | } | ||
156 | } | ||
157 | } | ||
158 | 159784 | pc->state = state; | |
159 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 159784 times.
|
159784 | if (p->is_avc) |
160 | ✗ | return next_avc; | |
161 | 159784 | return END_NOT_FOUND; | |
162 | |||
163 | 26528 | found: | |
164 | 26528 | pc->state = 7; | |
165 | 26528 | pc->frame_start_found = 0; | |
166 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 26528 times.
|
26528 | if (p->is_avc) |
167 | ✗ | return next_avc; | |
168 | 26528 | return i - (state & 5); | |
169 | } | ||
170 | |||
171 | 20442 | static int scan_mmco_reset(AVCodecParserContext *s, GetBitContext *gb, | |
172 | void *logctx) | ||
173 | { | ||
174 | H264PredWeightTable pwt; | ||
175 | 20442 | int slice_type_nos = s->pict_type & 3; | |
176 | 20442 | H264ParseContext *p = s->priv_data; | |
177 | int list_count, ref_count[2]; | ||
178 | |||
179 | |||
180 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 20442 times.
|
20442 | if (p->ps.pps->redundant_pic_cnt_present) |
181 | ✗ | get_ue_golomb(gb); // redundant_pic_count | |
182 | |||
183 |
2/2✓ Branch 0 taken 1001 times.
✓ Branch 1 taken 19441 times.
|
20442 | if (slice_type_nos == AV_PICTURE_TYPE_B) |
184 | 1001 | get_bits1(gb); // direct_spatial_mv_pred | |
185 | |||
186 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 20442 times.
|
20442 | if (ff_h264_parse_ref_count(&list_count, ref_count, gb, p->ps.pps, |
187 | slice_type_nos, p->picture_structure, logctx) < 0) | ||
188 | ✗ | return AVERROR_INVALIDDATA; | |
189 | |||
190 |
2/2✓ Branch 0 taken 18615 times.
✓ Branch 1 taken 1827 times.
|
20442 | if (slice_type_nos != AV_PICTURE_TYPE_I) { |
191 | int list; | ||
192 |
2/2✓ Branch 0 taken 19616 times.
✓ Branch 1 taken 18615 times.
|
38231 | for (list = 0; list < list_count; list++) { |
193 |
2/2✓ Branch 1 taken 3018 times.
✓ Branch 2 taken 16598 times.
|
19616 | if (get_bits1(gb)) { |
194 | int index; | ||
195 | 14523 | for (index = 0; ; index++) { | |
196 | 14523 | unsigned int reordering_of_pic_nums_idc = get_ue_golomb_31(gb); | |
197 | |||
198 |
2/2✓ Branch 0 taken 11505 times.
✓ Branch 1 taken 3018 times.
|
14523 | if (reordering_of_pic_nums_idc < 3) |
199 | 11505 | get_ue_golomb_long(gb); | |
200 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3018 times.
|
3018 | else if (reordering_of_pic_nums_idc > 3) { |
201 | ✗ | av_log(logctx, AV_LOG_ERROR, | |
202 | "illegal reordering_of_pic_nums_idc %d\n", | ||
203 | reordering_of_pic_nums_idc); | ||
204 | ✗ | return AVERROR_INVALIDDATA; | |
205 | } else | ||
206 | 3018 | break; | |
207 | |||
208 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 11505 times.
|
11505 | if (index >= ref_count[list]) { |
209 | ✗ | av_log(logctx, AV_LOG_ERROR, | |
210 | "reference count %d overflow\n", index); | ||
211 | ✗ | return AVERROR_INVALIDDATA; | |
212 | } | ||
213 | } | ||
214 | } | ||
215 | } | ||
216 | } | ||
217 | |||
218 |
4/4✓ Branch 0 taken 3869 times.
✓ Branch 1 taken 16573 times.
✓ Branch 2 taken 519 times.
✓ Branch 3 taken 3350 times.
|
20442 | if ((p->ps.pps->weighted_pred && slice_type_nos == AV_PICTURE_TYPE_P) || |
219 |
3/4✓ Branch 0 taken 24 times.
✓ Branch 1 taken 17068 times.
✓ Branch 2 taken 24 times.
✗ Branch 3 not taken.
|
17092 | (p->ps.pps->weighted_bipred_idc == 1 && slice_type_nos == AV_PICTURE_TYPE_B)) |
220 | 3374 | ff_h264_pred_weight_table(gb, p->ps.sps, ref_count, slice_type_nos, | |
221 | &pwt, p->picture_structure, logctx); | ||
222 | |||
223 |
2/2✓ Branch 1 taken 2086 times.
✓ Branch 2 taken 18356 times.
|
20442 | if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag |
224 | int i; | ||
225 |
1/2✓ Branch 0 taken 5999 times.
✗ Branch 1 not taken.
|
5999 | for (i = 0; i < H264_MAX_MMCO_COUNT; i++) { |
226 | 5999 | MMCOOpcode opcode = get_ue_golomb_31(gb); | |
227 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 5999 times.
|
5999 | if (opcode > (unsigned) MMCO_LONG) { |
228 | ✗ | av_log(logctx, AV_LOG_ERROR, | |
229 | "illegal memory management control operation %d\n", | ||
230 | opcode); | ||
231 | ✗ | return AVERROR_INVALIDDATA; | |
232 | } | ||
233 |
2/2✓ Branch 0 taken 2036 times.
✓ Branch 1 taken 3963 times.
|
5999 | if (opcode == MMCO_END) |
234 | 2036 | return 0; | |
235 |
2/2✓ Branch 0 taken 50 times.
✓ Branch 1 taken 3913 times.
|
3963 | else if (opcode == MMCO_RESET) |
236 | 50 | return 1; | |
237 | |||
238 |
4/4✓ Branch 0 taken 808 times.
✓ Branch 1 taken 3105 times.
✓ Branch 2 taken 333 times.
✓ Branch 3 taken 475 times.
|
3913 | if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG) |
239 | 3438 | get_ue_golomb_long(gb); // difference_of_pic_nums_minus1 | |
240 |
6/6✓ Branch 0 taken 3580 times.
✓ Branch 1 taken 333 times.
✓ Branch 2 taken 3500 times.
✓ Branch 3 taken 80 times.
✓ Branch 4 taken 3484 times.
✓ Branch 5 taken 16 times.
|
3913 | if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED || |
241 |
2/2✓ Branch 0 taken 379 times.
✓ Branch 1 taken 3105 times.
|
3484 | opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG) |
242 | 808 | get_ue_golomb_31(gb); | |
243 | } | ||
244 | } | ||
245 | |||
246 | 18356 | return 0; | |
247 | } | ||
248 | |||
249 | /** | ||
250 | * Parse NAL units of found picture and decode some basic information. | ||
251 | * | ||
252 | * @param s parser context. | ||
253 | * @param avctx codec context. | ||
254 | * @param buf buffer with field/frame data. | ||
255 | * @param buf_size size of the buffer. | ||
256 | */ | ||
257 | 33754 | static inline int parse_nal_units(AVCodecParserContext *s, | |
258 | AVCodecContext *avctx, | ||
259 | const uint8_t * const buf, int buf_size) | ||
260 | { | ||
261 | 33754 | H264ParseContext *p = s->priv_data; | |
262 | 33754 | H2645RBSP rbsp = { NULL }; | |
263 | 33754 | H2645NAL nal = { NULL }; | |
264 | int buf_index, next_avc; | ||
265 | unsigned int pps_id; | ||
266 | unsigned int slice_type; | ||
267 | 33754 | int state = -1, got_reset = 0; | |
268 |
3/4✓ Branch 0 taken 33430 times.
✓ Branch 1 taken 324 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 33430 times.
|
33754 | int q264 = buf_size >=4 && !memcmp("Q264", buf, 4); |
269 | int field_poc[2]; | ||
270 | int ret; | ||
271 | |||
272 | /* set some sane default values */ | ||
273 | 33754 | s->pict_type = AV_PICTURE_TYPE_I; | |
274 | 33754 | s->key_frame = 0; | |
275 | 33754 | s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN; | |
276 | |||
277 | 33754 | ff_h264_sei_uninit(&p->sei); | |
278 | 33754 | p->sei.common.frame_packing.arrangement_cancel_flag = -1; | |
279 | 33754 | p->sei.common.unregistered.x264_build = -1; | |
280 | |||
281 |
2/2✓ Branch 0 taken 324 times.
✓ Branch 1 taken 33430 times.
|
33754 | if (!buf_size) |
282 | 324 | return 0; | |
283 | |||
284 | 33430 | av_fast_padded_malloc(&rbsp.rbsp_buffer, &rbsp.rbsp_buffer_alloc_size, buf_size); | |
285 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 33430 times.
|
33430 | if (!rbsp.rbsp_buffer) |
286 | ✗ | return AVERROR(ENOMEM); | |
287 | |||
288 | 33430 | buf_index = 0; | |
289 |
2/2✓ Branch 0 taken 26847 times.
✓ Branch 1 taken 6583 times.
|
33430 | next_avc = p->is_avc ? 0 : buf_size; |
290 | 16652 | for (;;) { | |
291 | const SPS *sps; | ||
292 | 50082 | int src_length, consumed, nalsize = 0; | |
293 | |||
294 |
2/2✓ Branch 0 taken 10641 times.
✓ Branch 1 taken 39441 times.
|
50082 | if (buf_index >= next_avc) { |
295 | 10641 | nalsize = get_nalsize(p->nal_length_size, buf, buf_size, &buf_index, avctx); | |
296 |
2/2✓ Branch 0 taken 332 times.
✓ Branch 1 taken 10309 times.
|
10641 | if (nalsize < 0) |
297 | 332 | break; | |
298 | 10309 | next_avc = buf_index + nalsize; | |
299 | } else { | ||
300 | 39441 | buf_index = find_start_code(buf, buf_size, buf_index, next_avc); | |
301 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 39441 times.
|
39441 | if (buf_index >= buf_size) |
302 | ✗ | break; | |
303 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 39441 times.
|
39441 | if (buf_index >= next_avc) |
304 | ✗ | continue; | |
305 | } | ||
306 | 49750 | src_length = next_avc - buf_index; | |
307 | |||
308 | 49750 | state = buf[buf_index]; | |
309 |
2/2✓ Branch 0 taken 33098 times.
✓ Branch 1 taken 16652 times.
|
49750 | switch (state & 0x1f) { |
310 | 33098 | case H264_NAL_SLICE: | |
311 | case H264_NAL_IDR_SLICE: | ||
312 | // Do not walk the whole buffer just to decode slice header | ||
313 |
4/4✓ Branch 0 taken 32247 times.
✓ Branch 1 taken 851 times.
✓ Branch 2 taken 11263 times.
✓ Branch 3 taken 20984 times.
|
33098 | if ((state & 0x1f) == H264_NAL_IDR_SLICE || ((state >> 5) & 0x3) == 0) { |
314 | /* IDR or disposable slice | ||
315 | * No need to decode many bytes because MMCOs shall not be present. */ | ||
316 |
2/2✓ Branch 0 taken 11710 times.
✓ Branch 1 taken 404 times.
|
12114 | if (src_length > 60) |
317 | 11710 | src_length = 60; | |
318 | } else { | ||
319 | /* To decode up to MMCOs */ | ||
320 |
2/2✓ Branch 0 taken 11851 times.
✓ Branch 1 taken 9133 times.
|
20984 | if (src_length > 1000) |
321 | 11851 | src_length = 1000; | |
322 | } | ||
323 | 33098 | break; | |
324 | } | ||
325 | 49750 | consumed = ff_h2645_extract_rbsp(buf + buf_index, src_length, &rbsp, &nal, 1); | |
326 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 49750 times.
|
49750 | if (consumed < 0) |
327 | ✗ | break; | |
328 | |||
329 | 49750 | buf_index += consumed; | |
330 | |||
331 | 49750 | ret = init_get_bits8(&nal.gb, nal.data, nal.size); | |
332 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 49750 times.
|
49750 | if (ret < 0) |
333 | ✗ | goto fail; | |
334 | 49750 | get_bits1(&nal.gb); | |
335 | 49750 | nal.ref_idc = get_bits(&nal.gb, 2); | |
336 | 49750 | nal.type = get_bits(&nal.gb, 5); | |
337 | |||
338 |
6/6✓ Branch 0 taken 931 times.
✓ Branch 1 taken 7633 times.
✓ Branch 2 taken 4215 times.
✓ Branch 3 taken 851 times.
✓ Branch 4 taken 32247 times.
✓ Branch 5 taken 3873 times.
|
49750 | switch (nal.type) { |
339 | 931 | case H264_NAL_SPS: | |
340 | 931 | ff_h264_decode_seq_parameter_set(&nal.gb, avctx, &p->ps, 0); | |
341 | 931 | break; | |
342 | 7633 | case H264_NAL_PPS: | |
343 | 7633 | ff_h264_decode_picture_parameter_set(&nal.gb, avctx, &p->ps, | |
344 | nal.size_bits); | ||
345 | 7633 | break; | |
346 | 4215 | case H264_NAL_SEI: | |
347 | 4215 | ff_h264_sei_decode(&p->sei, &nal.gb, &p->ps, avctx); | |
348 | 4215 | break; | |
349 | 851 | case H264_NAL_IDR_SLICE: | |
350 | 851 | s->key_frame = 1; | |
351 | |||
352 | 851 | p->poc.prev_frame_num = 0; | |
353 | 851 | p->poc.prev_frame_num_offset = 0; | |
354 | 851 | p->poc.prev_poc_msb = | |
355 | 851 | p->poc.prev_poc_lsb = 0; | |
356 | /* fall through */ | ||
357 | 33098 | case H264_NAL_SLICE: | |
358 | 33098 | get_ue_golomb_long(&nal.gb); // skip first_mb_in_slice | |
359 | 33098 | slice_type = get_ue_golomb_31(&nal.gb); | |
360 | 33098 | s->pict_type = ff_h264_golomb_to_pict_type[slice_type % 5]; | |
361 |
2/2✓ Branch 0 taken 205 times.
✓ Branch 1 taken 32893 times.
|
33098 | if (p->sei.recovery_point.recovery_frame_cnt >= 0) { |
362 | /* key frame, since recovery_frame_cnt is set */ | ||
363 | 205 | s->key_frame = 1; | |
364 | } | ||
365 | 33098 | pps_id = get_ue_golomb(&nal.gb); | |
366 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 33098 times.
|
33098 | if (pps_id >= MAX_PPS_COUNT) { |
367 | ✗ | av_log(avctx, AV_LOG_ERROR, | |
368 | "pps_id %u out of range\n", pps_id); | ||
369 | ✗ | goto fail; | |
370 | } | ||
371 |
2/2✓ Branch 0 taken 568 times.
✓ Branch 1 taken 32530 times.
|
33098 | if (!p->ps.pps_list[pps_id]) { |
372 | 568 | av_log(avctx, AV_LOG_ERROR, | |
373 | "non-existing PPS %u referenced\n", pps_id); | ||
374 | 568 | goto fail; | |
375 | } | ||
376 | |||
377 | 32530 | ff_refstruct_replace(&p->ps.pps, p->ps.pps_list[pps_id]); | |
378 | 32530 | p->ps.sps = p->ps.pps->sps; | |
379 | 32530 | sps = p->ps.sps; | |
380 | |||
381 | // heuristic to detect non marked keyframes | ||
382 |
6/6✓ Branch 0 taken 8643 times.
✓ Branch 1 taken 23887 times.
✓ Branch 2 taken 8509 times.
✓ Branch 3 taken 134 times.
✓ Branch 4 taken 1029 times.
✓ Branch 5 taken 7480 times.
|
32530 | if (p->ps.sps->ref_frame_count <= 1 && p->ps.pps->ref_count[0] <= 1 && s->pict_type == AV_PICTURE_TYPE_I) |
383 | 1029 | s->key_frame = 1; | |
384 | |||
385 | 32530 | p->poc.frame_num = get_bits(&nal.gb, sps->log2_max_frame_num); | |
386 | |||
387 | 32530 | s->coded_width = 16 * sps->mb_width; | |
388 | 32530 | s->coded_height = 16 * sps->mb_height; | |
389 | 32530 | s->width = s->coded_width - (sps->crop_right + sps->crop_left); | |
390 | 32530 | s->height = s->coded_height - (sps->crop_top + sps->crop_bottom); | |
391 |
2/4✓ Branch 0 taken 32530 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 32530 times.
|
32530 | if (s->width <= 0 || s->height <= 0) { |
392 | ✗ | s->width = s->coded_width; | |
393 | ✗ | s->height = s->coded_height; | |
394 | } | ||
395 | |||
396 |
3/4✓ Branch 0 taken 150 times.
✓ Branch 1 taken 284 times.
✓ Branch 2 taken 32096 times.
✗ Branch 3 not taken.
|
32530 | switch (sps->bit_depth_luma) { |
397 | 150 | case 9: | |
398 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 150 times.
|
150 | if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P9; |
399 |
2/2✓ Branch 0 taken 50 times.
✓ Branch 1 taken 100 times.
|
150 | else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P9; |
400 | 100 | else s->format = AV_PIX_FMT_YUV420P9; | |
401 | 150 | break; | |
402 | 284 | case 10: | |
403 |
2/2✓ Branch 0 taken 50 times.
✓ Branch 1 taken 234 times.
|
284 | if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P10; |
404 |
2/2✓ Branch 0 taken 87 times.
✓ Branch 1 taken 147 times.
|
234 | else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P10; |
405 | 147 | else s->format = AV_PIX_FMT_YUV420P10; | |
406 | 284 | break; | |
407 | 32096 | case 8: | |
408 |
2/2✓ Branch 0 taken 889 times.
✓ Branch 1 taken 31207 times.
|
32096 | if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P; |
409 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 31197 times.
|
31207 | else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P; |
410 | 31197 | else s->format = AV_PIX_FMT_YUV420P; | |
411 | 32096 | break; | |
412 | ✗ | default: | |
413 | ✗ | s->format = AV_PIX_FMT_NONE; | |
414 | } | ||
415 | |||
416 | 32530 | avctx->profile = ff_h264_get_profile(sps); | |
417 | 32530 | avctx->level = sps->level_idc; | |
418 | |||
419 |
2/2✓ Branch 0 taken 23184 times.
✓ Branch 1 taken 9346 times.
|
32530 | if (sps->frame_mbs_only_flag) { |
420 | 23184 | p->picture_structure = PICT_FRAME; | |
421 | } else { | ||
422 |
2/2✓ Branch 1 taken 6386 times.
✓ Branch 2 taken 2960 times.
|
9346 | if (get_bits1(&nal.gb)) { // field_pic_flag |
423 | 6386 | p->picture_structure = PICT_TOP_FIELD + get_bits1(&nal.gb); // bottom_field_flag | |
424 | } else { | ||
425 | 2960 | p->picture_structure = PICT_FRAME; | |
426 | } | ||
427 | } | ||
428 | |||
429 |
2/2✓ Branch 0 taken 849 times.
✓ Branch 1 taken 31681 times.
|
32530 | if (nal.type == H264_NAL_IDR_SLICE) |
430 | 849 | get_ue_golomb_long(&nal.gb); /* idr_pic_id */ | |
431 |
2/2✓ Branch 0 taken 24586 times.
✓ Branch 1 taken 7944 times.
|
32530 | if (sps->poc_type == 0) { |
432 | 24586 | p->poc.poc_lsb = get_bits(&nal.gb, sps->log2_max_poc_lsb); | |
433 | |||
434 |
2/2✓ Branch 0 taken 4225 times.
✓ Branch 1 taken 20361 times.
|
24586 | if (p->ps.pps->pic_order_present == 1 && |
435 |
2/2✓ Branch 0 taken 3270 times.
✓ Branch 1 taken 955 times.
|
4225 | p->picture_structure == PICT_FRAME) |
436 | 3270 | p->poc.delta_poc_bottom = get_se_golomb(&nal.gb); | |
437 | } | ||
438 | |||
439 |
2/2✓ Branch 0 taken 3245 times.
✓ Branch 1 taken 29285 times.
|
32530 | if (sps->poc_type == 1 && |
440 |
2/2✓ Branch 0 taken 3071 times.
✓ Branch 1 taken 174 times.
|
3245 | !sps->delta_pic_order_always_zero_flag) { |
441 | 3071 | p->poc.delta_poc[0] = get_se_golomb(&nal.gb); | |
442 | |||
443 |
2/2✓ Branch 0 taken 692 times.
✓ Branch 1 taken 2379 times.
|
3071 | if (p->ps.pps->pic_order_present == 1 && |
444 |
2/2✓ Branch 0 taken 406 times.
✓ Branch 1 taken 286 times.
|
692 | p->picture_structure == PICT_FRAME) |
445 | 406 | p->poc.delta_poc[1] = get_se_golomb(&nal.gb); | |
446 | } | ||
447 | |||
448 | /* Decode POC of this picture. | ||
449 | * The prev_ values needed for decoding POC of the next picture are not set here. */ | ||
450 | 32530 | field_poc[0] = field_poc[1] = INT_MAX; | |
451 | 32530 | ret = ff_h264_init_poc(field_poc, &s->output_picture_number, sps, | |
452 | &p->poc, p->picture_structure, nal.ref_idc); | ||
453 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 32530 times.
|
32530 | if (ret < 0) |
454 | ✗ | goto fail; | |
455 | |||
456 | /* Continue parsing to check if MMCO_RESET is present. | ||
457 | * FIXME: MMCO_RESET could appear in non-first slice. | ||
458 | * Maybe, we should parse all undisposable non-IDR slice of this | ||
459 | * picture until encountering MMCO_RESET in a slice of it. */ | ||
460 |
4/4✓ Branch 0 taken 21291 times.
✓ Branch 1 taken 11239 times.
✓ Branch 2 taken 20442 times.
✓ Branch 3 taken 849 times.
|
32530 | if (nal.ref_idc && nal.type != H264_NAL_IDR_SLICE) { |
461 | 20442 | got_reset = scan_mmco_reset(s, &nal.gb, avctx); | |
462 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 20442 times.
|
20442 | if (got_reset < 0) |
463 | ✗ | goto fail; | |
464 | } | ||
465 | |||
466 | /* Set up the prev_ values for decoding POC of the next picture. */ | ||
467 |
2/2✓ Branch 0 taken 32480 times.
✓ Branch 1 taken 50 times.
|
32530 | p->poc.prev_frame_num = got_reset ? 0 : p->poc.frame_num; |
468 |
2/2✓ Branch 0 taken 32480 times.
✓ Branch 1 taken 50 times.
|
32530 | p->poc.prev_frame_num_offset = got_reset ? 0 : p->poc.frame_num_offset; |
469 |
2/2✓ Branch 0 taken 21291 times.
✓ Branch 1 taken 11239 times.
|
32530 | if (nal.ref_idc != 0) { |
470 |
2/2✓ Branch 0 taken 21241 times.
✓ Branch 1 taken 50 times.
|
21291 | if (!got_reset) { |
471 | 21241 | p->poc.prev_poc_msb = p->poc.poc_msb; | |
472 | 21241 | p->poc.prev_poc_lsb = p->poc.poc_lsb; | |
473 | } else { | ||
474 | 50 | p->poc.prev_poc_msb = 0; | |
475 | 50 | p->poc.prev_poc_lsb = | |
476 |
1/2✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
|
50 | p->picture_structure == PICT_BOTTOM_FIELD ? 0 : field_poc[0]; |
477 | } | ||
478 | } | ||
479 | |||
480 |
2/2✓ Branch 0 taken 2987 times.
✓ Branch 1 taken 29543 times.
|
32530 | if (p->sei.picture_timing.present) { |
481 | 2987 | ret = ff_h264_sei_process_picture_timing(&p->sei.picture_timing, | |
482 | sps, avctx); | ||
483 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2987 times.
|
2987 | if (ret < 0) { |
484 | ✗ | av_log(avctx, AV_LOG_ERROR, "Error processing the picture timing SEI\n"); | |
485 | ✗ | p->sei.picture_timing.present = 0; | |
486 | } | ||
487 | } | ||
488 | |||
489 |
4/4✓ Branch 0 taken 3383 times.
✓ Branch 1 taken 29147 times.
✓ Branch 2 taken 2975 times.
✓ Branch 3 taken 408 times.
|
32530 | if (sps->pic_struct_present_flag && p->sei.picture_timing.present) { |
490 |
3/6✓ Branch 0 taken 830 times.
✓ Branch 1 taken 2007 times.
✓ Branch 2 taken 138 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
2975 | switch (p->sei.picture_timing.pic_struct) { |
491 | 830 | case H264_SEI_PIC_STRUCT_TOP_FIELD: | |
492 | case H264_SEI_PIC_STRUCT_BOTTOM_FIELD: | ||
493 | 830 | s->repeat_pict = 0; | |
494 | 830 | break; | |
495 | 2007 | case H264_SEI_PIC_STRUCT_FRAME: | |
496 | case H264_SEI_PIC_STRUCT_TOP_BOTTOM: | ||
497 | case H264_SEI_PIC_STRUCT_BOTTOM_TOP: | ||
498 | 2007 | s->repeat_pict = 1; | |
499 | 2007 | break; | |
500 | 138 | case H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP: | |
501 | case H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM: | ||
502 | 138 | s->repeat_pict = 2; | |
503 | 138 | break; | |
504 | ✗ | case H264_SEI_PIC_STRUCT_FRAME_DOUBLING: | |
505 | ✗ | s->repeat_pict = 3; | |
506 | ✗ | break; | |
507 | ✗ | case H264_SEI_PIC_STRUCT_FRAME_TRIPLING: | |
508 | ✗ | s->repeat_pict = 5; | |
509 | ✗ | break; | |
510 | ✗ | default: | |
511 | ✗ | s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0; | |
512 | ✗ | break; | |
513 | } | ||
514 | } else { | ||
515 | 29555 | s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0; | |
516 | } | ||
517 | |||
518 |
2/2✓ Branch 0 taken 26144 times.
✓ Branch 1 taken 6386 times.
|
32530 | if (p->picture_structure == PICT_FRAME) { |
519 | 26144 | s->picture_structure = AV_PICTURE_STRUCTURE_FRAME; | |
520 |
4/4✓ Branch 0 taken 2224 times.
✓ Branch 1 taken 23920 times.
✓ Branch 2 taken 2145 times.
✓ Branch 3 taken 79 times.
|
26144 | if (sps->pic_struct_present_flag && p->sei.picture_timing.present) { |
521 |
3/3✓ Branch 0 taken 1420 times.
✓ Branch 1 taken 150 times.
✓ Branch 2 taken 575 times.
|
2145 | switch (p->sei.picture_timing.pic_struct) { |
522 | 1420 | case H264_SEI_PIC_STRUCT_TOP_BOTTOM: | |
523 | case H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP: | ||
524 | 1420 | s->field_order = AV_FIELD_TT; | |
525 | 1420 | break; | |
526 | 150 | case H264_SEI_PIC_STRUCT_BOTTOM_TOP: | |
527 | case H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM: | ||
528 | 150 | s->field_order = AV_FIELD_BB; | |
529 | 150 | break; | |
530 | 575 | default: | |
531 | 575 | s->field_order = AV_FIELD_PROGRESSIVE; | |
532 | 575 | break; | |
533 | } | ||
534 | } else { | ||
535 |
2/2✓ Branch 0 taken 1041 times.
✓ Branch 1 taken 22958 times.
|
23999 | if (field_poc[0] < field_poc[1]) |
536 | 1041 | s->field_order = AV_FIELD_TT; | |
537 |
2/2✓ Branch 0 taken 3 times.
✓ Branch 1 taken 22955 times.
|
22958 | else if (field_poc[0] > field_poc[1]) |
538 | 3 | s->field_order = AV_FIELD_BB; | |
539 | else | ||
540 | 22955 | s->field_order = AV_FIELD_PROGRESSIVE; | |
541 | } | ||
542 | } else { | ||
543 |
2/2✓ Branch 0 taken 3290 times.
✓ Branch 1 taken 3096 times.
|
6386 | if (p->picture_structure == PICT_TOP_FIELD) |
544 | 3290 | s->picture_structure = AV_PICTURE_STRUCTURE_TOP_FIELD; | |
545 | else | ||
546 | 3096 | s->picture_structure = AV_PICTURE_STRUCTURE_BOTTOM_FIELD; | |
547 |
2/2✓ Branch 0 taken 4833 times.
✓ Branch 1 taken 1553 times.
|
6386 | if (p->poc.frame_num == p->last_frame_num && |
548 |
1/2✓ Branch 0 taken 4833 times.
✗ Branch 1 not taken.
|
4833 | p->last_picture_structure != AV_PICTURE_STRUCTURE_UNKNOWN && |
549 |
1/2✓ Branch 0 taken 4833 times.
✗ Branch 1 not taken.
|
4833 | p->last_picture_structure != AV_PICTURE_STRUCTURE_FRAME && |
550 |
2/2✓ Branch 0 taken 4710 times.
✓ Branch 1 taken 123 times.
|
4833 | p->last_picture_structure != s->picture_structure) { |
551 |
2/2✓ Branch 0 taken 3090 times.
✓ Branch 1 taken 1620 times.
|
4710 | if (p->last_picture_structure == AV_PICTURE_STRUCTURE_TOP_FIELD) |
552 | 3090 | s->field_order = AV_FIELD_TT; | |
553 | else | ||
554 | 1620 | s->field_order = AV_FIELD_BB; | |
555 | } else { | ||
556 | 1676 | s->field_order = AV_FIELD_UNKNOWN; | |
557 | } | ||
558 | 6386 | p->last_picture_structure = s->picture_structure; | |
559 | 6386 | p->last_frame_num = p->poc.frame_num; | |
560 | } | ||
561 |
2/2✓ Branch 0 taken 9434 times.
✓ Branch 1 taken 23096 times.
|
32530 | if (sps->timing_info_present_flag) { |
562 | 9434 | int64_t den = sps->time_scale; | |
563 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9434 times.
|
9434 | if (p->sei.common.unregistered.x264_build < 44U) |
564 | ✗ | den *= 2; | |
565 | 9434 | av_reduce(&avctx->framerate.den, &avctx->framerate.num, | |
566 | 9434 | sps->num_units_in_tick * 2, den, 1 << 30); | |
567 | } | ||
568 | |||
569 | 32530 | av_freep(&rbsp.rbsp_buffer); | |
570 | 32530 | return 0; /* no need to evaluate the rest */ | |
571 | } | ||
572 | } | ||
573 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 332 times.
|
332 | if (q264) { |
574 | ✗ | av_freep(&rbsp.rbsp_buffer); | |
575 | ✗ | return 0; | |
576 | } | ||
577 | /* didn't find a picture! */ | ||
578 | 332 | av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size); | |
579 | 900 | fail: | |
580 | 900 | av_freep(&rbsp.rbsp_buffer); | |
581 | 900 | return -1; | |
582 | } | ||
583 | |||
584 | 192953 | static int h264_parse(AVCodecParserContext *s, | |
585 | AVCodecContext *avctx, | ||
586 | const uint8_t **poutbuf, int *poutbuf_size, | ||
587 | const uint8_t *buf, int buf_size) | ||
588 | { | ||
589 | 192953 | H264ParseContext *p = s->priv_data; | |
590 | 192953 | ParseContext *pc = &p->pc; | |
591 | 192953 | AVRational time_base = { 0, 1 }; | |
592 | int next; | ||
593 | |||
594 |
2/2✓ Branch 0 taken 439 times.
✓ Branch 1 taken 192514 times.
|
192953 | if (!p->got_first) { |
595 | 439 | p->got_first = 1; | |
596 |
2/2✓ Branch 0 taken 208 times.
✓ Branch 1 taken 231 times.
|
439 | if (avctx->extradata_size) { |
597 | 208 | ff_h264_decode_extradata(avctx->extradata, avctx->extradata_size, | |
598 | &p->ps, &p->is_avc, &p->nal_length_size, | ||
599 | avctx->err_recognition, avctx); | ||
600 | } | ||
601 | } | ||
602 | |||
603 |
2/2✓ Branch 0 taken 6760 times.
✓ Branch 1 taken 186193 times.
|
192953 | if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) { |
604 | 6760 | next = buf_size; | |
605 | } else { | ||
606 | 186193 | next = h264_find_frame_end(p, buf, buf_size, avctx); | |
607 | |||
608 |
2/2✓ Branch 1 taken 159199 times.
✓ Branch 2 taken 26994 times.
|
186193 | if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { |
609 | 159199 | *poutbuf = NULL; | |
610 | 159199 | *poutbuf_size = 0; | |
611 | 159199 | return buf_size; | |
612 | } | ||
613 | |||
614 |
4/4✓ Branch 0 taken 585 times.
✓ Branch 1 taken 26409 times.
✓ Branch 2 taken 119 times.
✓ Branch 3 taken 466 times.
|
26994 | if (next < 0 && next != END_NOT_FOUND) { |
615 | av_assert1(pc->last_index + next >= 0); | ||
616 | 119 | h264_find_frame_end(p, &pc->buffer[pc->last_index + next], -next, avctx); // update state | |
617 | } | ||
618 | } | ||
619 | |||
620 | 33754 | parse_nal_units(s, avctx, buf, buf_size); | |
621 | |||
622 |
2/2✓ Branch 0 taken 9865 times.
✓ Branch 1 taken 23889 times.
|
33754 | if (avctx->framerate.num) |
623 | 9865 | time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){2, 1})); | |
624 |
2/2✓ Branch 0 taken 1955 times.
✓ Branch 1 taken 31799 times.
|
33754 | if (p->sei.picture_timing.cpb_removal_delay >= 0) { |
625 | 1955 | s->dts_sync_point = p->sei.buffering_period.present; | |
626 | 1955 | s->dts_ref_dts_delta = p->sei.picture_timing.cpb_removal_delay; | |
627 | 1955 | s->pts_dts_delta = p->sei.picture_timing.dpb_output_delay; | |
628 | } else { | ||
629 | 31799 | s->dts_sync_point = INT_MIN; | |
630 | 31799 | s->dts_ref_dts_delta = INT_MIN; | |
631 | 31799 | s->pts_dts_delta = INT_MIN; | |
632 | } | ||
633 | |||
634 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 33754 times.
|
33754 | if (s->flags & PARSER_FLAG_ONCE) { |
635 | ✗ | s->flags &= PARSER_FLAG_COMPLETE_FRAMES; | |
636 | } | ||
637 | |||
638 |
2/2✓ Branch 0 taken 1955 times.
✓ Branch 1 taken 31799 times.
|
33754 | if (s->dts_sync_point >= 0) { |
639 | 1955 | int64_t den = time_base.den * (int64_t)avctx->pkt_timebase.num; | |
640 |
1/2✓ Branch 0 taken 1955 times.
✗ Branch 1 not taken.
|
1955 | if (den > 0) { |
641 | 1955 | int64_t num = time_base.num * (int64_t)avctx->pkt_timebase.den; | |
642 |
2/2✓ Branch 0 taken 1553 times.
✓ Branch 1 taken 402 times.
|
1955 | if (s->dts != AV_NOPTS_VALUE) { |
643 | // got DTS from the stream, update reference timestamp | ||
644 | 1553 | p->reference_dts = av_sat_sub64(s->dts, av_rescale(s->dts_ref_dts_delta, num, den)); | |
645 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 402 times.
|
402 | } else if (p->reference_dts != AV_NOPTS_VALUE) { |
646 | // compute DTS based on reference timestamp | ||
647 | ✗ | s->dts = av_sat_add64(p->reference_dts, av_rescale(s->dts_ref_dts_delta, num, den)); | |
648 | } | ||
649 | |||
650 |
3/4✓ Branch 0 taken 1553 times.
✓ Branch 1 taken 402 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 1553 times.
|
1955 | if (p->reference_dts != AV_NOPTS_VALUE && s->pts == AV_NOPTS_VALUE) |
651 | ✗ | s->pts = s->dts + av_rescale(s->pts_dts_delta, num, den); | |
652 | |||
653 |
2/2✓ Branch 0 taken 135 times.
✓ Branch 1 taken 1820 times.
|
1955 | if (s->dts_sync_point > 0) |
654 | 135 | p->reference_dts = s->dts; // new reference | |
655 | } | ||
656 | } | ||
657 | |||
658 | 33754 | *poutbuf = buf; | |
659 | 33754 | *poutbuf_size = buf_size; | |
660 | 33754 | return next; | |
661 | } | ||
662 | |||
663 | 442 | static void h264_close(AVCodecParserContext *s) | |
664 | { | ||
665 | 442 | H264ParseContext *p = s->priv_data; | |
666 | 442 | ParseContext *pc = &p->pc; | |
667 | |||
668 | 442 | av_freep(&pc->buffer); | |
669 | |||
670 | 442 | ff_h264_sei_uninit(&p->sei); | |
671 | 442 | ff_h264_ps_uninit(&p->ps); | |
672 | 442 | } | |
673 | |||
674 | 442 | static av_cold int init(AVCodecParserContext *s) | |
675 | { | ||
676 | 442 | H264ParseContext *p = s->priv_data; | |
677 | |||
678 | 442 | p->reference_dts = AV_NOPTS_VALUE; | |
679 | 442 | p->last_frame_num = INT_MAX; | |
680 | 442 | ff_h264dsp_init(&p->h264dsp, 8, 1); | |
681 | 442 | return 0; | |
682 | } | ||
683 | |||
684 | const AVCodecParser ff_h264_parser = { | ||
685 | .codec_ids = { AV_CODEC_ID_H264 }, | ||
686 | .priv_data_size = sizeof(H264ParseContext), | ||
687 | .parser_init = init, | ||
688 | .parser_parse = h264_parse, | ||
689 | .parser_close = h264_close, | ||
690 | }; | ||
691 |