Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * This file is part of FFmpeg. | ||
3 | * | ||
4 | * FFmpeg is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU Lesser General Public | ||
6 | * License as published by the Free Software Foundation; either | ||
7 | * version 2.1 of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * FFmpeg is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
12 | * Lesser General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU Lesser General Public | ||
15 | * License along with FFmpeg; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
17 | */ | ||
18 | |||
19 | #include <string.h> | ||
20 | |||
21 | #include "config.h" | ||
22 | |||
23 | #include "libavutil/avassert.h" | ||
24 | #include "libavutil/buffer.h" | ||
25 | #include "libavutil/common.h" | ||
26 | #include "libavutil/mem.h" | ||
27 | #include "libavutil/opt.h" | ||
28 | |||
29 | #include "avcodec.h" | ||
30 | #include "cbs.h" | ||
31 | #include "cbs_internal.h" | ||
32 | #include "refstruct.h" | ||
33 | |||
34 | |||
35 | static const CodedBitstreamType *const cbs_type_table[] = { | ||
36 | #if CONFIG_CBS_AV1 | ||
37 | &ff_cbs_type_av1, | ||
38 | #endif | ||
39 | #if CONFIG_CBS_H264 | ||
40 | &ff_cbs_type_h264, | ||
41 | #endif | ||
42 | #if CONFIG_CBS_H265 | ||
43 | &ff_cbs_type_h265, | ||
44 | #endif | ||
45 | #if CONFIG_CBS_H266 | ||
46 | &ff_cbs_type_h266, | ||
47 | #endif | ||
48 | #if CONFIG_CBS_JPEG | ||
49 | &ff_cbs_type_jpeg, | ||
50 | #endif | ||
51 | #if CONFIG_CBS_MPEG2 | ||
52 | &ff_cbs_type_mpeg2, | ||
53 | #endif | ||
54 | #if CONFIG_CBS_VP8 | ||
55 | &ff_cbs_type_vp8, | ||
56 | #endif | ||
57 | #if CONFIG_CBS_VP9 | ||
58 | &ff_cbs_type_vp9, | ||
59 | #endif | ||
60 | }; | ||
61 | |||
62 | const enum AVCodecID ff_cbs_all_codec_ids[] = { | ||
63 | #if CONFIG_CBS_AV1 | ||
64 | AV_CODEC_ID_AV1, | ||
65 | #endif | ||
66 | #if CONFIG_CBS_H264 | ||
67 | AV_CODEC_ID_H264, | ||
68 | #endif | ||
69 | #if CONFIG_CBS_H265 | ||
70 | AV_CODEC_ID_H265, | ||
71 | #endif | ||
72 | #if CONFIG_CBS_H266 | ||
73 | AV_CODEC_ID_H266, | ||
74 | #endif | ||
75 | #if CONFIG_CBS_JPEG | ||
76 | AV_CODEC_ID_MJPEG, | ||
77 | #endif | ||
78 | #if CONFIG_CBS_MPEG2 | ||
79 | AV_CODEC_ID_MPEG2VIDEO, | ||
80 | #endif | ||
81 | #if CONFIG_CBS_VP8 | ||
82 | AV_CODEC_ID_VP8, | ||
83 | #endif | ||
84 | #if CONFIG_CBS_VP9 | ||
85 | AV_CODEC_ID_VP9, | ||
86 | #endif | ||
87 | AV_CODEC_ID_NONE | ||
88 | }; | ||
89 | |||
90 | 398 | av_cold int ff_cbs_init(CodedBitstreamContext **ctx_ptr, | |
91 | enum AVCodecID codec_id, void *log_ctx) | ||
92 | { | ||
93 | CodedBitstreamContext *ctx; | ||
94 | const CodedBitstreamType *type; | ||
95 | int i; | ||
96 | |||
97 | 398 | type = NULL; | |
98 |
1/2✓ Branch 0 taken 1324 times.
✗ Branch 1 not taken.
|
1324 | for (i = 0; i < FF_ARRAY_ELEMS(cbs_type_table); i++) { |
99 |
2/2✓ Branch 0 taken 398 times.
✓ Branch 1 taken 926 times.
|
1324 | if (cbs_type_table[i]->codec_id == codec_id) { |
100 | 398 | type = cbs_type_table[i]; | |
101 | 398 | break; | |
102 | } | ||
103 | } | ||
104 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 398 times.
|
398 | if (!type) |
105 | ✗ | return AVERROR(EINVAL); | |
106 | |||
107 | 398 | ctx = av_mallocz(sizeof(*ctx)); | |
108 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 398 times.
|
398 | if (!ctx) |
109 | ✗ | return AVERROR(ENOMEM); | |
110 | |||
111 | 398 | ctx->log_ctx = log_ctx; | |
112 | 398 | ctx->codec = type; /* Must be before any error */ | |
113 | |||
114 |
1/2✓ Branch 0 taken 398 times.
✗ Branch 1 not taken.
|
398 | if (type->priv_data_size) { |
115 | 398 | ctx->priv_data = av_mallocz(ctx->codec->priv_data_size); | |
116 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 398 times.
|
398 | if (!ctx->priv_data) { |
117 | ✗ | av_freep(&ctx); | |
118 | ✗ | return AVERROR(ENOMEM); | |
119 | } | ||
120 |
2/2✓ Branch 0 taken 86 times.
✓ Branch 1 taken 312 times.
|
398 | if (type->priv_class) { |
121 | 86 | *(const AVClass **)ctx->priv_data = type->priv_class; | |
122 | 86 | av_opt_set_defaults(ctx->priv_data); | |
123 | } | ||
124 | } | ||
125 | |||
126 | 398 | ctx->decompose_unit_types = NULL; | |
127 | |||
128 | 398 | ctx->trace_enable = 0; | |
129 | 398 | ctx->trace_level = AV_LOG_TRACE; | |
130 | 398 | ctx->trace_context = ctx; | |
131 | |||
132 | 398 | *ctx_ptr = ctx; | |
133 | 398 | return 0; | |
134 | } | ||
135 | |||
136 | 1 | av_cold void ff_cbs_flush(CodedBitstreamContext *ctx) | |
137 | { | ||
138 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (ctx->codec->flush) |
139 | 1 | ctx->codec->flush(ctx); | |
140 | 1 | } | |
141 | |||
142 | 398 | av_cold void ff_cbs_close(CodedBitstreamContext **ctx_ptr) | |
143 | { | ||
144 | 398 | CodedBitstreamContext *ctx = *ctx_ptr; | |
145 | |||
146 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 398 times.
|
398 | if (!ctx) |
147 | ✗ | return; | |
148 | |||
149 |
2/2✓ Branch 0 taken 364 times.
✓ Branch 1 taken 34 times.
|
398 | if (ctx->codec->close) |
150 | 364 | ctx->codec->close(ctx); | |
151 | |||
152 | 398 | av_freep(&ctx->write_buffer); | |
153 | |||
154 |
3/4✓ Branch 0 taken 86 times.
✓ Branch 1 taken 312 times.
✓ Branch 2 taken 86 times.
✗ Branch 3 not taken.
|
398 | if (ctx->codec->priv_class && ctx->priv_data) |
155 | 86 | av_opt_free(ctx->priv_data); | |
156 | |||
157 | 398 | av_freep(&ctx->priv_data); | |
158 | 398 | av_freep(ctx_ptr); | |
159 | } | ||
160 | |||
161 | 48369 | static void cbs_unit_uninit(CodedBitstreamUnit *unit) | |
162 | { | ||
163 | 48369 | ff_refstruct_unref(&unit->content_ref); | |
164 | 48369 | unit->content = NULL; | |
165 | |||
166 | 48369 | av_buffer_unref(&unit->data_ref); | |
167 | 48369 | unit->data = NULL; | |
168 | 48369 | unit->data_size = 0; | |
169 | 48369 | unit->data_bit_padding = 0; | |
170 | 48369 | } | |
171 | |||
172 | 13957 | void ff_cbs_fragment_reset(CodedBitstreamFragment *frag) | |
173 | { | ||
174 | int i; | ||
175 | |||
176 |
2/2✓ Branch 0 taken 48297 times.
✓ Branch 1 taken 13957 times.
|
62254 | for (i = 0; i < frag->nb_units; i++) |
177 | 48297 | cbs_unit_uninit(&frag->units[i]); | |
178 | 13957 | frag->nb_units = 0; | |
179 | |||
180 | 13957 | av_buffer_unref(&frag->data_ref); | |
181 | 13957 | frag->data = NULL; | |
182 | 13957 | frag->data_size = 0; | |
183 | 13957 | frag->data_bit_padding = 0; | |
184 | 13957 | } | |
185 | |||
186 | 861 | av_cold void ff_cbs_fragment_free(CodedBitstreamFragment *frag) | |
187 | { | ||
188 | 861 | ff_cbs_fragment_reset(frag); | |
189 | |||
190 | 861 | av_freep(&frag->units); | |
191 | 861 | frag->nb_units_allocated = 0; | |
192 | 861 | } | |
193 | |||
194 | 13108 | static int cbs_read_fragment_content(CodedBitstreamContext *ctx, | |
195 | CodedBitstreamFragment *frag) | ||
196 | { | ||
197 | int err, i, j; | ||
198 | |||
199 |
2/2✓ Branch 0 taken 48356 times.
✓ Branch 1 taken 13107 times.
|
61463 | for (i = 0; i < frag->nb_units; i++) { |
200 | 48356 | CodedBitstreamUnit *unit = &frag->units[i]; | |
201 | |||
202 |
2/2✓ Branch 0 taken 10553 times.
✓ Branch 1 taken 37803 times.
|
48356 | if (ctx->decompose_unit_types) { |
203 |
2/2✓ Branch 0 taken 73293 times.
✓ Branch 1 taken 3598 times.
|
76891 | for (j = 0; j < ctx->nb_decompose_unit_types; j++) { |
204 |
2/2✓ Branch 0 taken 6955 times.
✓ Branch 1 taken 66338 times.
|
73293 | if (ctx->decompose_unit_types[j] == unit->type) |
205 | 6955 | break; | |
206 | } | ||
207 |
2/2✓ Branch 0 taken 3598 times.
✓ Branch 1 taken 6955 times.
|
10553 | if (j >= ctx->nb_decompose_unit_types) |
208 | 3598 | continue; | |
209 | } | ||
210 | |||
211 | 44758 | ff_refstruct_unref(&unit->content_ref); | |
212 | 44758 | unit->content = NULL; | |
213 | |||
214 |
2/4✓ Branch 0 taken 44758 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 44758 times.
|
44758 | av_assert0(unit->data && unit->data_ref); |
215 | |||
216 | 44758 | err = ctx->codec->read_unit(ctx, unit); | |
217 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 44758 times.
|
44758 | if (err == AVERROR(ENOSYS)) { |
218 | ✗ | av_log(ctx->log_ctx, AV_LOG_VERBOSE, | |
219 | "Decomposition unimplemented for unit %d " | ||
220 | "(type %"PRIu32").\n", i, unit->type); | ||
221 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 44758 times.
|
44758 | } else if (err == AVERROR(EAGAIN)) { |
222 | ✗ | av_log(ctx->log_ctx, AV_LOG_VERBOSE, | |
223 | "Skipping decomposition of unit %d " | ||
224 | "(type %"PRIu32").\n", i, unit->type); | ||
225 | ✗ | ff_refstruct_unref(&unit->content_ref); | |
226 | ✗ | unit->content = NULL; | |
227 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 44757 times.
|
44758 | } else if (err < 0) { |
228 | 1 | av_log(ctx->log_ctx, AV_LOG_ERROR, "Failed to read unit %d " | |
229 | "(type %"PRIu32").\n", i, unit->type); | ||
230 | 1 | return err; | |
231 | } | ||
232 | } | ||
233 | |||
234 | 13107 | return 0; | |
235 | } | ||
236 | |||
237 | 3790 | static int cbs_fill_fragment_data(CodedBitstreamFragment *frag, | |
238 | const uint8_t *data, size_t size) | ||
239 | { | ||
240 |
2/4✓ Branch 0 taken 3790 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 3790 times.
|
3790 | av_assert0(!frag->data && !frag->data_ref); |
241 | |||
242 | 3790 | frag->data_ref = | |
243 | 3790 | av_buffer_alloc(size + AV_INPUT_BUFFER_PADDING_SIZE); | |
244 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3790 times.
|
3790 | if (!frag->data_ref) |
245 | ✗ | return AVERROR(ENOMEM); | |
246 | |||
247 | 3790 | frag->data = frag->data_ref->data; | |
248 | 3790 | frag->data_size = size; | |
249 | |||
250 | 3790 | memcpy(frag->data, data, size); | |
251 | 3790 | memset(frag->data + size, 0, | |
252 | AV_INPUT_BUFFER_PADDING_SIZE); | ||
253 | |||
254 | 3790 | return 0; | |
255 | } | ||
256 | |||
257 | 13108 | static int cbs_read_data(CodedBitstreamContext *ctx, | |
258 | CodedBitstreamFragment *frag, | ||
259 | AVBufferRef *buf, | ||
260 | const uint8_t *data, size_t size, | ||
261 | int header) | ||
262 | { | ||
263 | int err; | ||
264 | |||
265 |
2/2✓ Branch 0 taken 9318 times.
✓ Branch 1 taken 3790 times.
|
13108 | if (buf) { |
266 | 9318 | frag->data_ref = av_buffer_ref(buf); | |
267 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9318 times.
|
9318 | if (!frag->data_ref) |
268 | ✗ | return AVERROR(ENOMEM); | |
269 | |||
270 | 9318 | frag->data = (uint8_t *)data; | |
271 | 9318 | frag->data_size = size; | |
272 | |||
273 | } else { | ||
274 | 3790 | err = cbs_fill_fragment_data(frag, data, size); | |
275 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 3790 times.
|
3790 | if (err < 0) |
276 | ✗ | return err; | |
277 | } | ||
278 | |||
279 | 13108 | err = ctx->codec->split_fragment(ctx, frag, header); | |
280 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 13108 times.
|
13108 | if (err < 0) |
281 | ✗ | return err; | |
282 | |||
283 | 13108 | return cbs_read_fragment_content(ctx, frag); | |
284 | } | ||
285 | |||
286 | 94 | int ff_cbs_read_extradata(CodedBitstreamContext *ctx, | |
287 | CodedBitstreamFragment *frag, | ||
288 | const AVCodecParameters *par) | ||
289 | { | ||
290 | 188 | return cbs_read_data(ctx, frag, NULL, | |
291 | 94 | par->extradata, | |
292 | 94 | par->extradata_size, 1); | |
293 | } | ||
294 | |||
295 | 111 | int ff_cbs_read_extradata_from_codec(CodedBitstreamContext *ctx, | |
296 | CodedBitstreamFragment *frag, | ||
297 | const AVCodecContext *avctx) | ||
298 | { | ||
299 | 222 | return cbs_read_data(ctx, frag, NULL, | |
300 | 111 | avctx->extradata, | |
301 | 111 | avctx->extradata_size, 1); | |
302 | } | ||
303 | |||
304 | 9318 | int ff_cbs_read_packet(CodedBitstreamContext *ctx, | |
305 | CodedBitstreamFragment *frag, | ||
306 | const AVPacket *pkt) | ||
307 | { | ||
308 | 18636 | return cbs_read_data(ctx, frag, pkt->buf, | |
309 | 9318 | pkt->data, pkt->size, 0); | |
310 | } | ||
311 | |||
312 | 2 | int ff_cbs_read_packet_side_data(CodedBitstreamContext *ctx, | |
313 | CodedBitstreamFragment *frag, | ||
314 | const AVPacket *pkt) | ||
315 | { | ||
316 | size_t side_data_size; | ||
317 | const uint8_t *side_data = | ||
318 | 2 | av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, | |
319 | &side_data_size); | ||
320 | |||
321 | 2 | return cbs_read_data(ctx, frag, NULL, | |
322 | side_data, side_data_size, 1); | ||
323 | } | ||
324 | |||
325 | 3583 | int ff_cbs_read(CodedBitstreamContext *ctx, | |
326 | CodedBitstreamFragment *frag, | ||
327 | const uint8_t *data, size_t size) | ||
328 | { | ||
329 | 3583 | return cbs_read_data(ctx, frag, NULL, | |
330 | data, size, 0); | ||
331 | } | ||
332 | |||
333 | /** | ||
334 | * Allocate a new internal data buffer of the given size in the unit. | ||
335 | * | ||
336 | * The data buffer will have input padding. | ||
337 | */ | ||
338 | 31837 | static int cbs_alloc_unit_data(CodedBitstreamUnit *unit, | |
339 | size_t size) | ||
340 | { | ||
341 |
2/4✓ Branch 0 taken 31837 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 31837 times.
|
31837 | av_assert0(!unit->data && !unit->data_ref); |
342 | |||
343 | 31837 | unit->data_ref = av_buffer_alloc(size + AV_INPUT_BUFFER_PADDING_SIZE); | |
344 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 31837 times.
|
31837 | if (!unit->data_ref) |
345 | ✗ | return AVERROR(ENOMEM); | |
346 | |||
347 | 31837 | unit->data = unit->data_ref->data; | |
348 | 31837 | unit->data_size = size; | |
349 | |||
350 | 31837 | memset(unit->data + size, 0, AV_INPUT_BUFFER_PADDING_SIZE); | |
351 | |||
352 | 31837 | return 0; | |
353 | } | ||
354 | |||
355 | 31837 | static int cbs_write_unit_data(CodedBitstreamContext *ctx, | |
356 | CodedBitstreamUnit *unit) | ||
357 | { | ||
358 | PutBitContext pbc; | ||
359 | int ret; | ||
360 | |||
361 |
2/2✓ Branch 0 taken 108 times.
✓ Branch 1 taken 31729 times.
|
31837 | if (!ctx->write_buffer) { |
362 | // Initial write buffer size is 1MB. | ||
363 | 108 | ctx->write_buffer_size = 1024 * 1024; | |
364 | |||
365 | 108 | reallocate_and_try_again: | |
366 | 108 | ret = av_reallocp(&ctx->write_buffer, ctx->write_buffer_size); | |
367 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 108 times.
|
108 | if (ret < 0) { |
368 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "Unable to allocate a " | |
369 | "sufficiently large write buffer (last attempt " | ||
370 | "%"SIZE_SPECIFIER" bytes).\n", ctx->write_buffer_size); | ||
371 | ✗ | return ret; | |
372 | } | ||
373 | } | ||
374 | |||
375 | 31837 | init_put_bits(&pbc, ctx->write_buffer, ctx->write_buffer_size); | |
376 | |||
377 | 31837 | ret = ctx->codec->write_unit(ctx, unit, &pbc); | |
378 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 31837 times.
|
31837 | if (ret < 0) { |
379 | ✗ | if (ret == AVERROR(ENOSPC)) { | |
380 | // Overflow. | ||
381 | ✗ | if (ctx->write_buffer_size == INT_MAX / 8) | |
382 | ✗ | return AVERROR(ENOMEM); | |
383 | ✗ | ctx->write_buffer_size = FFMIN(2 * ctx->write_buffer_size, INT_MAX / 8); | |
384 | ✗ | goto reallocate_and_try_again; | |
385 | } | ||
386 | // Write failed for some other reason. | ||
387 | ✗ | return ret; | |
388 | } | ||
389 | |||
390 | // Overflow but we didn't notice. | ||
391 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 31837 times.
|
31837 | av_assert0(put_bits_count(&pbc) <= 8 * ctx->write_buffer_size); |
392 | |||
393 |
2/2✓ Branch 1 taken 52 times.
✓ Branch 2 taken 31785 times.
|
31837 | if (put_bits_count(&pbc) % 8) |
394 | 52 | unit->data_bit_padding = 8 - put_bits_count(&pbc) % 8; | |
395 | else | ||
396 | 31785 | unit->data_bit_padding = 0; | |
397 | |||
398 | 31837 | flush_put_bits(&pbc); | |
399 | |||
400 | 31837 | ret = cbs_alloc_unit_data(unit, put_bytes_output(&pbc)); | |
401 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 31837 times.
|
31837 | if (ret < 0) |
402 | ✗ | return ret; | |
403 | |||
404 | 31837 | memcpy(unit->data, ctx->write_buffer, unit->data_size); | |
405 | |||
406 | 31837 | return 0; | |
407 | } | ||
408 | |||
409 | 7801 | int ff_cbs_write_fragment_data(CodedBitstreamContext *ctx, | |
410 | CodedBitstreamFragment *frag) | ||
411 | { | ||
412 | int err, i; | ||
413 | |||
414 |
2/2✓ Branch 0 taken 31837 times.
✓ Branch 1 taken 7801 times.
|
39638 | for (i = 0; i < frag->nb_units; i++) { |
415 | 31837 | CodedBitstreamUnit *unit = &frag->units[i]; | |
416 | |||
417 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 31837 times.
|
31837 | if (!unit->content) |
418 | ✗ | continue; | |
419 | |||
420 | 31837 | av_buffer_unref(&unit->data_ref); | |
421 | 31837 | unit->data = NULL; | |
422 | |||
423 | 31837 | err = cbs_write_unit_data(ctx, unit); | |
424 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 31837 times.
|
31837 | if (err < 0) { |
425 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "Failed to write unit %d " | |
426 | "(type %"PRIu32").\n", i, unit->type); | ||
427 | ✗ | return err; | |
428 | } | ||
429 |
2/4✓ Branch 0 taken 31837 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 31837 times.
|
31837 | av_assert0(unit->data && unit->data_ref); |
430 | } | ||
431 | |||
432 | 7801 | av_buffer_unref(&frag->data_ref); | |
433 | 7801 | frag->data = NULL; | |
434 | |||
435 | 7801 | err = ctx->codec->assemble_fragment(ctx, frag); | |
436 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 7801 times.
|
7801 | if (err < 0) { |
437 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "Failed to assemble fragment.\n"); | |
438 | ✗ | return err; | |
439 | } | ||
440 |
2/4✓ Branch 0 taken 7801 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 7801 times.
|
7801 | av_assert0(frag->data && frag->data_ref); |
441 | |||
442 | 7801 | return 0; | |
443 | } | ||
444 | |||
445 | 93 | int ff_cbs_write_extradata(CodedBitstreamContext *ctx, | |
446 | AVCodecParameters *par, | ||
447 | CodedBitstreamFragment *frag) | ||
448 | { | ||
449 | int err; | ||
450 | |||
451 | 93 | err = ff_cbs_write_fragment_data(ctx, frag); | |
452 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 93 times.
|
93 | if (err < 0) |
453 | ✗ | return err; | |
454 | |||
455 | 93 | av_freep(&par->extradata); | |
456 | 93 | par->extradata_size = 0; | |
457 | |||
458 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 92 times.
|
93 | if (!frag->data_size) |
459 | 1 | return 0; | |
460 | |||
461 | 92 | par->extradata = av_malloc(frag->data_size + | |
462 | AV_INPUT_BUFFER_PADDING_SIZE); | ||
463 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 92 times.
|
92 | if (!par->extradata) |
464 | ✗ | return AVERROR(ENOMEM); | |
465 | |||
466 | 92 | memcpy(par->extradata, frag->data, frag->data_size); | |
467 | 92 | memset(par->extradata + frag->data_size, 0, | |
468 | AV_INPUT_BUFFER_PADDING_SIZE); | ||
469 | 92 | par->extradata_size = frag->data_size; | |
470 | |||
471 | 92 | return 0; | |
472 | } | ||
473 | |||
474 | 7706 | int ff_cbs_write_packet(CodedBitstreamContext *ctx, | |
475 | AVPacket *pkt, | ||
476 | CodedBitstreamFragment *frag) | ||
477 | { | ||
478 | AVBufferRef *buf; | ||
479 | int err; | ||
480 | |||
481 | 7706 | err = ff_cbs_write_fragment_data(ctx, frag); | |
482 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 7706 times.
|
7706 | if (err < 0) |
483 | ✗ | return err; | |
484 | |||
485 | 7706 | buf = av_buffer_ref(frag->data_ref); | |
486 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 7706 times.
|
7706 | if (!buf) |
487 | ✗ | return AVERROR(ENOMEM); | |
488 | |||
489 | 7706 | av_buffer_unref(&pkt->buf); | |
490 | |||
491 | 7706 | pkt->buf = buf; | |
492 | 7706 | pkt->data = frag->data; | |
493 | 7706 | pkt->size = frag->data_size; | |
494 | |||
495 | 7706 | return 0; | |
496 | } | ||
497 | |||
498 | |||
499 | 98395 | void ff_cbs_trace_header(CodedBitstreamContext *ctx, | |
500 | const char *name) | ||
501 | { | ||
502 |
2/2✓ Branch 0 taken 61743 times.
✓ Branch 1 taken 36652 times.
|
98395 | if (!ctx->trace_enable) |
503 | 61743 | return; | |
504 | |||
505 | 36652 | av_log(ctx->log_ctx, ctx->trace_level, "%s\n", name); | |
506 | } | ||
507 | |||
508 | 967438 | void ff_cbs_trace_read_log(void *trace_context, | |
509 | GetBitContext *gbc, int length, | ||
510 | const char *str, const int *subscripts, | ||
511 | int64_t value) | ||
512 | { | ||
513 | 967438 | CodedBitstreamContext *ctx = trace_context; | |
514 | char name[256]; | ||
515 | char bits[256]; | ||
516 | size_t name_len, bits_len; | ||
517 | int pad, subs, i, j, k, n; | ||
518 | int position; | ||
519 | |||
520 |
2/4✓ Branch 0 taken 967438 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 967438 times.
|
967438 | av_assert0(value >= INT_MIN && value <= UINT32_MAX); |
521 | |||
522 | 967438 | position = get_bits_count(gbc); | |
523 | |||
524 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 967438 times.
|
967438 | av_assert0(length < 256); |
525 |
2/2✓ Branch 0 taken 3682132 times.
✓ Branch 1 taken 967438 times.
|
4649570 | for (i = 0; i < length; i++) |
526 |
2/2✓ Branch 1 taken 1426487 times.
✓ Branch 2 taken 2255645 times.
|
3682132 | bits[i] = get_bits1(gbc) ? '1' : '0'; |
527 | 967438 | bits[length] = 0; | |
528 | |||
529 |
2/2✓ Branch 0 taken 389981 times.
✓ Branch 1 taken 577457 times.
|
967438 | subs = subscripts ? subscripts[0] : 0; |
530 | 967438 | n = 0; | |
531 |
2/2✓ Branch 0 taken 21340813 times.
✓ Branch 1 taken 967438 times.
|
22308251 | for (i = j = 0; str[i];) { |
532 |
2/2✓ Branch 0 taken 690056 times.
✓ Branch 1 taken 20650757 times.
|
21340813 | if (str[i] == '[') { |
533 |
2/2✓ Branch 0 taken 688399 times.
✓ Branch 1 taken 1657 times.
|
690056 | if (n < subs) { |
534 | 688399 | ++n; | |
535 | 688399 | k = snprintf(name + j, sizeof(name) - j, "[%d", subscripts[n]); | |
536 |
2/4✓ Branch 0 taken 688399 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 688399 times.
|
688399 | av_assert0(k > 0 && j + k < sizeof(name)); |
537 | 688399 | j += k; | |
538 |
3/4✓ Branch 0 taken 2578767 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1890368 times.
✓ Branch 3 taken 688399 times.
|
2578767 | for (++i; str[i] && str[i] != ']'; i++); |
539 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 688399 times.
|
688399 | av_assert0(str[i] == ']'); |
540 | } else { | ||
541 |
3/4✓ Branch 0 taken 4971 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 3314 times.
✓ Branch 3 taken 1657 times.
|
4971 | while (str[i] && str[i] != ']') |
542 | 3314 | name[j++] = str[i++]; | |
543 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1657 times.
|
1657 | av_assert0(str[i] == ']'); |
544 | } | ||
545 | } else { | ||
546 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 20650757 times.
|
20650757 | av_assert0(j + 1 < sizeof(name)); |
547 | 20650757 | name[j++] = str[i++]; | |
548 | } | ||
549 | } | ||
550 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 967438 times.
|
967438 | av_assert0(j + 1 < sizeof(name)); |
551 | 967438 | name[j] = 0; | |
552 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 967438 times.
|
967438 | av_assert0(n == subs); |
553 | |||
554 | 967438 | name_len = strlen(name); | |
555 | 967438 | bits_len = length; | |
556 | |||
557 |
2/2✓ Branch 0 taken 14 times.
✓ Branch 1 taken 967424 times.
|
967438 | if (name_len + bits_len > 60) |
558 | 14 | pad = bits_len + 2; | |
559 | else | ||
560 | 967424 | pad = 61 - name_len; | |
561 | |||
562 | 967438 | av_log(ctx->log_ctx, ctx->trace_level, "%-10d %s%*s = %"PRId64"\n", | |
563 | position, name, pad, bits, value); | ||
564 | 967438 | } | |
565 | |||
566 | 967438 | void ff_cbs_trace_write_log(void *trace_context, | |
567 | PutBitContext *pbc, int length, | ||
568 | const char *str, const int *subscripts, | ||
569 | int64_t value) | ||
570 | { | ||
571 | 967438 | CodedBitstreamContext *ctx = trace_context; | |
572 | |||
573 | // Ensure that the syntax element is written to the output buffer, | ||
574 | // make a GetBitContext pointed at the start position, then call the | ||
575 | // read log function which can read the bits back to log them. | ||
576 | |||
577 | GetBitContext gbc; | ||
578 | int position; | ||
579 | |||
580 |
2/2✓ Branch 0 taken 967199 times.
✓ Branch 1 taken 239 times.
|
967438 | if (length > 0) { |
581 | PutBitContext flush; | ||
582 | 967199 | flush = *pbc; | |
583 | 967199 | flush_put_bits(&flush); | |
584 | } | ||
585 | |||
586 | 967438 | position = put_bits_count(pbc); | |
587 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 967438 times.
|
967438 | av_assert0(position >= length); |
588 | |||
589 | 967438 | init_get_bits(&gbc, pbc->buf, position); | |
590 | |||
591 | 967438 | skip_bits_long(&gbc, position - length); | |
592 | |||
593 | 967438 | ff_cbs_trace_read_log(ctx, &gbc, length, str, subscripts, value); | |
594 | 967438 | } | |
595 | |||
596 | 2220846 | static av_always_inline int cbs_read_unsigned(CodedBitstreamContext *ctx, | |
597 | GetBitContext *gbc, | ||
598 | int width, const char *name, | ||
599 | const int *subscripts, | ||
600 | uint32_t *write_to, | ||
601 | uint32_t range_min, | ||
602 | uint32_t range_max) | ||
603 | { | ||
604 | uint32_t value; | ||
605 | |||
606 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2220846 times.
|
2220846 | CBS_TRACE_READ_START(); |
607 | |||
608 |
2/4✓ Branch 0 taken 2220846 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2220846 times.
|
2220846 | av_assert0(width > 0 && width <= 32); |
609 | |||
610 |
2/2✓ Branch 1 taken 1 times.
✓ Branch 2 taken 2220845 times.
|
2220846 | if (get_bits_left(gbc) < width) { |
611 | 1 | av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid value at " | |
612 | "%s: bitstream ended.\n", name); | ||
613 | 1 | return AVERROR_INVALIDDATA; | |
614 | } | ||
615 | |||
616 | 2220845 | value = get_bits_long(gbc, width); | |
617 | |||
618 |
1/4✗ Branch 0 not taken.
✓ Branch 1 taken 2220845 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
2220845 | CBS_TRACE_READ_END(); |
619 | |||
620 |
2/4✓ Branch 0 taken 2220845 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2220845 times.
|
2220845 | if (value < range_min || value > range_max) { |
621 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "%s out of range: " | |
622 | "%"PRIu32", but must be in [%"PRIu32",%"PRIu32"].\n", | ||
623 | name, value, range_min, range_max); | ||
624 | ✗ | return AVERROR_INVALIDDATA; | |
625 | } | ||
626 | |||
627 | 2220845 | *write_to = value; | |
628 | 2220845 | return 0; | |
629 | } | ||
630 | |||
631 | 1722896 | int ff_cbs_read_unsigned(CodedBitstreamContext *ctx, GetBitContext *gbc, | |
632 | int width, const char *name, | ||
633 | const int *subscripts, uint32_t *write_to, | ||
634 | uint32_t range_min, uint32_t range_max) | ||
635 | { | ||
636 | 1722896 | return cbs_read_unsigned(ctx, gbc, width, name, subscripts, | |
637 | write_to, range_min, range_max); | ||
638 | } | ||
639 | |||
640 | 497950 | int ff_cbs_read_simple_unsigned(CodedBitstreamContext *ctx, GetBitContext *gbc, | |
641 | int width, const char *name, uint32_t *write_to) | ||
642 | { | ||
643 | 497950 | return cbs_read_unsigned(ctx, gbc, width, name, NULL, | |
644 | write_to, 0, UINT32_MAX); | ||
645 | } | ||
646 | |||
647 | 936431 | int ff_cbs_write_unsigned(CodedBitstreamContext *ctx, PutBitContext *pbc, | |
648 | int width, const char *name, | ||
649 | const int *subscripts, uint32_t value, | ||
650 | uint32_t range_min, uint32_t range_max) | ||
651 | { | ||
652 |
2/2✓ Branch 0 taken 729264 times.
✓ Branch 1 taken 207167 times.
|
936431 | CBS_TRACE_WRITE_START(); |
653 | |||
654 |
2/4✓ Branch 0 taken 936431 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 936431 times.
|
936431 | av_assert0(width > 0 && width <= 32); |
655 | |||
656 |
2/4✓ Branch 0 taken 936431 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 936431 times.
|
936431 | if (value < range_min || value > range_max) { |
657 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "%s out of range: " | |
658 | "%"PRIu32", but must be in [%"PRIu32",%"PRIu32"].\n", | ||
659 | name, value, range_min, range_max); | ||
660 | ✗ | return AVERROR_INVALIDDATA; | |
661 | } | ||
662 | |||
663 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 936431 times.
|
936431 | if (put_bits_left(pbc) < width) |
664 | ✗ | return AVERROR(ENOSPC); | |
665 | |||
666 |
2/2✓ Branch 0 taken 935451 times.
✓ Branch 1 taken 980 times.
|
936431 | if (width < 32) |
667 | 935451 | put_bits(pbc, width, value); | |
668 | else | ||
669 | 980 | put_bits32(pbc, value); | |
670 | |||
671 |
3/4✓ Branch 0 taken 729264 times.
✓ Branch 1 taken 207167 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 729264 times.
|
936431 | CBS_TRACE_WRITE_END(); |
672 | |||
673 | 936431 | return 0; | |
674 | } | ||
675 | |||
676 | 266171 | int ff_cbs_write_simple_unsigned(CodedBitstreamContext *ctx, PutBitContext *pbc, | |
677 | int width, const char *name, uint32_t value) | ||
678 | { | ||
679 | 532342 | return ff_cbs_write_unsigned(ctx, pbc, width, name, NULL, | |
680 | 266171 | value, 0, MAX_UINT_BITS(width)); | |
681 | } | ||
682 | |||
683 | 50 | int ff_cbs_read_signed(CodedBitstreamContext *ctx, GetBitContext *gbc, | |
684 | int width, const char *name, | ||
685 | const int *subscripts, int32_t *write_to, | ||
686 | int32_t range_min, int32_t range_max) | ||
687 | { | ||
688 | int32_t value; | ||
689 | |||
690 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 50 times.
|
50 | CBS_TRACE_READ_START(); |
691 | |||
692 |
2/4✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 50 times.
|
50 | av_assert0(width > 0 && width <= 32); |
693 | |||
694 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 50 times.
|
50 | if (get_bits_left(gbc) < width) { |
695 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid value at " | |
696 | "%s: bitstream ended.\n", name); | ||
697 | ✗ | return AVERROR_INVALIDDATA; | |
698 | } | ||
699 | |||
700 | 50 | value = get_sbits_long(gbc, width); | |
701 | |||
702 |
1/4✗ Branch 0 not taken.
✓ Branch 1 taken 50 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
|
50 | CBS_TRACE_READ_END(); |
703 | |||
704 |
2/4✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 50 times.
|
50 | if (value < range_min || value > range_max) { |
705 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "%s out of range: " | |
706 | "%"PRId32", but must be in [%"PRId32",%"PRId32"].\n", | ||
707 | name, value, range_min, range_max); | ||
708 | ✗ | return AVERROR_INVALIDDATA; | |
709 | } | ||
710 | |||
711 | 50 | *write_to = value; | |
712 | 50 | return 0; | |
713 | } | ||
714 | |||
715 | 50 | int ff_cbs_write_signed(CodedBitstreamContext *ctx, PutBitContext *pbc, | |
716 | int width, const char *name, | ||
717 | const int *subscripts, int32_t value, | ||
718 | int32_t range_min, int32_t range_max) | ||
719 | { | ||
720 |
1/2✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
|
50 | CBS_TRACE_WRITE_START(); |
721 | |||
722 |
2/4✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 50 times.
|
50 | av_assert0(width > 0 && width <= 32); |
723 | |||
724 |
2/4✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 50 times.
|
50 | if (value < range_min || value > range_max) { |
725 | ✗ | av_log(ctx->log_ctx, AV_LOG_ERROR, "%s out of range: " | |
726 | "%"PRId32", but must be in [%"PRId32",%"PRId32"].\n", | ||
727 | name, value, range_min, range_max); | ||
728 | ✗ | return AVERROR_INVALIDDATA; | |
729 | } | ||
730 | |||
731 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 50 times.
|
50 | if (put_bits_left(pbc) < width) |
732 | ✗ | return AVERROR(ENOSPC); | |
733 | |||
734 |
1/2✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
|
50 | if (width < 32) |
735 | 50 | put_sbits(pbc, width, value); | |
736 | else | ||
737 | ✗ | put_bits32(pbc, value); | |
738 | |||
739 |
2/4✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 50 times.
|
50 | CBS_TRACE_WRITE_END(); |
740 | |||
741 | 50 | return 0; | |
742 | } | ||
743 | |||
744 | |||
745 | 48369 | static int cbs_insert_unit(CodedBitstreamFragment *frag, | |
746 | int position) | ||
747 | { | ||
748 | CodedBitstreamUnit *units; | ||
749 | |||
750 |
2/2✓ Branch 0 taken 46111 times.
✓ Branch 1 taken 2258 times.
|
48369 | if (frag->nb_units < frag->nb_units_allocated) { |
751 | 46111 | units = frag->units; | |
752 | |||
753 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 46111 times.
|
46111 | if (position < frag->nb_units) |
754 | ✗ | memmove(units + position + 1, units + position, | |
755 | ✗ | (frag->nb_units - position) * sizeof(*units)); | |
756 | } else { | ||
757 | 2258 | units = av_malloc_array(frag->nb_units*2 + 1, sizeof(*units)); | |
758 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2258 times.
|
2258 | if (!units) |
759 | ✗ | return AVERROR(ENOMEM); | |
760 | |||
761 | 2258 | frag->nb_units_allocated = 2*frag->nb_units_allocated + 1; | |
762 | |||
763 |
2/2✓ Branch 0 taken 1406 times.
✓ Branch 1 taken 852 times.
|
2258 | if (position > 0) |
764 | 1406 | memcpy(units, frag->units, position * sizeof(*units)); | |
765 | |||
766 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 2258 times.
|
2258 | if (position < frag->nb_units) |
767 | ✗ | memcpy(units + position + 1, frag->units + position, | |
768 | ✗ | (frag->nb_units - position) * sizeof(*units)); | |
769 | } | ||
770 | |||
771 | 48369 | memset(units + position, 0, sizeof(*units)); | |
772 | |||
773 |
2/2✓ Branch 0 taken 2258 times.
✓ Branch 1 taken 46111 times.
|
48369 | if (units != frag->units) { |
774 | 2258 | av_free(frag->units); | |
775 | 2258 | frag->units = units; | |
776 | } | ||
777 | |||
778 | 48369 | ++frag->nb_units; | |
779 | |||
780 | 48369 | return 0; | |
781 | } | ||
782 | |||
783 | 13 | int ff_cbs_insert_unit_content(CodedBitstreamFragment *frag, | |
784 | int position, | ||
785 | CodedBitstreamUnitType type, | ||
786 | void *content, | ||
787 | void *content_ref) | ||
788 | { | ||
789 | CodedBitstreamUnit *unit; | ||
790 | int err; | ||
791 | |||
792 |
1/2✓ Branch 0 taken 13 times.
✗ Branch 1 not taken.
|
13 | if (position == -1) |
793 | 13 | position = frag->nb_units; | |
794 |
2/4✓ Branch 0 taken 13 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 13 times.
|
13 | av_assert0(position >= 0 && position <= frag->nb_units); |
795 | |||
796 | 13 | err = cbs_insert_unit(frag, position); | |
797 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 13 times.
|
13 | if (err < 0) |
798 | ✗ | return err; | |
799 | |||
800 |
1/2✓ Branch 0 taken 13 times.
✗ Branch 1 not taken.
|
13 | if (content_ref) { |
801 | // Create our own reference out of the user-supplied one. | ||
802 | 13 | content_ref = ff_refstruct_ref(content_ref); | |
803 | } | ||
804 | |||
805 | 13 | unit = &frag->units[position]; | |
806 | 13 | unit->type = type; | |
807 | 13 | unit->content = content; | |
808 | 13 | unit->content_ref = content_ref; | |
809 | |||
810 | 13 | return 0; | |
811 | } | ||
812 | |||
813 | 48356 | static int cbs_insert_unit_data(CodedBitstreamFragment *frag, | |
814 | CodedBitstreamUnitType type, | ||
815 | uint8_t *data, size_t data_size, | ||
816 | AVBufferRef *data_buf, | ||
817 | int position) | ||
818 | { | ||
819 | CodedBitstreamUnit *unit; | ||
820 | AVBufferRef *data_ref; | ||
821 | int err; | ||
822 | |||
823 |
2/4✓ Branch 0 taken 48356 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 48356 times.
|
48356 | av_assert0(position >= 0 && position <= frag->nb_units); |
824 | |||
825 |
1/2✓ Branch 0 taken 48356 times.
✗ Branch 1 not taken.
|
48356 | if (data_buf) |
826 | 48356 | data_ref = av_buffer_ref(data_buf); | |
827 | else | ||
828 | ✗ | data_ref = av_buffer_create(data, data_size, NULL, NULL, 0); | |
829 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 48356 times.
|
48356 | if (!data_ref) { |
830 | ✗ | if (!data_buf) | |
831 | ✗ | av_free(data); | |
832 | ✗ | return AVERROR(ENOMEM); | |
833 | } | ||
834 | |||
835 | 48356 | err = cbs_insert_unit(frag, position); | |
836 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 48356 times.
|
48356 | if (err < 0) { |
837 | ✗ | av_buffer_unref(&data_ref); | |
838 | ✗ | return err; | |
839 | } | ||
840 | |||
841 | 48356 | unit = &frag->units[position]; | |
842 | 48356 | unit->type = type; | |
843 | 48356 | unit->data = data; | |
844 | 48356 | unit->data_size = data_size; | |
845 | 48356 | unit->data_ref = data_ref; | |
846 | |||
847 | 48356 | return 0; | |
848 | } | ||
849 | |||
850 | 48356 | int ff_cbs_append_unit_data(CodedBitstreamFragment *frag, | |
851 | CodedBitstreamUnitType type, | ||
852 | uint8_t *data, size_t data_size, | ||
853 | AVBufferRef *data_buf) | ||
854 | { | ||
855 | 48356 | return cbs_insert_unit_data(frag, type, | |
856 | data, data_size, data_buf, | ||
857 | frag->nb_units); | ||
858 | } | ||
859 | |||
860 | 72 | void ff_cbs_delete_unit(CodedBitstreamFragment *frag, | |
861 | int position) | ||
862 | { | ||
863 |
2/4✓ Branch 0 taken 72 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 72 times.
|
72 | av_assert0(0 <= position && position < frag->nb_units |
864 | && "Unit to be deleted not in fragment."); | ||
865 | |||
866 | 72 | cbs_unit_uninit(&frag->units[position]); | |
867 | |||
868 | 72 | --frag->nb_units; | |
869 | |||
870 |
1/2✓ Branch 0 taken 72 times.
✗ Branch 1 not taken.
|
72 | if (frag->nb_units > 0) |
871 | 72 | memmove(frag->units + position, | |
872 | 72 | frag->units + position + 1, | |
873 | 72 | (frag->nb_units - position) * sizeof(*frag->units)); | |
874 | 72 | } | |
875 | |||
876 | 39250 | static void cbs_default_free_unit_content(FFRefStructOpaque opaque, void *content) | |
877 | { | ||
878 | 39250 | const CodedBitstreamUnitTypeDescriptor *desc = opaque.c; | |
879 | |||
880 |
2/2✓ Branch 0 taken 46174 times.
✓ Branch 1 taken 39250 times.
|
85424 | for (int i = 0; i < desc->type.ref.nb_offsets; i++) { |
881 | 46174 | void **ptr = (void**)((char*)content + desc->type.ref.offsets[i]); | |
882 | 46174 | av_buffer_unref((AVBufferRef**)(ptr + 1)); | |
883 | } | ||
884 | 39250 | } | |
885 | |||
886 | static const CodedBitstreamUnitTypeDescriptor | ||
887 | 45065 | *cbs_find_unit_type_desc(CodedBitstreamContext *ctx, | |
888 | CodedBitstreamUnit *unit) | ||
889 | { | ||
890 | const CodedBitstreamUnitTypeDescriptor *desc; | ||
891 | int i, j; | ||
892 | |||
893 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 45065 times.
|
45065 | if (!ctx->codec->unit_types) |
894 | ✗ | return NULL; | |
895 | |||
896 | 265335 | for (i = 0;; i++) { | |
897 | 265335 | desc = &ctx->codec->unit_types[i]; | |
898 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 265335 times.
|
265335 | if (desc->nb_unit_types == 0) |
899 | ✗ | break; | |
900 |
2/2✓ Branch 0 taken 35609 times.
✓ Branch 1 taken 229726 times.
|
265335 | if (desc->nb_unit_types == CBS_UNIT_TYPE_RANGE) { |
901 |
1/2✓ Branch 0 taken 35609 times.
✗ Branch 1 not taken.
|
35609 | if (unit->type >= desc->unit_type.range.start && |
902 |
2/2✓ Branch 0 taken 24350 times.
✓ Branch 1 taken 11259 times.
|
35609 | unit->type <= desc->unit_type.range.end) |
903 | 24350 | return desc; | |
904 | } else { | ||
905 |
2/2✓ Branch 0 taken 243659 times.
✓ Branch 1 taken 209011 times.
|
452670 | for (j = 0; j < desc->nb_unit_types; j++) { |
906 |
2/2✓ Branch 0 taken 20715 times.
✓ Branch 1 taken 222944 times.
|
243659 | if (desc->unit_type.list[j] == unit->type) |
907 | 20715 | return desc; | |
908 | } | ||
909 | } | ||
910 | } | ||
911 | ✗ | return NULL; | |
912 | } | ||
913 | |||
914 | 45065 | static void *cbs_alloc_content(const CodedBitstreamUnitTypeDescriptor *desc) | |
915 | { | ||
916 | 45065 | return ff_refstruct_alloc_ext_c(desc->content_size, 0, | |
917 | 45065 | (FFRefStructOpaque){ .c = desc }, | |
918 |
2/2✓ Branch 0 taken 5815 times.
✓ Branch 1 taken 39250 times.
|
45065 | desc->content_type == CBS_CONTENT_TYPE_COMPLEX |
919 | ? desc->type.complex.content_free | ||
920 | : cbs_default_free_unit_content); | ||
921 | } | ||
922 | |||
923 | 44758 | int ff_cbs_alloc_unit_content(CodedBitstreamContext *ctx, | |
924 | CodedBitstreamUnit *unit) | ||
925 | { | ||
926 | const CodedBitstreamUnitTypeDescriptor *desc; | ||
927 | |||
928 |
2/4✓ Branch 0 taken 44758 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 44758 times.
|
44758 | av_assert0(!unit->content && !unit->content_ref); |
929 | |||
930 | 44758 | desc = cbs_find_unit_type_desc(ctx, unit); | |
931 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 44758 times.
|
44758 | if (!desc) |
932 | ✗ | return AVERROR(ENOSYS); | |
933 | |||
934 | 44758 | unit->content_ref = cbs_alloc_content(desc); | |
935 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 44758 times.
|
44758 | if (!unit->content_ref) |
936 | ✗ | return AVERROR(ENOMEM); | |
937 | 44758 | unit->content = unit->content_ref; | |
938 | |||
939 | 44758 | return 0; | |
940 | } | ||
941 | |||
942 | 307 | static int cbs_clone_noncomplex_unit_content(void **clonep, | |
943 | const CodedBitstreamUnit *unit, | ||
944 | const CodedBitstreamUnitTypeDescriptor *desc) | ||
945 | { | ||
946 | const uint8_t *src; | ||
947 | uint8_t *copy; | ||
948 | int err, i; | ||
949 | |||
950 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
|
307 | av_assert0(unit->content); |
951 | 307 | src = unit->content; | |
952 | |||
953 | 307 | copy = cbs_alloc_content(desc); | |
954 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
|
307 | if (!copy) |
955 | ✗ | return AVERROR(ENOMEM); | |
956 | 307 | memcpy(copy, src, desc->content_size); | |
957 |
2/2✓ Branch 0 taken 307 times.
✓ Branch 1 taken 307 times.
|
614 | for (int i = 0; i < desc->type.ref.nb_offsets; i++) { |
958 | 307 | void **ptr = (void**)(copy + desc->type.ref.offsets[i]); | |
959 | /* Zero all the AVBufferRefs as they are owned by src. */ | ||
960 | 307 | *(ptr + 1) = NULL; | |
961 | } | ||
962 | |||
963 |
2/2✓ Branch 0 taken 307 times.
✓ Branch 1 taken 307 times.
|
614 | for (i = 0; i < desc->type.ref.nb_offsets; i++) { |
964 | 307 | const uint8_t *const *src_ptr = (const uint8_t* const*)(src + desc->type.ref.offsets[i]); | |
965 | 307 | const AVBufferRef *src_buf = *(AVBufferRef**)(src_ptr + 1); | |
966 | 307 | uint8_t **copy_ptr = (uint8_t**)(copy + desc->type.ref.offsets[i]); | |
967 | 307 | AVBufferRef **copy_buf = (AVBufferRef**)(copy_ptr + 1); | |
968 | |||
969 |
1/2✓ Branch 0 taken 307 times.
✗ Branch 1 not taken.
|
307 | if (!*src_ptr) { |
970 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
|
307 | av_assert0(!src_buf); |
971 | 307 | continue; | |
972 | } | ||
973 | ✗ | if (!src_buf) { | |
974 | // We can't handle a non-refcounted pointer here - we don't | ||
975 | // have enough information to handle whatever structure lies | ||
976 | // at the other end of it. | ||
977 | ✗ | err = AVERROR(EINVAL); | |
978 | ✗ | goto fail; | |
979 | } | ||
980 | |||
981 | ✗ | *copy_buf = av_buffer_ref(src_buf); | |
982 | ✗ | if (!*copy_buf) { | |
983 | ✗ | err = AVERROR(ENOMEM); | |
984 | ✗ | goto fail; | |
985 | } | ||
986 | } | ||
987 | 307 | *clonep = copy; | |
988 | |||
989 | 307 | return 0; | |
990 | |||
991 | ✗ | fail: | |
992 | ✗ | ff_refstruct_unref(©); | |
993 | ✗ | return err; | |
994 | } | ||
995 | |||
996 | /* | ||
997 | * On success, unit->content and unit->content_ref are updated with | ||
998 | * the new content; unit is untouched on failure. | ||
999 | * Any old content_ref is simply overwritten and not freed. | ||
1000 | */ | ||
1001 | 307 | static int cbs_clone_unit_content(CodedBitstreamContext *ctx, | |
1002 | CodedBitstreamUnit *unit) | ||
1003 | { | ||
1004 | const CodedBitstreamUnitTypeDescriptor *desc; | ||
1005 | void *new_content; | ||
1006 | int err; | ||
1007 | |||
1008 | 307 | desc = cbs_find_unit_type_desc(ctx, unit); | |
1009 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
|
307 | if (!desc) |
1010 | ✗ | return AVERROR(ENOSYS); | |
1011 | |||
1012 |
1/3✓ Branch 0 taken 307 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
|
307 | switch (desc->content_type) { |
1013 | 307 | case CBS_CONTENT_TYPE_INTERNAL_REFS: | |
1014 | 307 | err = cbs_clone_noncomplex_unit_content(&new_content, unit, desc); | |
1015 | 307 | break; | |
1016 | |||
1017 | ✗ | case CBS_CONTENT_TYPE_COMPLEX: | |
1018 | ✗ | if (!desc->type.complex.content_clone) | |
1019 | ✗ | return AVERROR_PATCHWELCOME; | |
1020 | ✗ | err = desc->type.complex.content_clone(&new_content, unit); | |
1021 | ✗ | break; | |
1022 | |||
1023 | ✗ | default: | |
1024 | ✗ | av_assert0(0 && "Invalid content type."); | |
1025 | } | ||
1026 | |||
1027 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
|
307 | if (err < 0) |
1028 | ✗ | return err; | |
1029 | |||
1030 | 307 | unit->content_ref = new_content; | |
1031 | 307 | unit->content = new_content; | |
1032 | 307 | return 0; | |
1033 | } | ||
1034 | |||
1035 | 15063 | int ff_cbs_make_unit_refcounted(CodedBitstreamContext *ctx, | |
1036 | CodedBitstreamUnit *unit) | ||
1037 | { | ||
1038 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 15063 times.
|
15063 | av_assert0(unit->content); |
1039 |
1/2✓ Branch 0 taken 15063 times.
✗ Branch 1 not taken.
|
15063 | if (unit->content_ref) |
1040 | 15063 | return 0; | |
1041 | ✗ | return cbs_clone_unit_content(ctx, unit); | |
1042 | } | ||
1043 | |||
1044 | 307 | int ff_cbs_make_unit_writable(CodedBitstreamContext *ctx, | |
1045 | CodedBitstreamUnit *unit) | ||
1046 | { | ||
1047 | 307 | void *ref = unit->content_ref; | |
1048 | int err; | ||
1049 | |||
1050 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
|
307 | av_assert0(unit->content); |
1051 |
2/4✓ Branch 0 taken 307 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 307 times.
|
307 | if (ref && ff_refstruct_exclusive(ref)) |
1052 | ✗ | return 0; | |
1053 | |||
1054 | 307 | err = cbs_clone_unit_content(ctx, unit); | |
1055 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
|
307 | if (err < 0) |
1056 | ✗ | return err; | |
1057 | 307 | ff_refstruct_unref(&ref); | |
1058 | 307 | return 0; | |
1059 | } | ||
1060 | |||
1061 | 696 | void ff_cbs_discard_units(CodedBitstreamContext *ctx, | |
1062 | CodedBitstreamFragment *frag, | ||
1063 | enum AVDiscard skip, | ||
1064 | int flags) | ||
1065 | { | ||
1066 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 696 times.
|
696 | if (!ctx->codec->discarded_unit) |
1067 | ✗ | return; | |
1068 | |||
1069 |
2/2✓ Branch 0 taken 1292 times.
✓ Branch 1 taken 134 times.
|
1426 | for (int i = frag->nb_units - 1; i >= 0; i--) { |
1070 |
2/2✓ Branch 1 taken 562 times.
✓ Branch 2 taken 730 times.
|
1292 | if (ctx->codec->discarded_unit(ctx, &frag->units[i], skip)) { |
1071 | // discard all units | ||
1072 |
1/2✓ Branch 0 taken 562 times.
✗ Branch 1 not taken.
|
562 | if (!(flags & DISCARD_FLAG_KEEP_NON_VCL)) { |
1073 | 562 | ff_cbs_fragment_free(frag); | |
1074 | 562 | return; | |
1075 | } | ||
1076 | |||
1077 | ✗ | ff_cbs_delete_unit(frag, i); | |
1078 | } | ||
1079 | } | ||
1080 | } | ||
1081 |