oggdec: add support for proper demuxing of chained Opus files and streams

Part of this patch is based on Paul B Mahol's patch from last year.

This also allows for single-stream parameter/codec changes.
This commit is contained in:
Lynne 2020-04-28 12:25:46 +01:00
parent e983197cbc
commit 8296443a70
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
3 changed files with 26 additions and 19 deletions

View File

@ -178,6 +178,7 @@ static int ogg_reset(AVFormatContext *s)
if (start_pos <= s->internal->data_offset) { if (start_pos <= s->internal->data_offset) {
os->lastpts = 0; os->lastpts = 0;
} }
os->start_trimming = 0;
os->end_trimming = 0; os->end_trimming = 0;
av_freep(&os->new_metadata); av_freep(&os->new_metadata);
os->new_metadata_size = 0; os->new_metadata_size = 0;
@ -206,7 +207,8 @@ static const struct ogg_codec *ogg_find_codec(uint8_t *buf, int size)
* situation where a new audio stream spawn (identified with a new serial) and * situation where a new audio stream spawn (identified with a new serial) and
* must replace the previous one (track switch). * must replace the previous one (track switch).
*/ */
static int ogg_replace_stream(AVFormatContext *s, uint32_t serial, char *magic) static int ogg_replace_stream(AVFormatContext *s, uint32_t serial, char *magic,
int probing)
{ {
struct ogg *ogg = s->priv_data; struct ogg *ogg = s->priv_data;
struct ogg_stream *os; struct ogg_stream *os;
@ -220,24 +222,25 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial, char *magic)
/* Check for codecs */ /* Check for codecs */
codec = ogg_find_codec(magic, 8); codec = ogg_find_codec(magic, 8);
if (!codec) { if (!codec && !probing) {
av_log(s, AV_LOG_ERROR, "Cannot identify new stream\n"); av_log(s, AV_LOG_ERROR, "Cannot identify new stream\n");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
/* If the codec matches, then we assume its a replacement */ /* We only have a single stream anyway, so if there's a new stream with
for (i = 0; i < ogg->nstreams; i++) { * a different codec just replace it */
if (ogg->streams[i].codec == codec) os = &ogg->streams[0];
break;
}
/* Otherwise, create a new stream */
if (i >= ogg->nstreams)
return ogg_new_stream(s, serial);
os = &ogg->streams[i];
os->serial = serial; os->serial = serial;
os->codec = codec; os->codec = codec;
os->serial = serial;
os->lastpts = 0;
os->lastdts = 0;
os->start_trimming = 0;
os->end_trimming = 0;
/* Chained files have extradata as a new packet */
if (codec == &ff_opus_codec)
os->header = -1;
return i; return i;
} }
@ -294,7 +297,7 @@ static int data_packets_seen(const struct ogg *ogg)
return 0; return 0;
} }
static int ogg_read_page(AVFormatContext *s, int *sid) static int ogg_read_page(AVFormatContext *s, int *sid, int probing)
{ {
AVIOContext *bc = s->pb; AVIOContext *bc = s->pb;
struct ogg *ogg = s->priv_data; struct ogg *ogg = s->priv_data;
@ -417,7 +420,7 @@ static int ogg_read_page(AVFormatContext *s, int *sid)
/* CRC is correct so we can be 99% sure there's an actual change here */ /* CRC is correct so we can be 99% sure there's an actual change here */
if (idx < 0) { if (idx < 0) {
if (data_packets_seen(ogg)) if (data_packets_seen(ogg))
idx = ogg_replace_stream(s, serial, readout_buf); idx = ogg_replace_stream(s, serial, readout_buf, probing);
else else
idx = ogg_new_stream(s, serial); idx = ogg_new_stream(s, serial);
@ -492,7 +495,7 @@ static int ogg_packet(AVFormatContext *s, int *sid, int *dstart, int *dsize,
idx = ogg->curidx; idx = ogg->curidx;
while (idx < 0) { while (idx < 0) {
ret = ogg_read_page(s, &idx); ret = ogg_read_page(s, &idx, 0);
if (ret < 0) if (ret < 0)
return ret; return ret;
} }
@ -643,7 +646,7 @@ static int ogg_get_length(AVFormatContext *s)
avio_seek(s->pb, end, SEEK_SET); avio_seek(s->pb, end, SEEK_SET);
ogg->page_pos = -1; ogg->page_pos = -1;
while (!ogg_read_page(s, &i)) { while (!ogg_read_page(s, &i, 1)) {
if (ogg->streams[i].granule != -1 && ogg->streams[i].granule != 0 && if (ogg->streams[i].granule != -1 && ogg->streams[i].granule != 0 &&
ogg->streams[i].codec) { ogg->streams[i].codec) {
s->streams[i]->duration = s->streams[i]->duration =
@ -847,13 +850,15 @@ retry:
pkt->duration = os->pduration; pkt->duration = os->pduration;
pkt->pos = fpos; pkt->pos = fpos;
if (os->end_trimming) { if (os->start_trimming || os->end_trimming) {
uint8_t *side_data = av_packet_new_side_data(pkt, uint8_t *side_data = av_packet_new_side_data(pkt,
AV_PKT_DATA_SKIP_SAMPLES, AV_PKT_DATA_SKIP_SAMPLES,
10); 10);
if(!side_data) if(!side_data)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
AV_WL32(side_data + 0, os->start_trimming);
AV_WL32(side_data + 4, os->end_trimming); AV_WL32(side_data + 4, os->end_trimming);
os->start_trimming = 0;
os->end_trimming = 0; os->end_trimming = 0;
} }

View File

@ -84,6 +84,7 @@ struct ogg_stream {
int got_start; int got_start;
int got_data; ///< 1 if the stream got some data (non-initial packets), 0 otherwise int got_data; ///< 1 if the stream got some data (non-initial packets), 0 otherwise
int nb_header; ///< set to the number of parsed headers int nb_header; ///< set to the number of parsed headers
int start_trimming; ///< set the number of packets to drop from the start
int end_trimming; ///< set the number of packets to drop from the end int end_trimming; ///< set the number of packets to drop from the end
uint8_t *new_metadata; uint8_t *new_metadata;
unsigned int new_metadata_size; unsigned int new_metadata_size;

View File

@ -59,6 +59,7 @@ static int opus_header(AVFormatContext *avf, int idx)
priv->pre_skip = AV_RL16(packet + 10); priv->pre_skip = AV_RL16(packet + 10);
st->codecpar->initial_padding = priv->pre_skip; st->codecpar->initial_padding = priv->pre_skip;
os->start_trimming = priv->pre_skip;
/*orig_sample_rate = AV_RL32(packet + 12);*/ /*orig_sample_rate = AV_RL32(packet + 12);*/
/*gain = AV_RL16(packet + 16);*/ /*gain = AV_RL16(packet + 16);*/
/*channel_map = AV_RL8 (packet + 18);*/ /*channel_map = AV_RL8 (packet + 18);*/