FFmpeg
remove_extradata_bsf.c
Go to the documentation of this file.
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 "libavutil/log.h"
22 #include "libavutil/opt.h"
23 
24 #include "avcodec.h"
25 #include "bsf.h"
26 
27 enum RemoveFreq {
31 };
32 
33 typedef struct RemoveExtradataContext {
34  const AVClass *class;
35  int freq;
36 
40 
42 {
44 
45  int ret;
46 
48  if (ret < 0)
49  return ret;
50 
51  if (s->parser && s->parser->parser->split) {
52  if (s->freq == REMOVE_FREQ_ALL ||
53  (s->freq == REMOVE_FREQ_NONKEYFRAME && !(pkt->flags & AV_PKT_FLAG_KEY)) ||
54  (s->freq == REMOVE_FREQ_KEYFRAME && pkt->flags & AV_PKT_FLAG_KEY)) {
55  int i = s->parser->parser->split(s->avctx, pkt->data, pkt->size);
56  pkt->data += i;
57  pkt->size -= i;
58  }
59  }
60 
61  return 0;
62 }
63 
65 {
67  int ret;
68 
69  s->parser = av_parser_init(ctx->par_in->codec_id);
70 
71  if (s->parser) {
72  s->avctx = avcodec_alloc_context3(NULL);
73  if (!s->avctx)
74  return AVERROR(ENOMEM);
75 
76  ret = avcodec_parameters_to_context(s->avctx, ctx->par_in);
77  if (ret < 0)
78  return ret;
79  }
80 
81  return 0;
82 }
83 
85 {
87 
88  avcodec_free_context(&s->avctx);
89  av_parser_close(s->parser);
90 }
91 
92 #define OFFSET(x) offsetof(RemoveExtradataContext, x)
93 #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM)
94 static const AVOption options[] = {
96  { "k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_NONKEYFRAME }, .flags = FLAGS, .unit = "freq" },
97  { "keyframe", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_KEYFRAME }, .flags = FLAGS, .unit = "freq" },
98  { "e", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_ALL }, .flags = FLAGS, .unit = "freq" },
99  { "all", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = REMOVE_FREQ_ALL }, .flags = FLAGS, .unit = "freq" },
100  { NULL },
101 };
102 
104  .class_name = "remove_extradata",
105  .item_name = av_default_item_name,
106  .option = options,
107  .version = LIBAVUTIL_VERSION_INT,
108 };
109 
111  .name = "remove_extra",
112  .priv_data_size = sizeof(RemoveExtradataContext),
113  .priv_class = &remove_extradata_class,
115  .close = remove_extradata_close,
117 };
init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
ff_remove_extradata_bsf
const AVBitStreamFilter ff_remove_extradata_bsf
Definition: remove_extradata_bsf.c:110
remove_extradata
static int remove_extradata(AVBSFContext *ctx, AVPacket *pkt)
Definition: remove_extradata_bsf.c:41
AVBitStreamFilter::name
const char * name
Definition: avcodec.h:5813
AVPacket::data
uint8_t * data
Definition: avcodec.h:1477
AVOption
AVOption.
Definition: opt.h:246
OFFSET
#define OFFSET(x)
Definition: remove_extradata_bsf.c:92
remove_extradata_init
static int remove_extradata_init(AVBSFContext *ctx)
Definition: remove_extradata_bsf.c:64
filter
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce then the filter should push the output frames on the output link immediately As an exception to the previous rule if the input frame is enough to produce several output frames then the filter needs output only at least one per link The additional frames can be left buffered in the filter
Definition: filter_design.txt:228
RemoveExtradataContext
Definition: remove_extradata_bsf.c:33
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1509
AVBSFContext
The bitstream filter state.
Definition: avcodec.h:5763
RemoveFreq
RemoveFreq
Definition: remove_extradata_bsf.c:27
remove_extradata_class
static const AVClass remove_extradata_class
Definition: remove_extradata_bsf.c:103
bsf.h
av_parser_init
AVCodecParserContext * av_parser_init(int codec_id)
Definition: parser.c:34
avcodec_alloc_context3
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition: options.c:156
s
#define s(width, name)
Definition: cbs_vp9.c:257
REMOVE_FREQ_ALL
@ REMOVE_FREQ_ALL
Definition: remove_extradata_bsf.c:29
remove_extradata_close
static void remove_extradata_close(AVBSFContext *ctx)
Definition: remove_extradata_bsf.c:84
ctx
AVFormatContext * ctx
Definition: movenc.c:48
REMOVE_FREQ_KEYFRAME
@ REMOVE_FREQ_KEYFRAME
Definition: remove_extradata_bsf.c:28
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
NULL
#define NULL
Definition: coverity.c:32
avcodec_free_context
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer.
Definition: options.c:171
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
REMOVE_FREQ_NONKEYFRAME
@ REMOVE_FREQ_NONKEYFRAME
Definition: remove_extradata_bsf.c:30
AVPacket::size
int size
Definition: avcodec.h:1478
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1483
log.h
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
RemoveExtradataContext::parser
AVCodecParserContext * parser
Definition: remove_extradata_bsf.c:37
avcodec_parameters_to_context
int avcodec_parameters_to_context(AVCodecContext *codec, const AVCodecParameters *par)
Fill the codec context based on the values from the supplied codec parameters.
Definition: utils.c:2155
FLAGS
#define FLAGS
Definition: remove_extradata_bsf.c:93
avcodec.h
AVCodecParserContext
Definition: avcodec.h:5108
ret
ret
Definition: filter_design.txt:187
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
options
static const AVOption options[]
Definition: remove_extradata_bsf.c:94
AVCodecContext
main external API structure.
Definition: avcodec.h:1565
pkt
static AVPacket pkt
Definition: demuxing_decoding.c:54
AVBitStreamFilter
Definition: avcodec.h:5812
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
RemoveExtradataContext::freq
int freq
Definition: remove_extradata_bsf.c:35
AVPacket
This structure stores compressed data.
Definition: avcodec.h:1454
ff_bsf_get_packet_ref
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
Definition: bsf.c:239
RemoveExtradataContext::avctx
AVCodecContext * avctx
Definition: remove_extradata_bsf.c:38
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
AVFormatContext::priv_data
void * priv_data
Format private data.
Definition: avformat.h:1370
av_parser_close
void av_parser_close(AVCodecParserContext *s)
Definition: parser.c:224