30 const uint8_t *
a = p + 4 - ((intptr_t)p & 3);
32 for (end -= 3; p < a && p <
end; p++) {
33 if (p[0] == 0 && p[1] == 0 && p[2] == 1)
37 for (end -= 3; p <
end; p += 4) {
38 uint32_t x = *(
const uint32_t*)p;
41 if ((x - 0x01010101) & (~x) & 0x80808080) {
43 if (p[0] == 0 && p[2] == 1)
45 if (p[2] == 0 && p[3] == 1)
49 if (p[2] == 0 && p[4] == 1)
51 if (p[4] == 0 && p[5] == 1)
57 for (end += 3; p <
end; p++) {
58 if (p[0] == 0 && p[1] == 0 && p[2] == 1)
67 if(p<out && out<end && !out[-1]) out--;
75 const uint8_t *nal_start, *nal_end;
80 while (nal_start < end && !*(nal_start++));
86 avio_write(pb, nal_start, nal_end - nal_start);
87 size += 4 + nal_end - nal_start;
112 uint32_t sps_size = 0, pps_size = 0;
113 int ret, nb_sps = 0, nb_pps = 0;
119 if (
AV_RB32(data) != 0x00000001 &&
139 while (end - buf > 4) {
144 nal_type = buf[0] & 0x1f;
154 }
else if (nal_type == 8) {
169 if (sps_size < 6 || !pps_size) {
199 uint16_t sps_size, pps_size;
204 if (*size >= 4 && (
AV_RB32(in) == 0x00000001 ||
AV_RB24(in) == 0x000001))
206 if (*size < 11 || in[0] != 1)
210 if (11 + sps_size > *size)
212 pps_size =
AV_RB16(&in[9 + sps_size]);
213 if (11 + sps_size + pps_size > *size)
215 out_size = 8 + sps_size + pps_size;
220 memcpy(out + 4, &in[8], sps_size);
221 AV_WB32(&out[4 + sps_size], 0x00000001);
222 memcpy(out + 8 + sps_size, &in[11 + sps_size], pps_size);
232 unsigned int res = 0;
234 if (end - start < nal_length_size)
236 while (nal_length_size--)
237 res = (res << 8) | *start++;
239 if (res > end - start)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
const uint8_t * ff_avc_find_startcode(const uint8_t *p, const uint8_t *end)
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
static av_cold int end(AVCodecContext *avctx)
int ff_avc_write_annexb_extradata(const uint8_t *in, uint8_t **buf, int *size)
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
H.264 common definitions.
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int ff_avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size)
int ff_avc_parse_nal_units(AVIOContext *pb, const uint8_t *buf_in, int size)
static const uint8_t * ff_avc_find_startcode_internal(const uint8_t *p, const uint8_t *end)
void avio_w8(AVIOContext *s, int b)
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)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
static int FUNC() pps(CodedBitstreamContext *ctx, RWContext *rw, H264RawPPS *current)
const uint8_t * ff_avc_mp4_find_startcode(const uint8_t *start, const uint8_t *end, int nal_length_size)
static int FUNC() sps(CodedBitstreamContext *ctx, RWContext *rw, H264RawSPS *current)
void avio_wb16(AVIOContext *s, unsigned int val)
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
void avio_wb32(AVIOContext *s, unsigned int val)
int ff_isom_write_avcc(AVIOContext *pb, const uint8_t *data, int len)