FFmpeg  4.4.8
avc.c
Go to the documentation of this file.
1 /*
2  * AVC helper functions for muxers
3  * Copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@smartjog.com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/intreadwrite.h"
23 #include "libavcodec/h264.h"
24 #include "libavcodec/get_bits.h"
25 #include "libavcodec/golomb.h"
26 #include "avformat.h"
27 #include "avio.h"
28 #include "avc.h"
29 #include "avio_internal.h"
30 
31 static const uint8_t *avc_find_startcode_internal(const uint8_t *p, const uint8_t *end)
32 {
33  const uint8_t *a = p + 4 - ((intptr_t)p & 3);
34 
35  for (end -= 3; p < a && p < end; p++) {
36  if (p[0] == 0 && p[1] == 0 && p[2] == 1)
37  return p;
38  }
39 
40  for (end -= 3; p < end; p += 4) {
41  uint32_t x = *(const uint32_t*)p;
42 // if ((x - 0x01000100) & (~x) & 0x80008000) // little endian
43 // if ((x - 0x00010001) & (~x) & 0x00800080) // big endian
44  if ((x - 0x01010101) & (~x) & 0x80808080) { // generic
45  if (p[1] == 0) {
46  if (p[0] == 0 && p[2] == 1)
47  return p;
48  if (p[2] == 0 && p[3] == 1)
49  return p+1;
50  }
51  if (p[3] == 0) {
52  if (p[2] == 0 && p[4] == 1)
53  return p+2;
54  if (p[4] == 0 && p[5] == 1)
55  return p+3;
56  }
57  }
58  }
59 
60  for (end += 3; p < end; p++) {
61  if (p[0] == 0 && p[1] == 0 && p[2] == 1)
62  return p;
63  }
64 
65  return end + 3;
66 }
67 
68 const uint8_t *ff_avc_find_startcode(const uint8_t *p, const uint8_t *end){
69  const uint8_t *out = avc_find_startcode_internal(p, end);
70  if(p<out && out<end && !out[-1]) out--;
71  return out;
72 }
73 
74 int ff_avc_parse_nal_units(AVIOContext *pb, const uint8_t *buf_in, int size)
75 {
76  const uint8_t *p = buf_in;
77  const uint8_t *end = p + size;
78  const uint8_t *nal_start, *nal_end;
79 
80  size = 0;
81  nal_start = ff_avc_find_startcode(p, end);
82  for (;;) {
83  while (nal_start < end && !*(nal_start++));
84  if (nal_start == end)
85  break;
86 
87  nal_end = ff_avc_find_startcode(nal_start, end);
88  avio_wb32(pb, nal_end - nal_start);
89  avio_write(pb, nal_start, nal_end - nal_start);
90  size += 4 + nal_end - nal_start;
91  nal_start = nal_end;
92  }
93  return size;
94 }
95 
96 int ff_avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size)
97 {
98  AVIOContext *pb;
99  int ret = avio_open_dyn_buf(&pb);
100  if(ret < 0)
101  return ret;
102 
103  ff_avc_parse_nal_units(pb, buf_in, *size);
104 
105  *size = avio_close_dyn_buf(pb, buf);
106  return 0;
107 }
108 
110 {
111  AVIOContext *sps_pb = NULL, *pps_pb = NULL, *sps_ext_pb = NULL;
112  uint8_t *buf, *end, *start;
113  uint8_t *sps, *pps, *sps_ext;
114  uint32_t sps_size = 0, pps_size = 0, sps_ext_size = 0;
115  int ret, nb_sps = 0, nb_pps = 0, nb_sps_ext = 0;
116 
117  if (len <= 6)
118  return AVERROR_INVALIDDATA;
119 
120  /* check for H.264 start code */
121  if (AV_RB32(data) != 0x00000001 &&
122  AV_RB24(data) != 0x000001) {
123  avio_write(pb, data, len);
124  return 0;
125  }
126 
127  ret = ff_avc_parse_nal_units_buf(data, &buf, &len);
128  if (ret < 0)
129  return ret;
130  start = buf;
131  end = buf + len;
132 
133  ret = avio_open_dyn_buf(&sps_pb);
134  if (ret < 0)
135  goto fail;
136  ret = avio_open_dyn_buf(&pps_pb);
137  if (ret < 0)
138  goto fail;
139  ret = avio_open_dyn_buf(&sps_ext_pb);
140  if (ret < 0)
141  goto fail;
142 
143  /* look for sps and pps */
144  while (end - buf > 4) {
145  uint32_t size;
146  uint8_t nal_type;
147  size = FFMIN(AV_RB32(buf), end - buf - 4);
148  buf += 4;
149  nal_type = buf[0] & 0x1f;
150 
151  if (nal_type == 7) { /* SPS */
152  nb_sps++;
153  if (size > UINT16_MAX || nb_sps >= H264_MAX_SPS_COUNT) {
154  ret = AVERROR_INVALIDDATA;
155  goto fail;
156  }
157  avio_wb16(sps_pb, size);
158  avio_write(sps_pb, buf, size);
159  } else if (nal_type == 8) { /* PPS */
160  nb_pps++;
161  if (size > UINT16_MAX || nb_pps >= H264_MAX_PPS_COUNT) {
162  ret = AVERROR_INVALIDDATA;
163  goto fail;
164  }
165  avio_wb16(pps_pb, size);
166  avio_write(pps_pb, buf, size);
167  } else if (nal_type == 13) { /* SPS_EXT */
168  nb_sps_ext++;
169  if (size > UINT16_MAX || nb_sps_ext >= 256) {
170  ret = AVERROR_INVALIDDATA;
171  goto fail;
172  }
173  avio_wb16(sps_ext_pb, size);
174  avio_write(sps_ext_pb, buf, size);
175  }
176 
177  buf += size;
178  }
179  sps_size = avio_get_dyn_buf(sps_pb, &sps);
180  pps_size = avio_get_dyn_buf(pps_pb, &pps);
181  sps_ext_size = avio_get_dyn_buf(sps_ext_pb, &sps_ext);
182 
183  if (sps_size < 6 || !pps_size) {
184  ret = AVERROR_INVALIDDATA;
185  goto fail;
186  }
187 
188  avio_w8(pb, 1); /* version */
189  avio_w8(pb, sps[3]); /* profile */
190  avio_w8(pb, sps[4]); /* profile compat */
191  avio_w8(pb, sps[5]); /* level */
192  avio_w8(pb, 0xff); /* 6 bits reserved (111111) + 2 bits nal size length - 1 (11) */
193  avio_w8(pb, 0xe0 | nb_sps); /* 3 bits reserved (111) + 5 bits number of sps */
194 
195  avio_write(pb, sps, sps_size);
196  avio_w8(pb, nb_pps); /* number of pps */
197  avio_write(pb, pps, pps_size);
198 
199  if (sps[3] != 66 && sps[3] != 77 && sps[3] != 88) {
200  H264SPS seq;
201  ret = ff_avc_decode_sps(&seq, sps + 3, sps_size - 3);
202  if (ret < 0)
203  goto fail;
204 
205  avio_w8(pb, 0xfc | seq.chroma_format_idc); /* 6 bits reserved (111111) + chroma_format_idc */
206  avio_w8(pb, 0xf8 | (seq.bit_depth_luma - 8)); /* 5 bits reserved (11111) + bit_depth_luma_minus8 */
207  avio_w8(pb, 0xf8 | (seq.bit_depth_chroma - 8)); /* 5 bits reserved (11111) + bit_depth_chroma_minus8 */
208  avio_w8(pb, nb_sps_ext); /* number of sps ext */
209  if (nb_sps_ext)
210  avio_write(pb, sps_ext, sps_ext_size);
211  }
212 
213 fail:
214  ffio_free_dyn_buf(&sps_pb);
215  ffio_free_dyn_buf(&pps_pb);
216  ffio_free_dyn_buf(&sps_ext_pb);
217  av_free(start);
218 
219  return ret;
220 }
221 
223 {
224  uint16_t sps_size, pps_size;
225  uint8_t *out;
226  int out_size;
227 
228  *buf = NULL;
229  if (*size >= 4 && (AV_RB32(in) == 0x00000001 || AV_RB24(in) == 0x000001))
230  return 0;
231  if (*size < 11 || in[0] != 1)
232  return AVERROR_INVALIDDATA;
233 
234  sps_size = AV_RB16(&in[6]);
235  if (11 + sps_size > *size)
236  return AVERROR_INVALIDDATA;
237  pps_size = AV_RB16(&in[9 + sps_size]);
238  if (11 + sps_size + pps_size > *size)
239  return AVERROR_INVALIDDATA;
240  out_size = 8 + sps_size + pps_size;
242  if (!out)
243  return AVERROR(ENOMEM);
244  AV_WB32(&out[0], 0x00000001);
245  memcpy(out + 4, &in[8], sps_size);
246  AV_WB32(&out[4 + sps_size], 0x00000001);
247  memcpy(out + 8 + sps_size, &in[11 + sps_size], pps_size);
248  *buf = out;
249  *size = out_size;
250  return 0;
251 }
252 
254  const uint8_t *end,
255  int nal_length_size)
256 {
257  unsigned int res = 0;
258 
259  if (end - start < nal_length_size)
260  return NULL;
261  while (nal_length_size--)
262  res = (res << 8) | *start++;
263 
264  if (res > end - start)
265  return NULL;
266 
267  return start + res;
268 }
269 
270 uint8_t *ff_nal_unit_extract_rbsp(const uint8_t *src, uint32_t src_len,
271  uint32_t *dst_len, int header_len)
272 {
273  uint8_t *dst;
274  uint32_t i, len;
275 
276  dst = av_malloc(src_len + AV_INPUT_BUFFER_PADDING_SIZE);
277  if (!dst)
278  return NULL;
279 
280  /* NAL unit header */
281  i = len = 0;
282  while (i < header_len && i < src_len)
283  dst[len++] = src[i++];
284 
285  while (i + 2 < src_len)
286  if (!src[i] && !src[i + 1] && src[i + 2] == 3) {
287  dst[len++] = src[i++];
288  dst[len++] = src[i++];
289  i++; // remove emulation_prevention_three_byte
290  } else
291  dst[len++] = src[i++];
292 
293  while (i < src_len)
294  dst[len++] = src[i++];
295 
296  memset(dst + len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
297 
298  *dst_len = len;
299  return dst;
300 }
301 
303  { 0, 1 },
304  { 1, 1 },
305  { 12, 11 },
306  { 10, 11 },
307  { 16, 11 },
308  { 40, 33 },
309  { 24, 11 },
310  { 20, 11 },
311  { 32, 11 },
312  { 80, 33 },
313  { 18, 11 },
314  { 15, 11 },
315  { 64, 33 },
316  { 160, 99 },
317  { 4, 3 },
318  { 3, 2 },
319  { 2, 1 },
320 };
321 
322 int ff_avc_decode_sps(H264SPS *sps, const uint8_t *buf, int buf_size)
323 {
324  int i, j, ret, rbsp_size, aspect_ratio_idc, pic_order_cnt_type;
325  int num_ref_frames_in_pic_order_cnt_cycle;
326  int delta_scale, lastScale = 8, nextScale = 8;
327  int sizeOfScalingList;
328  GetBitContext gb;
329  uint8_t *rbsp_buf;
330 
331  rbsp_buf = ff_nal_unit_extract_rbsp(buf, buf_size, &rbsp_size, 0);
332  if (!rbsp_buf)
333  return AVERROR(ENOMEM);
334 
335  ret = init_get_bits8(&gb, rbsp_buf, rbsp_size);
336  if (ret < 0)
337  goto end;
338 
339  memset(sps, 0, sizeof(*sps));
340 
341  sps->profile_idc = get_bits(&gb, 8);
342  sps->constraint_set_flags |= get_bits1(&gb) << 0; // constraint_set0_flag
343  sps->constraint_set_flags |= get_bits1(&gb) << 1; // constraint_set1_flag
344  sps->constraint_set_flags |= get_bits1(&gb) << 2; // constraint_set2_flag
345  sps->constraint_set_flags |= get_bits1(&gb) << 3; // constraint_set3_flag
346  sps->constraint_set_flags |= get_bits1(&gb) << 4; // constraint_set4_flag
347  sps->constraint_set_flags |= get_bits1(&gb) << 5; // constraint_set5_flag
348  skip_bits(&gb, 2); // reserved_zero_2bits
349  sps->level_idc = get_bits(&gb, 8);
350  sps->id = get_ue_golomb_long(&gb);
351 
352  if (sps->profile_idc == 100 || sps->profile_idc == 110 ||
353  sps->profile_idc == 122 || sps->profile_idc == 244 || sps->profile_idc == 44 ||
354  sps->profile_idc == 83 || sps->profile_idc == 86 || sps->profile_idc == 118 ||
355  sps->profile_idc == 128 || sps->profile_idc == 138 || sps->profile_idc == 139 ||
356  sps->profile_idc == 134) {
357  sps->chroma_format_idc = get_ue_golomb_long(&gb); // chroma_format_idc
358  if (sps->chroma_format_idc == 3) {
359  skip_bits1(&gb); // separate_colour_plane_flag
360  }
361  sps->bit_depth_luma = get_ue_golomb_long(&gb) + 8;
362  sps->bit_depth_chroma = get_ue_golomb_long(&gb) + 8;
363  skip_bits1(&gb); // qpprime_y_zero_transform_bypass_flag
364  if (get_bits1(&gb)) { // seq_scaling_matrix_present_flag
365  for (i = 0; i < ((sps->chroma_format_idc != 3) ? 8 : 12); i++) {
366  if (!get_bits1(&gb)) // seq_scaling_list_present_flag
367  continue;
368  lastScale = 8;
369  nextScale = 8;
370  sizeOfScalingList = i < 6 ? 16 : 64;
371  for (j = 0; j < sizeOfScalingList; j++) {
372  if (nextScale != 0) {
373  delta_scale = get_se_golomb_long(&gb);
374  nextScale = (lastScale + delta_scale) & 0xff;
375  }
376  lastScale = nextScale == 0 ? lastScale : nextScale;
377  }
378  }
379  }
380  } else {
381  sps->chroma_format_idc = 1;
382  sps->bit_depth_luma = 8;
383  sps->bit_depth_chroma = 8;
384  }
385 
386  get_ue_golomb_long(&gb); // log2_max_frame_num_minus4
387  pic_order_cnt_type = get_ue_golomb_long(&gb);
388 
389  if (pic_order_cnt_type == 0) {
390  get_ue_golomb_long(&gb); // log2_max_pic_order_cnt_lsb_minus4
391  } else if (pic_order_cnt_type == 1) {
392  skip_bits1(&gb); // delta_pic_order_always_zero
393  get_se_golomb_long(&gb); // offset_for_non_ref_pic
394  get_se_golomb_long(&gb); // offset_for_top_to_bottom_field
395  num_ref_frames_in_pic_order_cnt_cycle = get_ue_golomb_long(&gb);
396  for (i = 0; i < num_ref_frames_in_pic_order_cnt_cycle; i++)
397  get_se_golomb_long(&gb); // offset_for_ref_frame
398  }
399 
400  get_ue_golomb_long(&gb); // max_num_ref_frames
401  skip_bits1(&gb); // gaps_in_frame_num_value_allowed_flag
402  get_ue_golomb_long(&gb); // pic_width_in_mbs_minus1
403  get_ue_golomb_long(&gb); // pic_height_in_map_units_minus1
404 
405  sps->frame_mbs_only_flag = get_bits1(&gb);
406  if (!sps->frame_mbs_only_flag)
407  skip_bits1(&gb); // mb_adaptive_frame_field_flag
408 
409  skip_bits1(&gb); // direct_8x8_inference_flag
410 
411  if (get_bits1(&gb)) { // frame_cropping_flag
412  get_ue_golomb_long(&gb); // frame_crop_left_offset
413  get_ue_golomb_long(&gb); // frame_crop_right_offset
414  get_ue_golomb_long(&gb); // frame_crop_top_offset
415  get_ue_golomb_long(&gb); // frame_crop_bottom_offset
416  }
417 
418  if (get_bits1(&gb)) { // vui_parameters_present_flag
419  if (get_bits1(&gb)) { // aspect_ratio_info_present_flag
420  aspect_ratio_idc = get_bits(&gb, 8);
421  if (aspect_ratio_idc == 0xff) {
422  sps->sar.num = get_bits(&gb, 16);
423  sps->sar.den = get_bits(&gb, 16);
424  } else if (aspect_ratio_idc < FF_ARRAY_ELEMS(avc_sample_aspect_ratio)) {
425  sps->sar = avc_sample_aspect_ratio[aspect_ratio_idc];
426  }
427  }
428  }
429 
430  if (!sps->sar.den) {
431  sps->sar.num = 1;
432  sps->sar.den = 1;
433  }
434 
435  ret = 0;
436  end:
437  av_free(rbsp_buf);
438  return ret;
439 }
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
uint8_t
const uint8_t * ff_avc_find_startcode(const uint8_t *p, const uint8_t *end)
Definition: avc.c:68
const uint8_t * ff_avc_mp4_find_startcode(const uint8_t *start, const uint8_t *end, int nal_length_size)
Definition: avc.c:253
static const AVRational avc_sample_aspect_ratio[17]
Definition: avc.c:302
int ff_avc_decode_sps(H264SPS *sps, const uint8_t *buf, int buf_size)
Definition: avc.c:322
int ff_isom_write_avcc(AVIOContext *pb, const uint8_t *data, int len)
Definition: avc.c:109
uint8_t * ff_nal_unit_extract_rbsp(const uint8_t *src, uint32_t src_len, uint32_t *dst_len, int header_len)
Definition: avc.c:270
int ff_avc_write_annexb_extradata(const uint8_t *in, uint8_t **buf, int *size)
Definition: avc.c:222
static const uint8_t * avc_find_startcode_internal(const uint8_t *p, const uint8_t *end)
Definition: avc.c:31
int ff_avc_parse_nal_units(AVIOContext *pb, const uint8_t *buf_in, int size)
Definition: avc.c:74
int ff_avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size)
Definition: avc.c:96
Main libavformat public API header.
Buffered I/O operations.
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:203
void avio_wb32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:383
void avio_wb16(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:461
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
Definition: aviobuf.c:1427
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:225
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition: aviobuf.c:1382
int avio_get_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
Definition: aviobuf.c:1394
void ffio_free_dyn_buf(AVIOContext **s)
Free a dynamic buffer.
Definition: aviobuf.c:1457
#define AV_RB24
Definition: intreadwrite.h:64
#define AV_RB32
Definition: intreadwrite.h:130
#define AV_RB16
Definition: intreadwrite.h:53
static int FUNC() pps(CodedBitstreamContext *ctx, RWContext *rw, H264RawPPS *current)
static int FUNC() sps(CodedBitstreamContext *ctx, RWContext *rw, H264RawSPS *current)
#define fail()
Definition: checkasm.h:133
#define FFMIN(a, b)
Definition: common.h:105
#define NULL
Definition: coverity.c:32
bitstream reader API header.
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:498
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:467
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:677
static void skip_bits1(GetBitContext *s)
Definition: get_bits.h:538
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:379
exp golomb vlc stuff
static int get_se_golomb_long(GetBitContext *gb)
Definition: golomb.h:296
static unsigned get_ue_golomb_long(GetBitContext *gb)
Read an unsigned Exp-Golomb code in the range 0 to UINT32_MAX-1.
Definition: golomb.h:106
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
Definition: avcodec.h:215
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define AVERROR(e)
Definition: error.h:43
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:237
H.264 common definitions.
@ H264_MAX_SPS_COUNT
Definition: h264.h:71
@ H264_MAX_PPS_COUNT
Definition: h264.h:73
int i
Definition: input.c:407
#define AV_WB32(p, v)
Definition: intreadwrite.h:419
const char data[16]
Definition: mxf.c:142
#define FF_ARRAY_ELEMS(a)
Bytestream IO Context.
Definition: avio.h:161
Rational number (pair of numerator and denominator).
Definition: rational.h:58
Definition: avc.h:39
uint8_t chroma_format_idc
Definition: avc.h:44
uint8_t bit_depth_chroma
Definition: avc.h:46
uint8_t bit_depth_luma
Definition: avc.h:45
#define av_free(p)
#define av_malloc(s)
#define src
Definition: vp8dsp.c:255
FILE * out
Definition: movenc.c:54
int out_size
Definition: movenc.c:55
int size
int len