]> git.sesse.net Git - ffmpeg/blob - libavcodec/dump_extradata_bsf.c
Merge commit '618d02c1fa9e74d490cace64a7d15762656b521c'
[ffmpeg] / libavcodec / dump_extradata_bsf.c
1 /*
2  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <string.h>
22
23 #include "avcodec.h"
24 #include "bsf.h"
25
26 #include "libavutil/log.h"
27 #include "libavutil/mem.h"
28 #include "libavutil/opt.h"
29
30 enum DumpFreq {
31     DUMP_FREQ_KEYFRAME,
32     DUMP_FREQ_ALL,
33 };
34
35 typedef struct DumpExtradataContext {
36     const AVClass *class;
37     AVPacket pkt;
38     int freq;
39 } DumpExtradataContext;
40
41 static int dump_extradata(AVBSFContext *ctx, AVPacket *out)
42 {
43     DumpExtradataContext *s = ctx->priv_data;
44     AVPacket *in = &s->pkt;
45     int ret = 0;
46
47     ret = ff_bsf_get_packet_ref(ctx, in);
48     if (ret < 0)
49         return ret;
50
51     if (ctx->par_in->extradata &&
52         (s->freq == DUMP_FREQ_ALL ||
53          (s->freq == DUMP_FREQ_KEYFRAME && in->flags & AV_PKT_FLAG_KEY))) {
54         if (in->size >= INT_MAX - ctx->par_in->extradata_size) {
55             ret = AVERROR(ERANGE);
56             goto fail;
57         }
58
59         ret = av_new_packet(out, in->size + ctx->par_in->extradata_size);
60         if (ret < 0)
61             goto fail;
62
63         ret = av_packet_copy_props(out, in);
64         if (ret < 0) {
65             av_packet_unref(out);
66             goto fail;
67         }
68
69         memcpy(out->data, ctx->par_in->extradata, ctx->par_in->extradata_size);
70         memcpy(out->data + ctx->par_in->extradata_size, in->data, in->size);
71     } else {
72         av_packet_move_ref(out, in);
73     }
74
75 fail:
76     av_packet_unref(in);
77
78     return ret;
79 }
80
81 #define OFFSET(x) offsetof(DumpExtradataContext, x)
82 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM)
83 static const AVOption options[] = {
84     { "freq", "When do dump extradata", OFFSET(freq), AV_OPT_TYPE_INT,
85         { .i64 = DUMP_FREQ_KEYFRAME }, DUMP_FREQ_KEYFRAME, DUMP_FREQ_ALL, FLAGS, "freq" },
86         { "k",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
87         { "keyframe", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
88         { "e",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL      }, .flags = FLAGS, .unit = "freq" },
89         { "all",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = DUMP_FREQ_ALL      }, .flags = FLAGS, .unit = "freq" },
90     { NULL },
91 };
92
93 static const AVClass dump_extradata_class = {
94     .class_name = "dump_extradata bsf",
95     .item_name  = av_default_item_name,
96     .option     = options,
97     .version    = LIBAVUTIL_VERSION_INT,
98 };
99
100 const AVBitStreamFilter ff_dump_extradata_bsf = {
101     .name           = "dump_extra",
102     .priv_data_size = sizeof(DumpExtradataContext),
103     .priv_class     = &dump_extradata_class,
104     .filter         = dump_extradata,
105 };