FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cbs_mpeg2.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 "libavutil/avassert.h"
20 
21 #include "cbs.h"
22 #include "cbs_internal.h"
23 #include "cbs_mpeg2.h"
24 #include "internal.h"
25 
26 
27 #define HEADER(name) do { \
28  ff_cbs_trace_header(ctx, name); \
29  } while (0)
30 
31 #define CHECK(call) do { \
32  err = (call); \
33  if (err < 0) \
34  return err; \
35  } while (0)
36 
37 #define FUNC_NAME(rw, codec, name) cbs_ ## codec ## _ ## rw ## _ ## name
38 #define FUNC_MPEG2(rw, name) FUNC_NAME(rw, mpeg2, name)
39 #define FUNC(name) FUNC_MPEG2(READWRITE, name)
40 
41 
42 #define READ
43 #define READWRITE read
44 #define RWContext GetBitContext
45 
46 #define xui(width, name, var) do { \
47  uint32_t value = 0; \
48  CHECK(ff_cbs_read_unsigned(ctx, rw, width, #name, \
49  &value, 0, (1 << width) - 1)); \
50  var = value; \
51  } while (0)
52 
53 #define ui(width, name) \
54  xui(width, name, current->name)
55 
56 #define marker_bit() do { \
57  av_unused uint32_t one; \
58  CHECK(ff_cbs_read_unsigned(ctx, rw, 1, "marker_bit", &one, 1, 1)); \
59  } while (0)
60 
61 #define nextbits(width, compare, var) \
62  (get_bits_left(rw) >= width && \
63  (var = show_bits(rw, width)) == (compare))
64 
66 
67 #undef READ
68 #undef READWRITE
69 #undef RWContext
70 #undef xui
71 #undef ui
72 #undef marker_bit
73 #undef nextbits
74 
75 
76 #define WRITE
77 #define READWRITE write
78 #define RWContext PutBitContext
79 
80 #define xui(width, name, var) do { \
81  CHECK(ff_cbs_write_unsigned(ctx, rw, width, #name, \
82  var, 0, (1 << width) - 1)); \
83  } while (0)
84 
85 #define ui(width, name) \
86  xui(width, name, current->name)
87 
88 #define marker_bit() do { \
89  CHECK(ff_cbs_write_unsigned(ctx, rw, 1, "marker_bit", 1, 1, 1)); \
90  } while (0)
91 
92 #define nextbits(width, compare, var) (var)
93 
95 
96 #undef READ
97 #undef READWRITE
98 #undef RWContext
99 #undef xui
100 #undef ui
101 #undef marker_bit
102 #undef nextbits
103 
104 
105 static void cbs_mpeg2_free_user_data(void *unit, uint8_t *content)
106 {
107  MPEG2RawUserData *user = (MPEG2RawUserData*)content;
109  av_freep(&content);
110 }
111 
112 static void cbs_mpeg2_free_slice(void *unit, uint8_t *content)
113 {
114  MPEG2RawSlice *slice = (MPEG2RawSlice*)content;
116  av_buffer_unref(&slice->data_ref);
117  av_freep(&content);
118 }
119 
122  int header)
123 {
124  const uint8_t *start, *end;
125  uint8_t *unit_data;
126  uint32_t start_code = -1, next_start_code = -1;
127  size_t unit_size;
128  int err, i, unit_type;
129 
130  start = avpriv_find_start_code(frag->data, frag->data + frag->data_size,
131  &start_code);
132  for (i = 0;; i++) {
133  end = avpriv_find_start_code(start, frag->data + frag->data_size,
134  &next_start_code);
135 
136  unit_type = start_code & 0xff;
137 
138  // The start and end pointers point at to the byte following the
139  // start_code_identifier in the start code that they found.
140  if (end == frag->data + frag->data_size) {
141  // We didn't find a start code, so this is the final unit.
142  unit_size = end - (start - 1);
143  } else {
144  // Unit runs from start to the beginning of the start code
145  // pointed to by end (including any padding zeroes).
146  unit_size = (end - 4) - (start - 1);
147  }
148 
149  unit_data = av_malloc(unit_size + AV_INPUT_BUFFER_PADDING_SIZE);
150  if (!unit_data)
151  return AVERROR(ENOMEM);
152  memcpy(unit_data, start - 1, unit_size);
153  memset(unit_data + unit_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
154 
155  err = ff_cbs_insert_unit_data(ctx, frag, i, unit_type,
156  unit_data, unit_size, NULL);
157  if (err < 0) {
158  av_freep(&unit_data);
159  return err;
160  }
161 
162  if (end == frag->data + frag->data_size)
163  break;
164 
165  start_code = next_start_code;
166  start = end;
167  }
168 
169  return 0;
170 }
171 
173  CodedBitstreamUnit *unit)
174 {
175  GetBitContext gbc;
176  int err;
177 
178  err = init_get_bits(&gbc, unit->data, 8 * unit->data_size);
179  if (err < 0)
180  return err;
181 
182  if (MPEG2_START_IS_SLICE(unit->type)) {
183  MPEG2RawSlice *slice;
184  int pos, len;
185 
186  err = ff_cbs_alloc_unit_content(ctx, unit, sizeof(*slice),
188  if (err < 0)
189  return err;
190  slice = unit->content;
191 
192  err = cbs_mpeg2_read_slice_header(ctx, &gbc, &slice->header);
193  if (err < 0)
194  return err;
195 
196  pos = get_bits_count(&gbc);
197  len = unit->data_size;
198 
199  slice->data_size = len - pos / 8;
200  slice->data_ref = av_buffer_alloc(slice->data_size +
202  if (!slice->data_ref)
203  return AVERROR(ENOMEM);
204  slice->data = slice->data_ref->data;
205 
206  memcpy(slice->data,
207  unit->data + pos / 8, slice->data_size);
208  memset(slice->data + slice->data_size, 0,
210  slice->data_bit_start = pos % 8;
211 
212  } else {
213  switch (unit->type) {
214 #define START(start_code, type, read_func, free_func) \
215  case start_code: \
216  { \
217  type *header; \
218  err = ff_cbs_alloc_unit_content(ctx, unit, \
219  sizeof(*header), free_func); \
220  if (err < 0) \
221  return err; \
222  header = unit->content; \
223  err = cbs_mpeg2_read_ ## read_func(ctx, &gbc, header); \
224  if (err < 0) \
225  return err; \
226  } \
227  break;
235 #undef START
236  default:
237  av_log(ctx->log_ctx, AV_LOG_ERROR, "Unknown start code %02"PRIx32".\n",
238  unit->type);
239  return AVERROR_INVALIDDATA;
240  }
241  }
242 
243  return 0;
244 }
245 
247  CodedBitstreamUnit *unit,
248  PutBitContext *pbc)
249 {
250  int err;
251 
252  switch (unit->type) {
253 #define START(start_code, type, func) \
254  case start_code: \
255  err = cbs_mpeg2_write_ ## func(ctx, pbc, unit->content); \
256  break;
262 #undef START
263  default:
264  av_log(ctx->log_ctx, AV_LOG_ERROR, "Write unimplemented for start "
265  "code %02"PRIx32".\n", unit->type);
266  return AVERROR_PATCHWELCOME;
267  }
268 
269  return err;
270 }
271 
273  CodedBitstreamUnit *unit,
274  PutBitContext *pbc)
275 {
276  MPEG2RawSlice *slice = unit->content;
277  GetBitContext gbc;
278  size_t bits_left;
279  int err;
280 
281  err = cbs_mpeg2_write_slice_header(ctx, pbc, &slice->header);
282  if (err < 0)
283  return err;
284 
285  if (slice->data) {
286  if (slice->data_size * 8 + 8 > put_bits_left(pbc))
287  return AVERROR(ENOSPC);
288 
289  init_get_bits(&gbc, slice->data, slice->data_size * 8);
290  skip_bits_long(&gbc, slice->data_bit_start);
291 
292  while (get_bits_left(&gbc) > 15)
293  put_bits(pbc, 16, get_bits(&gbc, 16));
294 
295  bits_left = get_bits_left(&gbc);
296  put_bits(pbc, bits_left, get_bits(&gbc, bits_left));
297 
298  // Align with zeroes.
299  while (put_bits_count(pbc) % 8 != 0)
300  put_bits(pbc, 1, 0);
301  }
302 
303  return 0;
304 }
305 
307  CodedBitstreamUnit *unit)
308 {
310  PutBitContext pbc;
311  int err;
312 
313  if (!priv->write_buffer) {
314  // Initial write buffer size is 1MB.
315  priv->write_buffer_size = 1024 * 1024;
316 
317  reallocate_and_try_again:
318  err = av_reallocp(&priv->write_buffer, priv->write_buffer_size);
319  if (err < 0) {
320  av_log(ctx->log_ctx, AV_LOG_ERROR, "Unable to allocate a "
321  "sufficiently large write buffer (last attempt "
322  "%"SIZE_SPECIFIER" bytes).\n", priv->write_buffer_size);
323  return err;
324  }
325  }
326 
327  init_put_bits(&pbc, priv->write_buffer, priv->write_buffer_size);
328 
329  if (unit->type >= 0x01 && unit->type <= 0xaf)
330  err = cbs_mpeg2_write_slice(ctx, unit, &pbc);
331  else
332  err = cbs_mpeg2_write_header(ctx, unit, &pbc);
333 
334  if (err == AVERROR(ENOSPC)) {
335  // Overflow.
336  priv->write_buffer_size *= 2;
337  goto reallocate_and_try_again;
338  }
339  if (err < 0) {
340  // Write failed for some other reason.
341  return err;
342  }
343 
344  if (put_bits_count(&pbc) % 8)
345  unit->data_bit_padding = 8 - put_bits_count(&pbc) % 8;
346  else
347  unit->data_bit_padding = 0;
348 
349  unit->data_size = (put_bits_count(&pbc) + 7) / 8;
350  flush_put_bits(&pbc);
351 
352  err = ff_cbs_alloc_unit_data(ctx, unit, unit->data_size);
353  if (err < 0)
354  return err;
355 
356  memcpy(unit->data, priv->write_buffer, unit->data_size);
357 
358  return 0;
359 }
360 
363 {
364  uint8_t *data;
365  size_t size, dp, sp;
366  int i;
367 
368  size = 0;
369  for (i = 0; i < frag->nb_units; i++)
370  size += 3 + frag->units[i].data_size;
371 
373  if (!frag->data_ref)
374  return AVERROR(ENOMEM);
375  data = frag->data_ref->data;
376 
377  dp = 0;
378  for (i = 0; i < frag->nb_units; i++) {
379  CodedBitstreamUnit *unit = &frag->units[i];
380 
381  data[dp++] = 0;
382  data[dp++] = 0;
383  data[dp++] = 1;
384 
385  for (sp = 0; sp < unit->data_size; sp++)
386  data[dp++] = unit->data[sp];
387  }
388 
389  av_assert0(dp == size);
390 
391  memset(data + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
392  frag->data = data;
393  frag->data_size = size;
394 
395  return 0;
396 }
397 
399 {
401 
402  av_freep(&priv->write_buffer);
403 }
404 
407 
408  .priv_data_size = sizeof(CodedBitstreamMPEG2Context),
409 
410  .split_fragment = &cbs_mpeg2_split_fragment,
411  .read_unit = &cbs_mpeg2_read_unit,
412  .write_unit = &cbs_mpeg2_write_unit,
413  .assemble_fragment = &cbs_mpeg2_assemble_fragment,
414 
415  .close = &cbs_mpeg2_close,
416 };
#define NULL
Definition: coverity.c:32
int nb_units
Number of units in this fragment.
Definition: cbs.h:144
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:125
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
uint8_t * data
Definition: cbs_mpeg2.h:207
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Definition: j2kenc.c:207
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:269
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
Definition: get_bits.h:212
CodedBitstreamUnitType type
Codec-specific type of this unit.
Definition: cbs.h:67
int ff_cbs_alloc_unit_content(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, size_t size, void(*free)(void *opaque, uint8_t *data))
Definition: cbs.c:454
static int cbs_mpeg2_write_unit(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
Definition: cbs_mpeg2.c:306
static void cbs_mpeg2_free_user_data(void *unit, uint8_t *content)
Definition: cbs_mpeg2.c:105
static int cbs_mpeg2_read_unit(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit)
Definition: cbs_mpeg2.c:172
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
static int cbs_mpeg2_assemble_fragment(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag)
Definition: cbs_mpeg2.c:361
static int FUNC() extension_data(CodedBitstreamContext *ctx, RWContext *rw, H265RawPSExtensionData *current)
uint8_t
#define av_malloc(s)
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
AVBufferRef * extra_information_ref
Definition: cbs_mpeg2.h:201
size_t data_bit_padding
The number of bits which should be ignored in the final byte.
Definition: cbs.h:85
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:200
#define sp
Definition: regdef.h:63
int ff_cbs_alloc_unit_data(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, size_t size)
Allocate a new internal data buffer of the given size in the unit.
Definition: cbs.c:475
Coded bitstream unit structure.
Definition: cbs.h:63
ptrdiff_t size
Definition: opengl_enc.c:101
void * content
Pointer to the decomposed form of this unit.
Definition: cbs.h:99
static const uint8_t header[24]
Definition: sdr2.c:67
CodedBitstreamUnit * units
Pointer to an array of units of length nb_units.
Definition: cbs.h:150
uint8_t * data
Pointer to the directly-parsable bitstream form of this unit.
Definition: cbs.h:74
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.
Definition: cbs.c:555
#define av_log(a,...)
const uint8_t * avpriv_find_start_code(const uint8_t *p, const uint8_t *end, uint32_t *state)
size_t data_size
The number of bytes in the bitstream.
Definition: cbs.h:127
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:596
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static int put_bits_left(PutBitContext *s)
Definition: put_bits.h:93
#define AVERROR(e)
Definition: error.h:43
AVS_Value void * user_data
Definition: avisynth_c.h:699
AVBufferRef * user_data_ref
Definition: cbs_mpeg2.h:81
simple assert() macros that are a bit more flexible than ISO C assert().
static int put_bits_count(PutBitContext *s)
Definition: put_bits.h:85
static int cbs_mpeg2_split_fragment(CodedBitstreamContext *ctx, CodedBitstreamFragment *frag, int header)
Definition: cbs_mpeg2.c:120
static int FUNC() picture_header(CodedBitstreamContext *ctx, RWContext *rw, MPEG2RawPictureHeader *current)
void * log_ctx
Logging context to be passed to all av_log() calls associated with this context.
Definition: cbs.h:161
#define START(start_code, type, read_func, free_func)
AVFormatContext * ctx
Definition: movenc.c:48
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:220
uint8_t * data
Pointer to the bitstream form of this fragment.
Definition: cbs.h:120
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
const CodedBitstreamType ff_cbs_type_mpeg2
Definition: cbs_mpeg2.c:405
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
Definition: mem.c:163
int data_bit_start
Definition: cbs_mpeg2.h:209
static int FUNC() sequence_header(CodedBitstreamContext *ctx, RWContext *rw, MPEG2RawSequenceHeader *current)
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
Definition: buffer.c:67
Coded bitstream fragment structure, combining one or more units.
Definition: cbs.h:114
#define MPEG2_START_IS_SLICE(type)
Definition: cbs_mpeg2.h:40
uint8_t * data
The data buffer.
Definition: buffer.h:89
Context structure for coded bitstream operations.
Definition: cbs.h:156
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:433
enum AVCodecID codec_id
Definition: cbs_internal.h:29
#define SIZE_SPECIFIER
Definition: internal.h:262
static int cbs_mpeg2_write_slice(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, PutBitContext *pbc)
Definition: cbs_mpeg2.c:272
MPEG2RawSliceHeader header
Definition: cbs_mpeg2.h:205
void * priv_data
Internal codec-specific data.
Definition: cbs.h:177
common internal api header.
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
Definition: put_bits.h:101
static void cbs_mpeg2_close(CodedBitstreamContext *ctx)
Definition: cbs_mpeg2.c:398
static int FUNC() group_of_pictures_header(CodedBitstreamContext *ctx, RWContext *rw, MPEG2RawGroupOfPicturesHeader *current)
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
Definition: put_bits.h:48
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:773
int len
static void cbs_mpeg2_free_slice(void *unit, uint8_t *content)
Definition: cbs_mpeg2.c:112
AVBufferRef * data_ref
Definition: cbs_mpeg2.h:210
size_t data_size
Definition: cbs_mpeg2.h:208
#define av_freep(p)
void INT64 start
Definition: avisynth_c.h:690
static const uint8_t start_code[]
static int cbs_mpeg2_write_header(CodedBitstreamContext *ctx, CodedBitstreamUnit *unit, PutBitContext *pbc)
Definition: cbs_mpeg2.c:246
AVBufferRef * data_ref
If data is reference counted, a reference to the buffer containing data.
Definition: cbs.h:136
size_t data_size
The number of bytes in the bitstream (including any padding bits in the final byte).
Definition: cbs.h:79