Go to the documentation of this file.
104 ctx->log_ctx = log_ctx;
107 if (
type->priv_data_size) {
113 if (
type->priv_class) {
119 ctx->decompose_unit_types =
NULL;
121 ctx->trace_enable = 0;
131 if (
ctx->codec->flush)
142 if (
ctx->codec->close)
195 if (
ctx->decompose_unit_types) {
196 for (j = 0; j <
ctx->nb_decompose_unit_types; j++) {
197 if (
ctx->decompose_unit_types[j] == unit->
type)
200 if (j >=
ctx->nb_decompose_unit_types)
209 err =
ctx->codec->read_unit(
ctx, unit);
212 "Decomposition unimplemented for unit %d "
213 "(type %"PRIu32
").\n",
i, unit->
type);
214 }
else if (err ==
AVERROR(EAGAIN)) {
216 "Skipping decomposition of unit %d "
217 "(type %"PRIu32
").\n",
i, unit->
type);
220 }
else if (err < 0) {
222 "(type %"PRIu32
").\n",
i, unit->
type);
309 size_t side_data_size;
310 const uint8_t *side_data =
315 side_data, side_data_size, 1);
354 if (!
ctx->write_buffer) {
356 ctx->write_buffer_size = 1024 * 1024;
358 reallocate_and_try_again:
362 "sufficiently large write buffer (last attempt "
370 ret =
ctx->codec->write_unit(
ctx, unit, &pbc);
374 if (
ctx->write_buffer_size == INT_MAX / 8)
376 ctx->write_buffer_size =
FFMIN(2 *
ctx->write_buffer_size, INT_MAX / 8);
377 goto reallocate_and_try_again;
419 "(type %"PRIu32
").\n",
i, unit->
type);
428 err =
ctx->codec->assemble_fragment(
ctx, frag);
495 if (!
ctx->trace_enable)
503 const char *str,
const int *subscripts,
509 size_t name_len, bits_len;
510 int pad, subs,
i, j, k, n;
518 for (
i = 0;
i < length;
i++)
522 subs = subscripts ? subscripts[0] : 0;
524 for (
i = j = 0; str[
i];) {
531 for (++
i; str[
i] && str[
i] !=
']';
i++);
534 while (str[
i] && str[
i] !=
']')
535 name[j++] = str[
i++];
540 name[j++] = str[
i++];
547 name_len = strlen(
name);
550 if (name_len + bits_len > 60)
555 av_log(
ctx->log_ctx,
ctx->trace_level,
"%-10d %s%*s = %"PRId64
"\n",
561 const char *str,
const int *subscripts,
592 const int *subscripts,
605 "%s: bitstream ended.\n",
name);
613 if (value < range_min || value > range_max) {
615 "%"PRIu32
", but must be in [%"PRIu32
",%"PRIu32
"].\n",
626 const int *subscripts, uint32_t *write_to,
627 uint32_t range_min, uint32_t range_max)
630 write_to, range_min, range_max);
634 int width,
const char *
name, uint32_t *write_to)
637 write_to, 0, UINT32_MAX);
642 const int *subscripts, uint32_t
value,
643 uint32_t range_min, uint32_t range_max)
649 if (value < range_min || value > range_max) {
651 "%"PRIu32
", but must be in [%"PRIu32
",%"PRIu32
"].\n",
678 const int *subscripts,
int32_t *write_to,
689 "%s: bitstream ended.\n",
name);
697 if (value < range_min || value > range_max) {
699 "%"PRId32
", but must be in [%"PRId32
",%"PRId32
"].\n",
717 if (value < range_min || value > range_max) {
719 "%"PRId32
", but must be in [%"PRId32
",%"PRId32
"].\n",
746 if (position < frag->nb_units)
747 memmove(units + position + 1, units + position,
748 (frag->
nb_units - position) *
sizeof(*units));
757 memcpy(units, frag->
units, position *
sizeof(*units));
759 if (position < frag->nb_units)
760 memcpy(units + position + 1, frag->
units + position,
761 (frag->
nb_units - position) *
sizeof(*units));
764 memset(units + position, 0,
sizeof(*units));
766 if (units != frag->
units) {
787 av_assert0(position >= 0 && position <= frag->nb_units);
798 unit = &frag->
units[position];
808 uint8_t *
data,
size_t data_size,
816 av_assert0(position >= 0 && position <= frag->nb_units);
834 unit = &frag->
units[position];
845 uint8_t *
data,
size_t data_size,
849 data, data_size, data_buf,
856 av_assert0(0 <= position && position < frag->nb_units
857 &&
"Unit to be deleted not in fragment.");
864 memmove(frag->
units + position,
865 frag->
units + position + 1,
873 for (
int i = 0;
i <
desc->type.ref.nb_offsets;
i++) {
874 void **ptr = (
void**)((
char*)content +
desc->type.ref.offsets[
i]);
886 if (!
ctx->codec->unit_types)
891 if (
desc->nb_unit_types == 0)
894 if (unit->
type >=
desc->unit_type.range.start &&
895 unit->
type <=
desc->unit_type.range.end)
898 for (j = 0; j <
desc->nb_unit_types; j++) {
899 if (
desc->unit_type.list[j] == unit->
type)
912 ?
desc->type.complex.content_free
950 for (
int i = 0;
i <
desc->type.ref.nb_offsets;
i++) {
951 void **ptr = (
void**)(
copy +
desc->type.ref.offsets[
i]);
956 for (
i = 0;
i <
desc->type.ref.nb_offsets;
i++) {
957 const uint8_t *
const *src_ptr = (
const uint8_t*
const*)(
src +
desc->type.ref.offsets[
i]);
959 uint8_t **copy_ptr = (uint8_t**)(
copy +
desc->type.ref.offsets[
i]);
1005 switch (
desc->content_type) {
1011 if (!
desc->type.complex.content_clone)
1013 err =
desc->type.complex.content_clone(&new_content, unit);
1059 if (!
ctx->codec->discarded_unit)
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
void * content_ref
If content is reference counted, a RefStruct reference backing content.
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
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 default minimum maximum flags name is the option name
void * ff_refstruct_ref(void *obj)
Create a new reference to an object managed via this API, i.e.
static int get_bits_left(GetBitContext *gb)
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
static void av_unused put_bits32(PutBitContext *s, uint32_t value)
Write exactly 32 bits into a bitstream.
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
static int put_bytes_output(const PutBitContext *s)
This struct describes the properties of an encoded stream.
av_cold void ff_cbs_fragment_free(CodedBitstreamFragment *frag)
Free the units array of a fragment in addition to what ff_cbs_fragment_reset does.
@ 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...
uint8_t * data
The data buffer.
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...
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
void * content
Pointer to the decomposed form of this unit.
static int cbs_fill_fragment_data(CodedBitstreamFragment *frag, const uint8_t *data, size_t size)
int ff_cbs_insert_unit_content(CodedBitstreamFragment *frag, int position, CodedBitstreamUnitType type, void *content, void *content_ref)
Insert a new unit into a fragment with the given content.
static void put_sbits(PutBitContext *pb, int n, int32_t value)
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
static int get_bits_count(const GetBitContext *s)
int ff_cbs_read_packet_side_data(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, const AVPacket *pkt)
static int cbs_read_data(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, AVBufferRef *buf, const uint8_t *data, size_t size, int header)
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
const CodedBitstreamType ff_cbs_type_vp9
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...
Context structure for coded bitstream operations.
#define AV_LOG_VERBOSE
Detailed information.
CodedBitstreamUnitType type
Codec-specific type of this unit.
void * ff_refstruct_alloc_ext_c(size_t size, unsigned flags, FFRefStructOpaque opaque, void(*free_cb)(FFRefStructOpaque opaque, void *obj))
Allocate a refcounted object of usable size size managed via the RefStruct API.
RefStruct is an API for creating reference-counted objects with minimal overhead.
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Coded bitstream unit structure.
av_cold void ff_cbs_close(CodedBitstreamContext **ctx_ptr)
Close a context and free all internal state.
int ff_cbs_write_unsigned(CodedBitstreamContext *ctx, PutBitContext *pbc, int width, const char *name, const int *subscripts, uint32_t value, uint32_t range_min, uint32_t range_max)
@ DISCARD_FLAG_KEEP_NON_VCL
keep non-vcl units even if the picture has been dropped.
void ff_cbs_trace_header(CodedBitstreamContext *ctx, const char *name)
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.
void ff_cbs_trace_read_log(void *trace_context, GetBitContext *gbc, int length, const char *str, const int *subscripts, int64_t value)
Helper function for read tracing which formats the syntax element and logs the result.
@ CBS_CONTENT_TYPE_INTERNAL_REFS
static int put_bits_left(PutBitContext *s)
const CodedBitstreamType ff_cbs_type_av1
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
uint8_t * data
Pointer to the directly-parsable bitstream form of this unit.
static int cbs_write_unit_data(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
int ff_cbs_write_extradata(CodedBitstreamContext *ctx, AVCodecParameters *par, CodedBitstreamFragment *frag)
Write the bitstream of a fragment to the extradata in codec parameters.
int ff_cbs_make_unit_writable(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
Make the content of a unit writable so that internal fields can be modified.
int ff_refstruct_exclusive(const void *obj)
Check whether the reference count of an object managed via this API is 1.
CodedBitstreamUnit * units
Pointer to an array of units of length nb_units_allocated.
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
const CodedBitstreamType ff_cbs_type_mpeg2
static void cbs_unit_uninit(CodedBitstreamUnit *unit)
#define FF_ARRAY_ELEMS(a)
Coded bitstream fragment structure, combining one or more units.
static void * cbs_alloc_content(const CodedBitstreamUnitTypeDescriptor *desc)
int ff_cbs_write_packet(CodedBitstreamContext *ctx, AVPacket *pkt, CodedBitstreamFragment *frag)
Write the bitstream of a fragment to a packet.
size_t data_size
The number of bytes in the bitstream.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static int cbs_insert_unit_data(CodedBitstreamFragment *frag, CodedBitstreamUnitType type, uint8_t *data, size_t data_size, AVBufferRef *data_buf, int position)
int ff_cbs_append_unit_data(CodedBitstreamFragment *frag, CodedBitstreamUnitType type, uint8_t *data, size_t data_size, AVBufferRef *data_buf)
Add a new unit to a fragment with the given data bitstream.
size_t data_bit_padding
The number of bits which should be ignored in the final byte.
#define MAX_UINT_BITS(length)
#define CBS_TRACE_WRITE_END()
static const CodedBitstreamType *const cbs_type_table[]
void ff_cbs_trace_write_log(void *trace_context, PutBitContext *pbc, int length, const char *str, const int *subscripts, int64_t value)
Helper function for write tracing which formats the syntax element and logs the result.
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Describe the class of an AVClass context structure.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
enum AVCodecID ff_cbs_all_codec_ids[]
Table of all supported codec IDs.
static unsigned int get_bits1(GetBitContext *s)
size_t data_size
The number of bytes in the bitstream (including any padding bits in the final byte).
static int cbs_clone_unit_content(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
void av_opt_free(void *obj)
Free all allocated objects in obj.
int ff_cbs_read_simple_unsigned(CodedBitstreamContext *ctx, GetBitContext *gbc, int width, const char *name, uint32_t *write_to)
static const CodedBitstreamUnitTypeDescriptor * cbs_find_unit_type_desc(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
static void cbs_default_free_unit_content(FFRefStructOpaque opaque, void *content)
AVBufferRef * av_buffer_create(uint8_t *data, size_t size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
AVCodecID
Identify the syntax and semantics of the bitstream.
int extradata_size
Size of the extradata content in bytes.
static void copy(const float *p1, float *p2, const int length)
uint8_t * data
Pointer to the bitstream form of this fragment.
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
size_t data_bit_padding
The number of bits which should be ignored in the final byte.
const CodedBitstreamType ff_cbs_type_jpeg
@ CBS_CONTENT_TYPE_COMPLEX
static const uint8_t header[24]
int ff_cbs_write_signed(CodedBitstreamContext *ctx, PutBitContext *pbc, int width, const char *name, const int *subscripts, int32_t value, int32_t range_min, int32_t range_max)
AVBufferRef * av_buffer_alloc(size_t size)
Allocate an AVBuffer of the given size using av_malloc().
int ff_cbs_read_signed(CodedBitstreamContext *ctx, GetBitContext *gbc, int width, const char *name, const int *subscripts, int32_t *write_to, int32_t range_min, int32_t range_max)
void ff_cbs_discard_units(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, enum AVDiscard skip, int flags)
Discard units accroding to 'skip'.
int ff_cbs_read_extradata_from_codec(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, const AVCodecContext *avctx)
static int cbs_clone_noncomplex_unit_content(void **clonep, const CodedBitstreamUnit *unit, const CodedBitstreamUnitTypeDescriptor *desc)
AVBufferRef * data_ref
A reference to the buffer containing data.
#define i(width, name, range_min, range_max)
static int put_bits_count(PutBitContext *s)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, size_t *size)
Get side information from packet.
#define av_malloc_array(a, b)
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 default value
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int ff_cbs_make_unit_refcounted(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
Make the content of a unit refcounted.
int ff_cbs_read_unsigned(CodedBitstreamContext *ctx, GetBitContext *gbc, int width, const char *name, const int *subscripts, uint32_t *write_to, uint32_t range_min, uint32_t range_max)
int ff_cbs_write_fragment_data(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
Write the content of the fragment to its own internal buffer.
static int cbs_insert_unit(CodedBitstreamFragment *frag, int position)
int nb_units_allocated
Number of allocated units.
int ff_cbs_alloc_unit_content(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
Allocate a new internal content buffer matching the type of the unit.
#define AV_INPUT_BUFFER_PADDING_SIZE
main external API structure.
int ff_cbs_write_simple_unsigned(CodedBitstreamContext *ctx, PutBitContext *pbc, int width, const char *name, uint32_t value)
uint32_t CodedBitstreamUnitType
The codec-specific type of a bitstream unit.
static int cbs_alloc_unit_data(CodedBitstreamUnit *unit, size_t size)
Allocate a new internal data buffer of the given size in the unit.
static int ref[MAX_W *MAX_W]
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.
void(* flush)(AVBSFContext *ctx)
A reference to a data buffer.
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
av_cold int ff_cbs_init(CodedBitstreamContext **ctx_ptr, enum AVCodecID codec_id, void *log_ctx)
Create and initialise a new context for the given codec.
const CodedBitstreamType ff_cbs_type_h266
This structure stores compressed data.
#define flags(name, subs,...)
const CodedBitstreamType ff_cbs_type_h264
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
AVBufferRef * data_ref
A reference to the buffer containing data.
static int cbs_read_fragment_content(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
av_cold void ff_cbs_flush(CodedBitstreamContext *ctx)
Reset all internal state in a context.
static int get_sbits_long(GetBitContext *s, int n)
Read 0-32 bits as a signed integer.
const CodedBitstreamType ff_cbs_type_h265
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
#define CBS_TRACE_READ_START()
void * priv_data
Format private data.
void ff_refstruct_unref(void *objp)
Decrement the reference count of the underlying object and automatically free the object if there are...
static void BS_FUNC() skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
int nb_units
Number of units in this fragment.
void ff_cbs_delete_unit(CodedBitstreamFragment *frag, int position)
Delete a unit from a fragment and free all memory it uses.
static av_always_inline int cbs_read_unsigned(CodedBitstreamContext *ctx, GetBitContext *gbc, int width, const char *name, const int *subscripts, uint32_t *write_to, uint32_t range_min, uint32_t range_max)
#define CBS_TRACE_READ_END()
#define CBS_TRACE_WRITE_START()