Go to the documentation of this file.
24 #define HEADER(name) do { \
25 ff_cbs_trace_header(ctx, name); \
28 #define CHECK(call) do { \
34 #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL)
36 #define u(width, name, range_min, range_max) \
37 xu(width, name, range_min, range_max, 0)
38 #define us(width, name, sub, range_min, range_max) \
39 xu(width, name, range_min, range_max, 1, sub)
43 #define READWRITE read
44 #define RWContext GetBitContext
45 #define FUNC(name) cbs_jpeg_read_ ## name
47 #define xu(width, name, range_min, range_max, subs, ...) do { \
49 CHECK(ff_cbs_read_unsigned(ctx, rw, width, #name, \
50 SUBSCRIPTS(subs, __VA_ARGS__), \
51 &value, range_min, range_max)); \
52 current->name = value; \
64 #define READWRITE write
65 #define RWContext PutBitContext
66 #define FUNC(name) cbs_jpeg_write_ ## name
68 #define xu(width, name, range_min, range_max, subs, ...) do { \
69 uint32_t value = current->name; \
70 CHECK(ff_cbs_write_unsigned(ctx, rw, width, #name, \
71 SUBSCRIPTS(subs, __VA_ARGS__), \
72 value, range_min, range_max)); \
113 int unit,
start,
end, marker, next_start, next_marker;
124 "beginning of image.\n",
i);
129 "no SOI marker found.\n");
132 marker = frag->
data[
i];
135 "marker is %02x, should be SOI.\n", marker);
141 "no image content found.\n");
144 marker = frag->
data[
i];
147 for (unit = 0;; unit++) {
154 if (frag->
data[
i] != 0xff)
158 frag->
data[
i] == 0xff;
i++);
160 if (frag->
data[
i] == 0x00)
162 next_marker = frag->
data[
i];
171 "truncated at %02x marker.\n", marker);
177 "truncated at %02x marker segment.\n", marker);
183 if (frag->
data[
i] != 0xff) {
187 frag->
data[
i] == 0xff;
i++);
191 next_marker = frag->
data[
i];
211 if (frag->
data[
i] == 0xff) {
212 while (frag->
data[
i] == 0xff)
230 data, data_size, data_ref);
237 if (next_marker == -1)
239 marker = next_marker;
264 err = cbs_jpeg_read_frame_header(
ctx, &gbc, unit->
content);
276 err = cbs_jpeg_read_application_data(
ctx, &gbc, unit->
content);
291 err = cbs_jpeg_read_scan_header(
ctx, &gbc, &scan->
header);
306 switch (unit->
type) {
307 #define SEGMENT(marker, type, func, free) \
308 case JPEG_MARKER_ ## marker: \
310 err = ff_cbs_alloc_unit_content(ctx, unit, \
311 sizeof(type), free); \
314 err = cbs_jpeg_read_ ## func(ctx, &gbc, unit->content); \
338 err = cbs_jpeg_write_scan_header(
ctx, pbc, &scan->
header);
361 err = cbs_jpeg_write_frame_header(
ctx, pbc, unit->
content);
364 err = cbs_jpeg_write_application_data(
ctx, pbc, unit->
content);
366 switch (unit->
type) {
367 #define SEGMENT(marker, func) \
368 case JPEG_MARKER_ ## marker: \
369 err = cbs_jpeg_write_ ## func(ctx, pbc, unit->content); \
406 if (unit->
data[
sp] == 0xff)
438 if (unit->
data[
sp] == 0xff) {
#define AV_LOG_WARNING
Something somehow does not look correct.
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
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
uint8_t * data
The data buffer.
void * content
Pointer to the decomposed form of this unit.
static int get_bits_count(const GetBitContext *s)
static av_cold int end(AVCodecContext *avctx)
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Context structure for coded bitstream operations.
CodedBitstreamUnitType type
Codec-specific type of this unit.
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Coded bitstream unit structure.
static int cbs_jpeg_write_segment(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, PutBitContext *pbc)
static int put_bits_left(PutBitContext *s)
uint8_t * data
Pointer to the directly-parsable bitstream form of this unit.
int ff_cbs_insert_unit_data(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, int position, CodedBitstreamUnitType type, uint8_t *data, size_t data_size, AVBufferRef *data_buf)
Insert a new unit into a fragment with the given data bitstream.
CodedBitstreamUnit * units
Pointer to an array of units of length nb_units_allocated.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Coded bitstream fragment structure, combining one or more units.
size_t data_size
The number of bytes in the bitstream.
static int cbs_jpeg_assemble_fragment(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static int cbs_jpeg_write_scan(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, PutBitContext *pbc)
#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.
size_t data_size
The number of bytes in the bitstream (including any padding bits in the final byte).
static int cbs_jpeg_read_unit(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
uint8_t * data
Pointer to the bitstream form of this fragment.
static void cbs_jpeg_free_scan(void *unit, uint8_t *content)
const CodedBitstreamType ff_cbs_type_jpeg
static const uint8_t header[24]
AVBufferRef * data_ref
A reference to the buffer containing data.
#define i(width, name, range_min, range_max)
static int cbs_jpeg_split_fragment(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, int header)
#define SEGMENT(marker, type, func, free)
static int FUNC() comment(CodedBitstreamContext *ctx, RWContext *rw, JPEGRawComment *current)
static int FUNC() dht(CodedBitstreamContext *ctx, RWContext *rw, JPEGRawHuffmanTableSpecification *current)
#define AV_INPUT_BUFFER_PADDING_SIZE
static int cbs_jpeg_write_unit(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, PutBitContext *pbc)
int ff_cbs_alloc_unit_content(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, size_t size, void(*free)(void *opaque, uint8_t *data))
static int FUNC() dqt(CodedBitstreamContext *ctx, RWContext *rw, JPEGRawQuantisationTableSpecification *current)
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
static void cbs_jpeg_free_application_data(void *unit, uint8_t *content)
A reference to a data buffer.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
AVBufferRef * data_ref
A reference to the buffer containing data.
int nb_units
Number of units in this fragment.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
static void cbs_jpeg_free_comment(void *unit, uint8_t *content)