Commit 9bf3d01d authored by James Almer's avatar James Almer

avformat/latmenc: auto-insert aac_adtstoasc bitstream filter when needed

Reviewed-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent a35a4a57
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include "libavcodec/mpeg4audio.h" #include "libavcodec/mpeg4audio.h"
#include "libavutil/opt.h" #include "libavutil/opt.h"
#include "avformat.h" #include "avformat.h"
#include "internal.h"
#include "rawenc.h" #include "rawenc.h"
#define MAX_EXTRADATA_SIZE 1024 #define MAX_EXTRADATA_SIZE 1024
...@@ -153,11 +154,6 @@ static int latm_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -153,11 +154,6 @@ static int latm_write_packet(AVFormatContext *s, AVPacket *pkt)
if (s->streams[0]->codec->codec_id == AV_CODEC_ID_AAC_LATM) if (s->streams[0]->codec->codec_id == AV_CODEC_ID_AAC_LATM)
return ff_raw_write_packet(s, pkt); return ff_raw_write_packet(s, pkt);
if (pkt->size > 2 && pkt->data[0] == 0xff && (pkt->data[1] >> 4) == 0xf) {
av_log(s, AV_LOG_ERROR, "ADTS header detected - ADTS will not be incorrectly muxed into LATM\n");
return AVERROR_INVALIDDATA;
}
if (!s->streams[0]->codec->extradata) { if (!s->streams[0]->codec->extradata) {
if(pkt->size > 2 && pkt->data[0] == 0x56 && (pkt->data[1] >> 4) == 0xe && if(pkt->size > 2 && pkt->data[0] == 0x56 && (pkt->data[1] >> 4) == 0xe &&
(AV_RB16(pkt->data + 1) & 0x1FFF) + 3 == pkt->size) (AV_RB16(pkt->data + 1) & 0x1FFF) + 3 == pkt->size)
...@@ -217,6 +213,19 @@ too_large: ...@@ -217,6 +213,19 @@ too_large:
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
static int latm_check_bitstream(struct AVFormatContext *s, const AVPacket *pkt)
{
int ret = 1;
AVStream *st = s->streams[pkt->stream_index];
if (st->codec->codec_id == AV_CODEC_ID_AAC) {
if (pkt->size > 2 && (AV_RB16(pkt->data) & 0xfff0) == 0xfff0)
ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
}
return ret;
}
AVOutputFormat ff_latm_muxer = { AVOutputFormat ff_latm_muxer = {
.name = "latm", .name = "latm",
.long_name = NULL_IF_CONFIG_SMALL("LOAS/LATM"), .long_name = NULL_IF_CONFIG_SMALL("LOAS/LATM"),
...@@ -228,5 +237,6 @@ AVOutputFormat ff_latm_muxer = { ...@@ -228,5 +237,6 @@ AVOutputFormat ff_latm_muxer = {
.write_header = latm_write_header, .write_header = latm_write_header,
.write_packet = latm_write_packet, .write_packet = latm_write_packet,
.priv_class = &latm_muxer_class, .priv_class = &latm_muxer_class,
.check_bitstream= latm_check_bitstream,
.flags = AVFMT_NOTIMESTAMPS, .flags = AVFMT_NOTIMESTAMPS,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment