FFmpeg
cbs_bsf.c
Go to the documentation of this file.
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 "bsf_internal.h"
20 #include "cbs_bsf.h"
21 
23 {
24  CBSBSFContext *ctx = bsf->priv_data;
25  CodedBitstreamFragment *frag = &ctx->fragment;
26  uint8_t *side_data;
27  buffer_size_t side_data_size;
28  int err;
29 
31  &side_data_size);
32  if (!side_data_size)
33  return 0;
34 
35  err = ff_cbs_read(ctx->input, frag, side_data, side_data_size);
36  if (err < 0) {
37  av_log(bsf, AV_LOG_ERROR,
38  "Failed to read extradata from packet side data.\n");
39  return err;
40  }
41 
42  err = ctx->type->update_fragment(bsf, NULL, frag);
43  if (err < 0)
44  return err;
45 
46  err = ff_cbs_write_fragment_data(ctx->output, frag);
47  if (err < 0) {
48  av_log(bsf, AV_LOG_ERROR,
49  "Failed to write extradata into packet side data.\n");
50  return err;
51  }
52 
54  frag->data_size);
55  if (!side_data)
56  return AVERROR(ENOMEM);
57  memcpy(side_data, frag->data, frag->data_size);
58 
60  return 0;
61 }
62 
64 {
65  CBSBSFContext *ctx = bsf->priv_data;
66  CodedBitstreamFragment *frag = &ctx->fragment;
67  int err;
68 
69  err = ff_bsf_get_packet_ref(bsf, pkt);
70  if (err < 0)
71  return err;
72 
73  err = cbs_bsf_update_side_data(bsf, pkt);
74  if (err < 0)
75  goto fail;
76 
77  err = ff_cbs_read_packet(ctx->input, frag, pkt);
78  if (err < 0) {
79  av_log(bsf, AV_LOG_ERROR, "Failed to read %s from packet.\n",
80  ctx->type->fragment_name);
81  goto fail;
82  }
83 
84  if (frag->nb_units == 0) {
85  av_log(bsf, AV_LOG_ERROR, "No %s found in packet.\n",
86  ctx->type->unit_name);
87  err = AVERROR_INVALIDDATA;
88  goto fail;
89  }
90 
91  err = ctx->type->update_fragment(bsf, pkt, frag);
92  if (err < 0)
93  goto fail;
94 
95  err = ff_cbs_write_packet(ctx->output, pkt, frag);
96  if (err < 0) {
97  av_log(bsf, AV_LOG_ERROR, "Failed to write %s into packet.\n",
98  ctx->type->fragment_name);
99  goto fail;
100  }
101 
102  err = 0;
103 fail:
104  ff_cbs_fragment_reset(frag);
105 
106  if (err < 0)
108 
109  return err;
110 }
111 
113 {
114  CBSBSFContext *ctx = bsf->priv_data;
115  CodedBitstreamFragment *frag = &ctx->fragment;
116  int err;
117 
118  ctx->type = type;
119 
120  err = ff_cbs_init(&ctx->input, type->codec_id, bsf);
121  if (err < 0)
122  return err;
123 
124  err = ff_cbs_init(&ctx->output, type->codec_id, bsf);
125  if (err < 0)
126  return err;
127 
128  if (bsf->par_in->extradata) {
129  err = ff_cbs_read_extradata(ctx->input, frag, bsf->par_in);
130  if (err < 0) {
131  av_log(bsf, AV_LOG_ERROR, "Failed to read extradata.\n");
132  goto fail;
133  }
134 
135  err = type->update_fragment(bsf, NULL, frag);
136  if (err < 0)
137  goto fail;
138 
139  err = ff_cbs_write_extradata(ctx->output, bsf->par_out, frag);
140  if (err < 0) {
141  av_log(bsf, AV_LOG_ERROR, "Failed to write extradata.\n");
142  goto fail;
143  }
144  }
145 
146  err = 0;
147 fail:
148  ff_cbs_fragment_reset(frag);
149  return err;
150 }
151 
153 {
154  CBSBSFContext *ctx = bsf->priv_data;
155 
156  ff_cbs_fragment_free(&ctx->fragment);
157  ff_cbs_close(&ctx->input);
158  ff_cbs_close(&ctx->output);
159 }
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:634
AVBSFContext::par_in
AVCodecParameters * par_in
Parameters of the input stream.
Definition: bsf.h:77
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:74
ff_cbs_bsf_generic_init
int ff_cbs_bsf_generic_init(AVBSFContext *bsf, const CBSBSFType *type)
Initialise generic CBS BSF setup.
Definition: cbs_bsf.c:112
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
bsf_internal.h
cbs_bsf_update_side_data
static int cbs_bsf_update_side_data(AVBSFContext *bsf, AVPacket *pkt)
Definition: cbs_bsf.c:22
av_packet_get_side_data
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, buffer_size_t *size)
Definition: avpacket.c:368
ff_cbs_read_extradata
int ff_cbs_read_extradata(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, const AVCodecParameters *par)
Read the extradata bitstream found in codec parameters into a fragment, then split into units and dec...
Definition: cbs.c:270
ff_cbs_fragment_reset
void ff_cbs_fragment_reset(CodedBitstreamFragment *frag)
Free the units contained in a fragment as well as the fragment's own data buffer, but not the units a...
Definition: cbs.c:156
ff_cbs_close
void ff_cbs_close(CodedBitstreamContext **ctx_ptr)
Close a context and free all internal state.
Definition: cbs.c:126
CBSBSFContext
Definition: cbs_bsf.h:47
AVBSFContext
The bitstream filter state.
Definition: bsf.h:49
ff_cbs_fragment_free
void ff_cbs_fragment_free(CodedBitstreamFragment *frag)
Free the units array of a fragment in addition to what ff_cbs_fragment_reset does.
Definition: cbs.c:170
cbs_bsf.h
fail
#define fail()
Definition: checkasm.h:133
ff_cbs_read
int ff_cbs_read(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, const uint8_t *data, size_t size)
Read a bitstream from a memory region into a fragment, then split into units and decompose.
Definition: cbs.c:296
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
ff_cbs_write_extradata
int ff_cbs_write_extradata(CodedBitstreamContext *ctx, AVCodecParameters *par, CodedBitstreamFragment *frag)
Write the bitstream of a fragment to the extradata in codec parameters.
Definition: cbs.c:394
AVBSFContext::par_out
AVCodecParameters * par_out
Parameters of the output stream.
Definition: bsf.h:83
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:194
CodedBitstreamFragment
Coded bitstream fragment structure, combining one or more units.
Definition: cbs.h:118
ff_cbs_write_packet
int ff_cbs_write_packet(CodedBitstreamContext *ctx, AVPacket *pkt, CodedBitstreamFragment *frag)
Write the bitstream of a fragment to a packet.
Definition: cbs.c:419
CodedBitstreamFragment::data_size
size_t data_size
The number of bytes in the bitstream.
Definition: cbs.h:131
buffer_size_t
int buffer_size_t
Definition: internal.h:306
ctx
AVFormatContext * ctx
Definition: movenc.c:48
NULL
#define NULL
Definition: coverity.c:32
CBSBSFType
Definition: cbs_bsf.h:25
CodedBitstreamFragment::data
uint8_t * data
Pointer to the bitstream form of this fragment.
Definition: cbs.h:124
ff_cbs_bsf_generic_close
void ff_cbs_bsf_generic_close(AVBSFContext *bsf)
Close a generic CBS BSF instance.
Definition: cbs_bsf.c:152
uint8_t
uint8_t
Definition: audio_convert.c:194
av_packet_new_side_data
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, buffer_size_t size)
Definition: avpacket.c:343
ff_cbs_write_fragment_data
int ff_cbs_write_fragment_data(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
Write the content of the fragment to its own internal buffer.
Definition: cbs.c:358
AVBSFContext::priv_data
void * priv_data
Opaque filter-specific private data.
Definition: bsf.h:70
ff_cbs_bsf_generic_filter
int ff_cbs_bsf_generic_filter(AVBSFContext *bsf, AVPacket *pkt)
Filter operation for CBS BSF.
Definition: cbs_bsf.c:63
ff_cbs_init
int ff_cbs_init(CodedBitstreamContext **ctx_ptr, enum AVCodecID codec_id, void *log_ctx)
Create and initialise a new context for the given codec.
Definition: cbs.c:75
AV_PKT_DATA_NEW_EXTRADATA
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
Definition: packet.h:55
ff_cbs_read_packet
int ff_cbs_read_packet(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, const AVPacket *pkt)
Read the data bitstream from a packet into a fragment, then split into units and decompose.
Definition: cbs.c:288
AVPacket
This structure stores compressed data.
Definition: packet.h:346
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
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:253
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
CodedBitstreamFragment::nb_units
int nb_units
Number of units in this fragment.
Definition: cbs.h:149