mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
29d147c94d
* commit '059a934806d61f7af9ab3fd9f74994b838ea5eba': lavc: Consistently prefix input buffer defines Conflicts: doc/examples/decoding_encoding.c libavcodec/4xm.c libavcodec/aac_adtstoasc_bsf.c libavcodec/aacdec.c libavcodec/aacenc.c libavcodec/ac3dec.h libavcodec/asvenc.c libavcodec/avcodec.h libavcodec/avpacket.c libavcodec/dvdec.c libavcodec/ffv1enc.c libavcodec/g2meet.c libavcodec/gif.c libavcodec/h264.c libavcodec/h264_mp4toannexb_bsf.c libavcodec/huffyuvdec.c libavcodec/huffyuvenc.c libavcodec/jpeglsenc.c libavcodec/libxvid.c libavcodec/mdec.c libavcodec/motionpixels.c libavcodec/mpeg4videodec.c libavcodec/mpegvideo.c libavcodec/noise_bsf.c libavcodec/nuv.c libavcodec/nvenc.c libavcodec/options.c libavcodec/parser.c libavcodec/pngenc.c libavcodec/proresenc_kostya.c libavcodec/qsvdec.c libavcodec/svq1enc.c libavcodec/tiffenc.c libavcodec/truemotion2.c libavcodec/utils.c libavcodec/utvideoenc.c libavcodec/vc1dec.c libavcodec/wmalosslessdec.c libavformat/adxdec.c libavformat/aiffdec.c libavformat/apc.c libavformat/apetag.c libavformat/avidec.c libavformat/bink.c libavformat/cafdec.c libavformat/flvdec.c libavformat/id3v2.c libavformat/isom.c libavformat/matroskadec.c libavformat/mov.c libavformat/mpc.c libavformat/mpc8.c libavformat/mpegts.c libavformat/mvi.c libavformat/mxfdec.c libavformat/mxg.c libavformat/nutdec.c libavformat/oggdec.c libavformat/oggparsecelt.c libavformat/oggparseflac.c libavformat/oggparseopus.c libavformat/oggparsespeex.c libavformat/omadec.c libavformat/rawdec.c libavformat/riffdec.c libavformat/rl2.c libavformat/rmdec.c libavformat/rtpdec_latm.c libavformat/rtpdec_mpeg4.c libavformat/rtpdec_qdm2.c libavformat/rtpdec_svq3.c libavformat/sierravmd.c libavformat/smacker.c libavformat/smush.c libavformat/spdifenc.c libavformat/takdec.c libavformat/tta.c libavformat/utils.c libavformat/vqf.c libavformat/westwood_vqa.c libavformat/xmv.c libavformat/xwma.c libavformat/yop.c Merged-by: Michael Niedermayer <michael@niedermayer.cc>
174 lines
5.3 KiB
C
174 lines
5.3 KiB
C
/*
|
|
* RTP Depacketization of MP4A-LATM, RFC 3016
|
|
* Copyright (c) 2010 Martin Storsjo
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "avio_internal.h"
|
|
#include "rtpdec_formats.h"
|
|
#include "internal.h"
|
|
#include "libavutil/avstring.h"
|
|
#include "libavcodec/get_bits.h"
|
|
|
|
struct PayloadContext {
|
|
AVIOContext *dyn_buf;
|
|
uint8_t *buf;
|
|
int pos, len;
|
|
uint32_t timestamp;
|
|
};
|
|
|
|
static void latm_close_context(PayloadContext *data)
|
|
{
|
|
ffio_free_dyn_buf(&data->dyn_buf);
|
|
av_freep(&data->buf);
|
|
}
|
|
|
|
static int latm_parse_packet(AVFormatContext *ctx, PayloadContext *data,
|
|
AVStream *st, AVPacket *pkt, uint32_t *timestamp,
|
|
const uint8_t *buf, int len, uint16_t seq,
|
|
int flags)
|
|
{
|
|
int ret, cur_len;
|
|
|
|
if (buf) {
|
|
if (!data->dyn_buf || data->timestamp != *timestamp) {
|
|
av_freep(&data->buf);
|
|
ffio_free_dyn_buf(&data->dyn_buf);
|
|
|
|
data->timestamp = *timestamp;
|
|
if ((ret = avio_open_dyn_buf(&data->dyn_buf)) < 0)
|
|
return ret;
|
|
}
|
|
avio_write(data->dyn_buf, buf, len);
|
|
|
|
if (!(flags & RTP_FLAG_MARKER))
|
|
return AVERROR(EAGAIN);
|
|
av_freep(&data->buf);
|
|
data->len = avio_close_dyn_buf(data->dyn_buf, &data->buf);
|
|
data->dyn_buf = NULL;
|
|
data->pos = 0;
|
|
}
|
|
|
|
if (!data->buf) {
|
|
av_log(ctx, AV_LOG_ERROR, "No data available yet\n");
|
|
return AVERROR(EIO);
|
|
}
|
|
|
|
cur_len = 0;
|
|
while (data->pos < data->len) {
|
|
uint8_t val = data->buf[data->pos++];
|
|
cur_len += val;
|
|
if (val != 0xff)
|
|
break;
|
|
}
|
|
if (data->pos + cur_len > data->len) {
|
|
av_log(ctx, AV_LOG_ERROR, "Malformed LATM packet\n");
|
|
return AVERROR(EIO);
|
|
}
|
|
|
|
if ((ret = av_new_packet(pkt, cur_len)) < 0)
|
|
return ret;
|
|
memcpy(pkt->data, data->buf + data->pos, cur_len);
|
|
data->pos += cur_len;
|
|
pkt->stream_index = st->index;
|
|
return data->pos < data->len;
|
|
}
|
|
|
|
static int parse_fmtp_config(AVStream *st, const char *value)
|
|
{
|
|
int len = ff_hex_to_data(NULL, value), i, ret = 0;
|
|
GetBitContext gb;
|
|
uint8_t *config;
|
|
int audio_mux_version, same_time_framing, num_programs, num_layers;
|
|
|
|
/* Pad this buffer, too, to avoid out of bounds reads with get_bits below */
|
|
config = av_mallocz(len + AV_INPUT_BUFFER_PADDING_SIZE);
|
|
if (!config)
|
|
return AVERROR(ENOMEM);
|
|
ff_hex_to_data(config, value);
|
|
init_get_bits(&gb, config, len*8);
|
|
audio_mux_version = get_bits(&gb, 1);
|
|
same_time_framing = get_bits(&gb, 1);
|
|
skip_bits(&gb, 6); /* num_sub_frames */
|
|
num_programs = get_bits(&gb, 4);
|
|
num_layers = get_bits(&gb, 3);
|
|
if (audio_mux_version != 0 || same_time_framing != 1 || num_programs != 0 ||
|
|
num_layers != 0) {
|
|
av_log(NULL, AV_LOG_WARNING, "Unsupported LATM config (%d,%d,%d,%d)\n",
|
|
audio_mux_version, same_time_framing,
|
|
num_programs, num_layers);
|
|
ret = AVERROR_PATCHWELCOME;
|
|
goto end;
|
|
}
|
|
av_freep(&st->codec->extradata);
|
|
if (ff_alloc_extradata(st->codec, (get_bits_left(&gb) + 7)/8)) {
|
|
ret = AVERROR(ENOMEM);
|
|
goto end;
|
|
}
|
|
for (i = 0; i < st->codec->extradata_size; i++)
|
|
st->codec->extradata[i] = get_bits(&gb, 8);
|
|
|
|
end:
|
|
av_free(config);
|
|
return ret;
|
|
}
|
|
|
|
static int parse_fmtp(AVFormatContext *s,
|
|
AVStream *stream, PayloadContext *data,
|
|
const char *attr, const char *value)
|
|
{
|
|
int res;
|
|
|
|
if (!strcmp(attr, "config")) {
|
|
res = parse_fmtp_config(stream, value);
|
|
if (res < 0)
|
|
return res;
|
|
} else if (!strcmp(attr, "cpresent")) {
|
|
int cpresent = atoi(value);
|
|
if (cpresent != 0)
|
|
avpriv_request_sample(s,
|
|
"RTP MP4A-LATM with in-band configuration");
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int latm_parse_sdp_line(AVFormatContext *s, int st_index,
|
|
PayloadContext *data, const char *line)
|
|
{
|
|
const char *p;
|
|
|
|
if (st_index < 0)
|
|
return 0;
|
|
|
|
if (av_strstart(line, "fmtp:", &p))
|
|
return ff_parse_fmtp(s, s->streams[st_index], data, p, parse_fmtp);
|
|
|
|
return 0;
|
|
}
|
|
|
|
RTPDynamicProtocolHandler ff_mp4a_latm_dynamic_handler = {
|
|
.enc_name = "MP4A-LATM",
|
|
.codec_type = AVMEDIA_TYPE_AUDIO,
|
|
.codec_id = AV_CODEC_ID_AAC,
|
|
.priv_data_size = sizeof(PayloadContext),
|
|
.parse_sdp_a_line = latm_parse_sdp_line,
|
|
.close = latm_close_context,
|
|
.parse_packet = latm_parse_packet,
|
|
};
|