2 * This file is part of FFmpeg.
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.
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.
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
19 #ifndef AVCODEC_CBS_INTERNAL_H
20 #define AVCODEC_CBS_INTERNAL_H
28 typedef struct CodedBitstreamType {
29 enum AVCodecID codec_id;
31 size_t priv_data_size;
33 // Split frag->data into coded bitstream units, creating the
34 // frag->units array. Fill data but not content on each unit.
35 // header is set if the fragment came from a header block, which
36 // may require different parsing for some codecs (e.g. the AVCC
38 int (*split_fragment)(CodedBitstreamContext *ctx,
39 CodedBitstreamFragment *frag,
42 // Read the unit->data bitstream and decompose it, creating
44 int (*read_unit)(CodedBitstreamContext *ctx,
45 CodedBitstreamUnit *unit);
47 // Write the unit->data bitstream from unit->content.
48 int (*write_unit)(CodedBitstreamContext *ctx,
49 CodedBitstreamUnit *unit);
51 // Read the data from all of frag->units and assemble it into
52 // a bitstream for the whole fragment.
53 int (*assemble_fragment)(CodedBitstreamContext *ctx,
54 CodedBitstreamFragment *frag);
56 // Free the content and data of a single unit.
57 void (*free_unit)(CodedBitstreamUnit *unit);
59 // Free the codec internal state.
60 void (*close)(CodedBitstreamContext *ctx);
64 // Helper functions for trace output.
66 void ff_cbs_trace_header(CodedBitstreamContext *ctx,
69 void ff_cbs_trace_syntax_element(CodedBitstreamContext *ctx,
70 int position, const char *name,
71 const char *bitstring, int64_t value);
74 // Helper functions for read/write of common bitstream elements, including
75 // generation of trace output.
77 int ff_cbs_read_unsigned(CodedBitstreamContext *ctx, GetBitContext *gbc,
78 int width, const char *name, uint32_t *write_to,
79 uint32_t range_min, uint32_t range_max);
81 int ff_cbs_write_unsigned(CodedBitstreamContext *ctx, PutBitContext *pbc,
82 int width, const char *name, uint32_t value,
83 uint32_t range_min, uint32_t range_max);
86 extern const CodedBitstreamType ff_cbs_type_h264;
87 extern const CodedBitstreamType ff_cbs_type_h265;
88 extern const CodedBitstreamType ff_cbs_type_mpeg2;
91 #endif /* AVCODEC_CBS_INTERNAL_H */