aboutsummaryrefslogtreecommitdiffhomepage
path: root/demux/packet.c
diff options
context:
space:
mode:
authorGravatar wm4 <wm4@nowhere>2018-04-16 22:23:08 +0200
committerGravatar Jan Ekström <jeebjp@gmail.com>2018-04-18 01:17:42 +0300
commite7e06a47a0b5626c3abe81f3627d10ed58d92d3b (patch)
tree96384e5dca32219b722aa5f717a716be1010c32e /demux/packet.c
parent020730da0bcc467afee8ff9861fcc9116372003b (diff)
demux: support for some kinds of timed metadata
This makes ICY title changes show up at approximately the correct time, even if the demuxer buffer is huge. (It'll still be wrong if the stream byte cache contains a meaningful amount of data.) It should have the same effect for mid-stream metadata changes in e.g. OGG (untested). This is still somewhat fishy, but in parts due to ICY being fishy, and FFmpeg's metadata change API being somewhat fishy. For example, what happens if you seek? With FFmpeg AVFMT_EVENT_FLAG_METADATA_UPDATED and AVSTREAM_EVENT_FLAG_METADATA_UPDATED we hope that FFmpeg will correctly restore the correct metadata when the first packet is returned. If you seke with ICY, we're out of luck, and some audio will be associated with the wrong tag until we get a new title through ICY metadata update at an essentially random point (it's mostly inherent to ICY). Then the tags will switch back and forth, and this behavior will stick with the data stored in the demuxer cache. Fortunately, this can happen only if the HTTP stream is actually seekable, which it usually is not for ICY things. Seeking doesn't even make sense with ICY, since you can't know the exact metadata location. Basically ICY metsdata sucks. Some complexity is due to a microoptimization: I didn't want additional atomic accesses for each packet if no timed metadata is used. (It probably doesn't matter at all.)
Diffstat (limited to 'demux/packet.c')
-rw-r--r--demux/packet.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/demux/packet.c b/demux/packet.c
index 83aee6801a..155e4d7f15 100644
--- a/demux/packet.c
+++ b/demux/packet.c
@@ -27,6 +27,7 @@
#include "common/av_common.h"
#include "common/common.h"
+#include "demux.h"
#include "packet.h"
@@ -34,6 +35,7 @@ static void packet_destroy(void *ptr)
{
struct demux_packet *dp = ptr;
av_packet_unref(dp->avpacket);
+ mp_packet_tags_unref(dp->metadata);
}
// This actually preserves only data and side data, not PTS/DTS/pos/etc.
@@ -129,6 +131,7 @@ void demux_packet_copy_attribs(struct demux_packet *dst, struct demux_packet *sr
dst->codec = src->codec;
dst->keyframe = src->keyframe;
dst->stream = src->stream;
+ mp_packet_tags_setref(&dst->metadata, src->metadata);
}
struct demux_packet *demux_copy_packet(struct demux_packet *dp)