summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-04-16 22:23:08 +0200
committerJan Ekström <jeebjp@gmail.com>2018-04-18 01:17:42 +0300
commite7e06a47a0b5626c3abe81f3627d10ed58d92d3b (patch)
tree96384e5dca32219b722aa5f717a716be1010c32e /osdep
parent020730da0bcc467afee8ff9861fcc9116372003b (diff)
downloadmpv-e7e06a47a0b5626c3abe81f3627d10ed58d92d3b.tar.bz2
mpv-e7e06a47a0b5626c3abe81f3627d10ed58d92d3b.tar.xz
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 'osdep')
-rw-r--r--osdep/atomic.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/osdep/atomic.h b/osdep/atomic.h
index 9e1c5be721..2c6868d518 100644
--- a/osdep/atomic.h
+++ b/osdep/atomic.h
@@ -25,6 +25,7 @@
#if HAVE_STDATOMIC
#include <stdatomic.h>
typedef _Atomic float mp_atomic_float;
+typedef _Atomic int64_t mp_atomic_int64;
#else
// Emulate the parts of C11 stdatomic.h needed by mpv.
@@ -38,6 +39,7 @@ typedef struct { uint_least32_t v; } atomic_uint_least32_t;
typedef struct { unsigned long long v; } atomic_ullong;
typedef struct { float v; } mp_atomic_float;
+typedef struct { int64_t v; } mp_atomic_int64;
#define ATOMIC_VAR_INIT(x) \
{.v = (x)}