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 "libavutil/avassert.h"
22 #include "libavutil/log.h"
23 #include "libavutil/mem.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/bprint.h"
27
28 #include "bsf.h"
29 #include "bsf_internal.h"
30 #include "codec_desc.h"
31 #include "codec_par.h"
32
33 #define IS_EMPTY(pkt) (!(pkt)->data && !(pkt)->side_data_elems)
34
35 struct AVBSFInternal {
36 AVPacket *buffer_pkt;
37 int eof;
38 };
39
av_bsf_free(AVBSFContext ** pctx)40 void av_bsf_free(AVBSFContext **pctx)
41 {
42 AVBSFContext *ctx;
43
44 if (!pctx || !*pctx)
45 return;
46 ctx = *pctx;
47
48 if (ctx->filter->close)
49 ctx->filter->close(ctx);
50 if (ctx->filter->priv_class && ctx->priv_data)
51 av_opt_free(ctx->priv_data);
52
53 if (ctx->internal)
54 av_packet_free(&ctx->internal->buffer_pkt);
55 av_freep(&ctx->internal);
56 av_freep(&ctx->priv_data);
57
58 avcodec_parameters_free(&ctx->par_in);
59 avcodec_parameters_free(&ctx->par_out);
60
61 av_freep(pctx);
62 }
63
bsf_child_next(void * obj,void * prev)64 static void *bsf_child_next(void *obj, void *prev)
65 {
66 AVBSFContext *ctx = obj;
67 if (!prev && ctx->filter->priv_class)
68 return ctx->priv_data;
69 return NULL;
70 }
71
bsf_to_name(void * bsf)72 static const char *bsf_to_name(void *bsf)
73 {
74 return ((AVBSFContext *)bsf)->filter->name;
75 }
76
77 static const AVClass bsf_class = {
78 .class_name = "AVBSFContext",
79 .item_name = bsf_to_name,
80 .version = LIBAVUTIL_VERSION_INT,
81 .child_next = bsf_child_next,
82 .child_class_next = ff_bsf_child_class_next,
83 .category = AV_CLASS_CATEGORY_BITSTREAM_FILTER,
84 };
85
av_bsf_get_class(void)86 const AVClass *av_bsf_get_class(void)
87 {
88 return &bsf_class;
89 }
90
av_bsf_alloc(const AVBitStreamFilter * filter,AVBSFContext ** pctx)91 int av_bsf_alloc(const AVBitStreamFilter *filter, AVBSFContext **pctx)
92 {
93 AVBSFContext *ctx;
94 AVBSFInternal *bsfi;
95 int ret;
96
97 ctx = av_mallocz(sizeof(*ctx));
98 if (!ctx)
99 return AVERROR(ENOMEM);
100
101 ctx->av_class = &bsf_class;
102 ctx->filter = filter;
103
104 ctx->par_in = avcodec_parameters_alloc();
105 ctx->par_out = avcodec_parameters_alloc();
106 if (!ctx->par_in || !ctx->par_out) {
107 ret = AVERROR(ENOMEM);
108 goto fail;
109 }
110
111 bsfi = av_mallocz(sizeof(*bsfi));
112 if (!bsfi) {
113 ret = AVERROR(ENOMEM);
114 goto fail;
115 }
116 ctx->internal = bsfi;
117
118 bsfi->buffer_pkt = av_packet_alloc();
119 if (!bsfi->buffer_pkt) {
120 ret = AVERROR(ENOMEM);
121 goto fail;
122 }
123
124 /* allocate priv data and init private options */
125 if (filter->priv_data_size) {
126 ctx->priv_data = av_mallocz(filter->priv_data_size);
127 if (!ctx->priv_data) {
128 ret = AVERROR(ENOMEM);
129 goto fail;
130 }
131 if (filter->priv_class) {
132 *(const AVClass **)ctx->priv_data = filter->priv_class;
133 av_opt_set_defaults(ctx->priv_data);
134 }
135 }
136
137 *pctx = ctx;
138 return 0;
139 fail:
140 av_bsf_free(&ctx);
141 return ret;
142 }
143
av_bsf_init(AVBSFContext * ctx)144 int av_bsf_init(AVBSFContext *ctx)
145 {
146 int ret, i;
147
148 /* check that the codec is supported */
149 if (ctx->filter->codec_ids) {
150 for (i = 0; ctx->filter->codec_ids[i] != AV_CODEC_ID_NONE; i++)
151 if (ctx->par_in->codec_id == ctx->filter->codec_ids[i])
152 break;
153 if (ctx->filter->codec_ids[i] == AV_CODEC_ID_NONE) {
154 const AVCodecDescriptor *desc = avcodec_descriptor_get(ctx->par_in->codec_id);
155 av_log(ctx, AV_LOG_ERROR, "Codec '%s' (%d) is not supported by the "
156 "bitstream filter '%s'. Supported codecs are: ",
157 desc ? desc->name : "unknown", ctx->par_in->codec_id, ctx->filter->name);
158 for (i = 0; ctx->filter->codec_ids[i] != AV_CODEC_ID_NONE; i++) {
159 desc = avcodec_descriptor_get(ctx->filter->codec_ids[i]);
160 av_log(ctx, AV_LOG_ERROR, "%s (%d) ",
161 desc ? desc->name : "unknown", ctx->filter->codec_ids[i]);
162 }
163 av_log(ctx, AV_LOG_ERROR, "\n");
164 return AVERROR(EINVAL);
165 }
166 }
167
168 /* initialize output parameters to be the same as input
169 * init below might overwrite that */
170 ret = avcodec_parameters_copy(ctx->par_out, ctx->par_in);
171 if (ret < 0)
172 return ret;
173
174 ctx->time_base_out = ctx->time_base_in;
175
176 if (ctx->filter->init) {
177 ret = ctx->filter->init(ctx);
178 if (ret < 0)
179 return ret;
180 }
181
182 return 0;
183 }
184
av_bsf_flush(AVBSFContext * ctx)185 void av_bsf_flush(AVBSFContext *ctx)
186 {
187 AVBSFInternal *bsfi = ctx->internal;
188
189 bsfi->eof = 0;
190
191 av_packet_unref(bsfi->buffer_pkt);
192
193 if (ctx->filter->flush)
194 ctx->filter->flush(ctx);
195 }
196
av_bsf_send_packet(AVBSFContext * ctx,AVPacket * pkt)197 int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt)
198 {
199 AVBSFInternal *bsfi = ctx->internal;
200 int ret;
201
202 if (!pkt || IS_EMPTY(pkt)) {
203 bsfi->eof = 1;
204 return 0;
205 }
206
207 if (bsfi->eof) {
208 av_log(ctx, AV_LOG_ERROR, "A non-NULL packet sent after an EOF.\n");
209 return AVERROR(EINVAL);
210 }
211
212 if (!IS_EMPTY(bsfi->buffer_pkt))
213 return AVERROR(EAGAIN);
214
215 ret = av_packet_make_refcounted(pkt);
216 if (ret < 0)
217 return ret;
218 av_packet_move_ref(bsfi->buffer_pkt, pkt);
219
220 return 0;
221 }
222
av_bsf_receive_packet(AVBSFContext * ctx,AVPacket * pkt)223 int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt)
224 {
225 return ctx->filter->filter(ctx, pkt);
226 }
227
ff_bsf_get_packet(AVBSFContext * ctx,AVPacket ** pkt)228 int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt)
229 {
230 AVBSFInternal *bsfi = ctx->internal;
231 AVPacket *tmp_pkt;
232
233 if (bsfi->eof)
234 return AVERROR_EOF;
235
236 if (IS_EMPTY(bsfi->buffer_pkt))
237 return AVERROR(EAGAIN);
238
239 tmp_pkt = av_packet_alloc();
240 if (!tmp_pkt)
241 return AVERROR(ENOMEM);
242
243 *pkt = bsfi->buffer_pkt;
244 bsfi->buffer_pkt = tmp_pkt;
245
246 return 0;
247 }
248
ff_bsf_get_packet_ref(AVBSFContext * ctx,AVPacket * pkt)249 int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
250 {
251 AVBSFInternal *bsfi = ctx->internal;
252
253 if (bsfi->eof)
254 return AVERROR_EOF;
255
256 if (IS_EMPTY(bsfi->buffer_pkt))
257 return AVERROR(EAGAIN);
258
259 av_packet_move_ref(pkt, bsfi->buffer_pkt);
260
261 return 0;
262 }
263
264 typedef struct BSFListContext {
265 const AVClass *class;
266
267 AVBSFContext **bsfs;
268 int nb_bsfs;
269
270 unsigned idx; // index of currently processed BSF
271
272 char * item_name;
273 } BSFListContext;
274
275
bsf_list_init(AVBSFContext * bsf)276 static int bsf_list_init(AVBSFContext *bsf)
277 {
278 BSFListContext *lst = bsf->priv_data;
279 int ret, i;
280 const AVCodecParameters *cod_par = bsf->par_in;
281 AVRational tb = bsf->time_base_in;
282
283 for (i = 0; i < lst->nb_bsfs; ++i) {
284 ret = avcodec_parameters_copy(lst->bsfs[i]->par_in, cod_par);
285 if (ret < 0)
286 goto fail;
287
288 lst->bsfs[i]->time_base_in = tb;
289
290 ret = av_bsf_init(lst->bsfs[i]);
291 if (ret < 0)
292 goto fail;
293
294 cod_par = lst->bsfs[i]->par_out;
295 tb = lst->bsfs[i]->time_base_out;
296 }
297
298 bsf->time_base_out = tb;
299 ret = avcodec_parameters_copy(bsf->par_out, cod_par);
300
301 fail:
302 return ret;
303 }
304
bsf_list_filter(AVBSFContext * bsf,AVPacket * out)305 static int bsf_list_filter(AVBSFContext *bsf, AVPacket *out)
306 {
307 BSFListContext *lst = bsf->priv_data;
308 int ret, eof = 0;
309
310 if (!lst->nb_bsfs)
311 return ff_bsf_get_packet_ref(bsf, out);
312
313 while (1) {
314 /* get a packet from the previous filter up the chain */
315 if (lst->idx)
316 ret = av_bsf_receive_packet(lst->bsfs[lst->idx-1], out);
317 else
318 ret = ff_bsf_get_packet_ref(bsf, out);
319 if (ret == AVERROR(EAGAIN)) {
320 if (!lst->idx)
321 return ret;
322 lst->idx--;
323 continue;
324 } else if (ret == AVERROR_EOF) {
325 eof = 1;
326 } else if (ret < 0)
327 return ret;
328
329 /* send it to the next filter down the chain */
330 if (lst->idx < lst->nb_bsfs) {
331 ret = av_bsf_send_packet(lst->bsfs[lst->idx], eof ? NULL : out);
332 av_assert1(ret != AVERROR(EAGAIN));
333 if (ret < 0) {
334 av_packet_unref(out);
335 return ret;
336 }
337 lst->idx++;
338 eof = 0;
339 } else if (eof) {
340 return ret;
341 } else {
342 return 0;
343 }
344 }
345 }
346
bsf_list_flush(AVBSFContext * bsf)347 static void bsf_list_flush(AVBSFContext *bsf)
348 {
349 BSFListContext *lst = bsf->priv_data;
350
351 for (int i = 0; i < lst->nb_bsfs; i++)
352 av_bsf_flush(lst->bsfs[i]);
353 lst->idx = 0;
354 }
355
bsf_list_close(AVBSFContext * bsf)356 static void bsf_list_close(AVBSFContext *bsf)
357 {
358 BSFListContext *lst = bsf->priv_data;
359 int i;
360
361 for (i = 0; i < lst->nb_bsfs; ++i)
362 av_bsf_free(&lst->bsfs[i]);
363 av_freep(&lst->bsfs);
364 av_freep(&lst->item_name);
365 }
366
bsf_list_item_name(void * ctx)367 static const char *bsf_list_item_name(void *ctx)
368 {
369 static const char *null_filter_name = "null";
370 AVBSFContext *bsf_ctx = ctx;
371 BSFListContext *lst = bsf_ctx->priv_data;
372
373 if (!lst->nb_bsfs)
374 return null_filter_name;
375
376 if (!lst->item_name) {
377 int i;
378 AVBPrint bp;
379 av_bprint_init(&bp, 16, 128);
380
381 av_bprintf(&bp, "bsf_list(");
382 for (i = 0; i < lst->nb_bsfs; i++)
383 av_bprintf(&bp, i ? ",%s" : "%s", lst->bsfs[i]->filter->name);
384 av_bprintf(&bp, ")");
385
386 av_bprint_finalize(&bp, &lst->item_name);
387 }
388
389 return lst->item_name;
390 }
391
392 static const AVClass bsf_list_class = {
393 .class_name = "bsf_list",
394 .item_name = bsf_list_item_name,
395 .version = LIBAVUTIL_VERSION_INT,
396 };
397
398 const AVBitStreamFilter ff_list_bsf = {
399 .name = "bsf_list",
400 .priv_data_size = sizeof(BSFListContext),
401 .priv_class = &bsf_list_class,
402 .init = bsf_list_init,
403 .filter = bsf_list_filter,
404 .flush = bsf_list_flush,
405 .close = bsf_list_close,
406 };
407
408 struct AVBSFList {
409 AVBSFContext **bsfs;
410 int nb_bsfs;
411 };
412
av_bsf_list_alloc(void)413 AVBSFList *av_bsf_list_alloc(void)
414 {
415 return av_mallocz(sizeof(AVBSFList));
416 }
417
av_bsf_list_free(AVBSFList ** lst)418 void av_bsf_list_free(AVBSFList **lst)
419 {
420 int i;
421
422 if (!*lst)
423 return;
424
425 for (i = 0; i < (*lst)->nb_bsfs; ++i)
426 av_bsf_free(&(*lst)->bsfs[i]);
427 av_free((*lst)->bsfs);
428 av_freep(lst);
429 }
430
av_bsf_list_append(AVBSFList * lst,AVBSFContext * bsf)431 int av_bsf_list_append(AVBSFList *lst, AVBSFContext *bsf)
432 {
433 return av_dynarray_add_nofree(&lst->bsfs, &lst->nb_bsfs, bsf);
434 }
435
bsf_list_append_internal(AVBSFList * lst,const char * bsf_name,const char * options,AVDictionary ** options_dict)436 static int bsf_list_append_internal(AVBSFList *lst, const char *bsf_name, const char *options, AVDictionary ** options_dict)
437 {
438 int ret;
439 const AVBitStreamFilter *filter;
440 AVBSFContext *bsf;
441
442 filter = av_bsf_get_by_name(bsf_name);
443 if (!filter)
444 return AVERROR_BSF_NOT_FOUND;
445
446 ret = av_bsf_alloc(filter, &bsf);
447 if (ret < 0)
448 return ret;
449
450 if (options && filter->priv_class) {
451 const AVOption *opt = av_opt_next(bsf->priv_data, NULL);
452 const char * shorthand[2] = {NULL};
453
454 if (opt)
455 shorthand[0] = opt->name;
456
457 ret = av_opt_set_from_string(bsf->priv_data, options, shorthand, "=", ":");
458 if (ret < 0)
459 goto end;
460 }
461
462 if (options_dict) {
463 ret = av_opt_set_dict2(bsf, options_dict, AV_OPT_SEARCH_CHILDREN);
464 if (ret < 0)
465 goto end;
466 }
467
468 ret = av_bsf_list_append(lst, bsf);
469
470 end:
471 if (ret < 0)
472 av_bsf_free(&bsf);
473
474 return ret;
475 }
476
av_bsf_list_append2(AVBSFList * lst,const char * bsf_name,AVDictionary ** options)477 int av_bsf_list_append2(AVBSFList *lst, const char *bsf_name, AVDictionary ** options)
478 {
479 return bsf_list_append_internal(lst, bsf_name, NULL, options);
480 }
481
av_bsf_list_finalize(AVBSFList ** lst,AVBSFContext ** bsf)482 int av_bsf_list_finalize(AVBSFList **lst, AVBSFContext **bsf)
483 {
484 int ret = 0;
485 BSFListContext *ctx;
486
487 if ((*lst)->nb_bsfs == 1) {
488 *bsf = (*lst)->bsfs[0];
489 av_freep(&(*lst)->bsfs);
490 (*lst)->nb_bsfs = 0;
491 goto end;
492 }
493
494 ret = av_bsf_alloc(&ff_list_bsf, bsf);
495 if (ret < 0)
496 return ret;
497
498 ctx = (*bsf)->priv_data;
499
500 ctx->bsfs = (*lst)->bsfs;
501 ctx->nb_bsfs = (*lst)->nb_bsfs;
502
503 end:
504 av_freep(lst);
505 return ret;
506 }
507
bsf_parse_single(char * str,AVBSFList * bsf_lst)508 static int bsf_parse_single(char *str, AVBSFList *bsf_lst)
509 {
510 char *bsf_name, *bsf_options_str;
511
512 bsf_name = av_strtok(str, "=", &bsf_options_str);
513 if (!bsf_name)
514 return AVERROR(EINVAL);
515
516 return bsf_list_append_internal(bsf_lst, bsf_name, bsf_options_str, NULL);
517 }
518
av_bsf_list_parse_str(const char * str,AVBSFContext ** bsf_lst)519 int av_bsf_list_parse_str(const char *str, AVBSFContext **bsf_lst)
520 {
521 AVBSFList *lst;
522 char *bsf_str, *buf, *dup, *saveptr;
523 int ret;
524
525 if (!str)
526 return av_bsf_get_null_filter(bsf_lst);
527
528 lst = av_bsf_list_alloc();
529 if (!lst)
530 return AVERROR(ENOMEM);
531
532 if (!(dup = buf = av_strdup(str))) {
533 ret = AVERROR(ENOMEM);
534 goto end;
535 }
536
537 while (bsf_str = av_strtok(buf, ",", &saveptr)) {
538 ret = bsf_parse_single(bsf_str, lst);
539 if (ret < 0)
540 goto end;
541
542 buf = NULL;
543 }
544
545 ret = av_bsf_list_finalize(&lst, bsf_lst);
546 end:
547 if (ret < 0)
548 av_bsf_list_free(&lst);
549 av_free(dup);
550 return ret;
551 }
552
av_bsf_get_null_filter(AVBSFContext ** bsf)553 int av_bsf_get_null_filter(AVBSFContext **bsf)
554 {
555 return av_bsf_alloc(&ff_list_bsf, bsf);
556 }
557