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