FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
h264_mp4toannexb_bsf.c
Go to the documentation of this file.
1 /*
2  * H.264 MP4 to Annex B byte stream format filter
3  * Copyright (c) 2007 Benoit Fouet <benoit.fouet@free.fr>
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 <string.h>
23 
24 #include "libavutil/intreadwrite.h"
25 #include "libavutil/mem.h"
26 #include "avcodec.h"
27 
28 typedef struct H264BSFContext {
37 
38 static int alloc_and_copy(uint8_t **poutbuf, int *poutbuf_size,
39  const uint8_t *sps_pps, uint32_t sps_pps_size,
40  const uint8_t *in, uint32_t in_size)
41 {
42  uint32_t offset = *poutbuf_size;
43  uint8_t nal_header_size = offset ? 3 : 4;
44  int err;
45 
46  *poutbuf_size += sps_pps_size + in_size + nal_header_size;
47  if ((err = av_reallocp(poutbuf,
48  *poutbuf_size + FF_INPUT_BUFFER_PADDING_SIZE)) < 0) {
49  *poutbuf_size = 0;
50  return err;
51  }
52  if (sps_pps)
53  memcpy(*poutbuf + offset, sps_pps, sps_pps_size);
54  memcpy(*poutbuf + sps_pps_size + nal_header_size + offset, in, in_size);
55  if (!offset) {
56  AV_WB32(*poutbuf + sps_pps_size, 1);
57  } else {
58  (*poutbuf + offset + sps_pps_size)[0] =
59  (*poutbuf + offset + sps_pps_size)[1] = 0;
60  (*poutbuf + offset + sps_pps_size)[2] = 1;
61  }
62 
63  return 0;
64 }
65 
66 static int h264_extradata_to_annexb(H264BSFContext *ctx, AVCodecContext *avctx, const int padding)
67 {
68  uint16_t unit_size;
69  uint64_t total_size = 0;
70  uint8_t *out = NULL, unit_nb, sps_done = 0,
71  sps_seen = 0, pps_seen = 0;
72  const uint8_t *extradata = avctx->extradata + 4;
73  static const uint8_t nalu_header[4] = { 0, 0, 0, 1 };
74  int length_size = (*extradata++ & 0x3) + 1; // retrieve length coded size
75 
76  ctx->sps_offset = ctx->pps_offset = -1;
77 
78  /* retrieve sps and pps unit(s) */
79  unit_nb = *extradata++ & 0x1f; /* number of sps unit(s) */
80  if (!unit_nb) {
81  goto pps;
82  } else {
83  ctx->sps_offset = 0;
84  sps_seen = 1;
85  }
86 
87  while (unit_nb--) {
88  int err;
89 
90  unit_size = AV_RB16(extradata);
91  total_size += unit_size + 4;
92  if (total_size > INT_MAX - padding) {
93  av_log(avctx, AV_LOG_ERROR,
94  "Too big extradata size, corrupted stream or invalid MP4/AVCC bitstream\n");
95  av_free(out);
96  return AVERROR(EINVAL);
97  }
98  if (extradata + 2 + unit_size > avctx->extradata + avctx->extradata_size) {
99  av_log(avctx, AV_LOG_ERROR, "Packet header is not contained in global extradata, "
100  "corrupted stream or invalid MP4/AVCC bitstream\n");
101  av_free(out);
102  return AVERROR(EINVAL);
103  }
104  if ((err = av_reallocp(&out, total_size + padding)) < 0)
105  return err;
106  memcpy(out + total_size - unit_size - 4, nalu_header, 4);
107  memcpy(out + total_size - unit_size, extradata + 2, unit_size);
108  extradata += 2 + unit_size;
109 pps:
110  if (!unit_nb && !sps_done++) {
111  unit_nb = *extradata++; /* number of pps unit(s) */
112  if (unit_nb) {
113  ctx->pps_offset = (extradata - 1) - (avctx->extradata + 4);
114  pps_seen = 1;
115  }
116  }
117  }
118 
119  if (out)
120  memset(out + total_size, 0, padding);
121 
122  if (!sps_seen)
123  av_log(avctx, AV_LOG_WARNING,
124  "Warning: SPS NALU missing or invalid. "
125  "The resulting stream may not play.\n");
126 
127  if (!pps_seen)
128  av_log(avctx, AV_LOG_WARNING,
129  "Warning: PPS NALU missing or invalid. "
130  "The resulting stream may not play.\n");
131 
132  av_free(avctx->extradata);
133  avctx->extradata = out;
134  avctx->extradata_size = total_size;
135 
136  return length_size;
137 }
138 
140  AVCodecContext *avctx, const char *args,
141  uint8_t **poutbuf, int *poutbuf_size,
142  const uint8_t *buf, int buf_size,
143  int keyframe)
144 {
145  H264BSFContext *ctx = bsfc->priv_data;
146  int i;
147  uint8_t unit_type;
148  int32_t nal_size;
149  uint32_t cumul_size = 0;
150  const uint8_t *buf_end = buf + buf_size;
151  int ret = 0;
152 
153  /* nothing to filter */
154  if (!avctx->extradata || avctx->extradata_size < 6) {
155  *poutbuf = (uint8_t *)buf;
156  *poutbuf_size = buf_size;
157  return 0;
158  }
159 
160  /* retrieve sps and pps NAL units from extradata */
161  if (!ctx->extradata_parsed) {
163  if (ret < 0)
164  return ret;
165  ctx->length_size = ret;
166  ctx->new_idr = 1;
167  ctx->idr_sps_seen = 0;
168  ctx->idr_pps_seen = 0;
169  ctx->extradata_parsed = 1;
170  }
171 
172  *poutbuf_size = 0;
173  *poutbuf = NULL;
174  do {
175  ret= AVERROR(EINVAL);
176  if (buf + ctx->length_size > buf_end)
177  goto fail;
178 
179  for (nal_size = 0, i = 0; i<ctx->length_size; i++)
180  nal_size = (nal_size << 8) | buf[i];
181 
182  buf += ctx->length_size;
183  unit_type = *buf & 0x1f;
184 
185  if (buf + nal_size > buf_end || nal_size < 0)
186  goto fail;
187 
188  if (unit_type == 7)
189  ctx->idr_sps_seen = ctx->new_idr = 1;
190  else if (unit_type == 8) {
191  ctx->idr_pps_seen = ctx->new_idr = 1;
192  /* if SPS has not been seen yet, prepend the AVCC one to PPS */
193  if (!ctx->idr_sps_seen) {
194  if (ctx->sps_offset == -1)
195  av_log(avctx, AV_LOG_WARNING, "SPS not present in the stream, nor in AVCC, stream may be unreadable\n");
196  else {
197  if ((ret = alloc_and_copy(poutbuf, poutbuf_size,
198  avctx->extradata + ctx->sps_offset,
199  ctx->pps_offset != -1 ? ctx->pps_offset : avctx->extradata_size - ctx->sps_offset,
200  buf, nal_size)) < 0)
201  goto fail;
202  ctx->idr_sps_seen = 1;
203  goto next_nal;
204  }
205  }
206  }
207 
208  /* if this is a new IDR picture following an IDR picture, reset the idr flag.
209  * Just check first_mb_in_slice to be 0 as this is the simplest solution.
210  * This could be checking idr_pic_id instead, but would complexify the parsing. */
211  if (!ctx->new_idr && unit_type == 5 && (buf[1] & 0x80))
212  ctx->new_idr = 1;
213 
214  /* prepend only to the first type 5 NAL unit of an IDR picture, if no sps/pps are already present */
215  if (ctx->new_idr && unit_type == 5 && !ctx->idr_sps_seen && !ctx->idr_pps_seen) {
216  if ((ret=alloc_and_copy(poutbuf, poutbuf_size,
217  avctx->extradata, avctx->extradata_size,
218  buf, nal_size)) < 0)
219  goto fail;
220  ctx->new_idr = 0;
221  /* if only SPS has been seen, also insert PPS */
222  } else if (ctx->new_idr && unit_type == 5 && ctx->idr_sps_seen && !ctx->idr_pps_seen) {
223  if (ctx->pps_offset == -1) {
224  av_log(avctx, AV_LOG_WARNING, "PPS not present in the stream, nor in AVCC, stream may be unreadable\n");
225  if ((ret = alloc_and_copy(poutbuf, poutbuf_size,
226  NULL, 0, buf, nal_size)) < 0)
227  goto fail;
228  } else if ((ret = alloc_and_copy(poutbuf, poutbuf_size,
229  avctx->extradata + ctx->pps_offset, avctx->extradata_size - ctx->pps_offset,
230  buf, nal_size)) < 0)
231  goto fail;
232  } else {
233  if ((ret=alloc_and_copy(poutbuf, poutbuf_size,
234  NULL, 0, buf, nal_size)) < 0)
235  goto fail;
236  if (!ctx->new_idr && unit_type == 1) {
237  ctx->new_idr = 1;
238  ctx->idr_sps_seen = 0;
239  ctx->idr_pps_seen = 0;
240  }
241  }
242 
243 next_nal:
244  buf += nal_size;
245  cumul_size += nal_size + ctx->length_size;
246  } while (cumul_size < buf_size);
247 
248  return 1;
249 
250 fail:
251  av_freep(poutbuf);
252  *poutbuf_size = 0;
253  return ret;
254 }
255 
257  .name = "h264_mp4toannexb",
258  .priv_data_size = sizeof(H264BSFContext),
260 };
#define NULL
Definition: coverity.c:32
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
memory handling functions
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
Definition: bytestream.h:85
static int h264_extradata_to_annexb(H264BSFContext *ctx, AVCodecContext *avctx, const int padding)
uint8_t
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1355
const char * name
Definition: avcodec.h:5082
int av_reallocp(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:185
#define av_log(a,...)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static int h264_mp4toannexb_filter(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe)
#define AVERROR(e)
Definition: error.h:43
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
Libavcodec external API header.
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:630
ret
Definition: avfilter.c:974
int32_t
main external API structure.
Definition: avcodec.h:1241
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
void * buf
Definition: avisynth_c.h:553
int extradata_size
Definition: avcodec.h:1356
#define AV_WB32(p, v)
Definition: intreadwrite.h:419
static void filter(MpegAudioContext *s, int ch, const short *samples, int incr)
#define av_free(p)
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
#define av_freep(p)
static int alloc_and_copy(uint8_t **poutbuf, int *poutbuf_size, const uint8_t *sps_pps, uint32_t sps_pps_size, const uint8_t *in, uint32_t in_size)
AVBitStreamFilter ff_h264_mp4toannexb_bsf