2013-05-23 19:23:32 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
* Copyright (c) 2013 Stefano Pigozzi <stefano.pigozzi@gmail.com>
|
|
|
|
*
|
Relicense some non-MPlayer source files to LGPL 2.1 or later
This covers source files which were added in mplayer2 and mpv times
only, and where all code is covered by LGPL relicensing agreements.
There are probably more files to which this applies, but I'm being
conservative here.
A file named ao_sdl.c exists in MPlayer too, but the mpv one is a
complete rewrite, and was added some time after the original ao_sdl.c
was removed. The same applies to vo_sdl.c, for which the SDL2 API is
radically different in addition (MPlayer supports SDL 1.2 only).
common.c contains only code written by me. But common.h is a strange
case: although it originally was named mp_common.h and exists in MPlayer
too, by now it contains only definitions written by uau and me. The
exceptions are the CONTROL_ defines - thus not changing the license of
common.h yet.
codec_tags.c contained once large tables generated from MPlayer's
codecs.conf, but all of these tables were removed.
From demux_playlist.c I'm removing a code fragment from someone who was
not asked; this probably could be done later (see commit 15dccc37).
misc.c is a bit complicated to reason about (it was split off mplayer.c
and thus contains random functions out of this file), but actually all
functions have been added post-MPlayer. Except get_relative_time(),
which was written by uau, but looks similar to 3 different versions of
something similar in each of the Unix/win32/OSX timer source files. I'm
not sure what that means in regards to copyright, so I've just moved it
into another still-GPL source file for now.
screenshot.c once had some minor parts of MPlayer's vf_screenshot.c, but
they're all gone.
2016-01-19 17:36:06 +00:00
|
|
|
* mpv 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.
|
2013-05-23 19:23:32 +00:00
|
|
|
*
|
|
|
|
* mpv 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
|
Relicense some non-MPlayer source files to LGPL 2.1 or later
This covers source files which were added in mplayer2 and mpv times
only, and where all code is covered by LGPL relicensing agreements.
There are probably more files to which this applies, but I'm being
conservative here.
A file named ao_sdl.c exists in MPlayer too, but the mpv one is a
complete rewrite, and was added some time after the original ao_sdl.c
was removed. The same applies to vo_sdl.c, for which the SDL2 API is
radically different in addition (MPlayer supports SDL 1.2 only).
common.c contains only code written by me. But common.h is a strange
case: although it originally was named mp_common.h and exists in MPlayer
too, by now it contains only definitions written by uau and me. The
exceptions are the CONTROL_ defines - thus not changing the license of
common.h yet.
codec_tags.c contained once large tables generated from MPlayer's
codecs.conf, but all of these tables were removed.
From demux_playlist.c I'm removing a code fragment from someone who was
not asked; this probably could be done later (see commit 15dccc37).
misc.c is a bit complicated to reason about (it was split off mplayer.c
and thus contains random functions out of this file), but actually all
functions have been added post-MPlayer. Except get_relative_time(),
which was written by uau, but looks similar to 3 different versions of
something similar in each of the Unix/win32/OSX timer source files. I'm
not sure what that means in regards to copyright, so I've just moved it
into another still-GPL source file for now.
screenshot.c once had some minor parts of MPlayer's vf_screenshot.c, but
they're all gone.
2016-01-19 17:36:06 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2013-05-23 19:23:32 +00:00
|
|
|
*
|
Relicense some non-MPlayer source files to LGPL 2.1 or later
This covers source files which were added in mplayer2 and mpv times
only, and where all code is covered by LGPL relicensing agreements.
There are probably more files to which this applies, but I'm being
conservative here.
A file named ao_sdl.c exists in MPlayer too, but the mpv one is a
complete rewrite, and was added some time after the original ao_sdl.c
was removed. The same applies to vo_sdl.c, for which the SDL2 API is
radically different in addition (MPlayer supports SDL 1.2 only).
common.c contains only code written by me. But common.h is a strange
case: although it originally was named mp_common.h and exists in MPlayer
too, by now it contains only definitions written by uau and me. The
exceptions are the CONTROL_ defines - thus not changing the license of
common.h yet.
codec_tags.c contained once large tables generated from MPlayer's
codecs.conf, but all of these tables were removed.
From demux_playlist.c I'm removing a code fragment from someone who was
not asked; this probably could be done later (see commit 15dccc37).
misc.c is a bit complicated to reason about (it was split off mplayer.c
and thus contains random functions out of this file), but actually all
functions have been added post-MPlayer. Except get_relative_time(),
which was written by uau, but looks similar to 3 different versions of
something similar in each of the Unix/win32/OSX timer source files. I'm
not sure what that means in regards to copyright, so I've just moved it
into another still-GPL source file for now.
screenshot.c once had some minor parts of MPlayer's vf_screenshot.c, but
they're all gone.
2016-01-19 17:36:06 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2013-05-23 19:23:32 +00:00
|
|
|
*/
|
|
|
|
|
2016-09-07 09:26:25 +00:00
|
|
|
#ifndef MP_ATOMIC_H
|
|
|
|
#define MP_ATOMIC_H
|
2013-05-23 19:23:32 +00:00
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#include <inttypes.h>
|
2013-12-30 15:33:50 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#if HAVE_STDATOMIC
|
|
|
|
#include <stdatomic.h>
|
2017-11-30 00:14:33 +00:00
|
|
|
typedef _Atomic float mp_atomic_float;
|
2021-11-25 07:09:56 +00:00
|
|
|
typedef _Atomic double mp_atomic_double;
|
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.)
2018-04-16 20:23:08 +00:00
|
|
|
typedef _Atomic int64_t mp_atomic_int64;
|
2019-11-28 18:23:02 +00:00
|
|
|
typedef _Atomic uint64_t mp_atomic_uint64;
|
2014-05-20 23:04:47 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
// Emulate the parts of C11 stdatomic.h needed by mpv.
|
|
|
|
|
2017-02-13 05:45:40 +00:00
|
|
|
typedef struct { unsigned long v; } atomic_ulong;
|
|
|
|
typedef struct { int v; } atomic_int;
|
|
|
|
typedef struct { unsigned int v; } atomic_uint;
|
|
|
|
typedef struct { _Bool v; } atomic_bool;
|
|
|
|
typedef struct { long long v; } atomic_llong;
|
|
|
|
typedef struct { uint_least32_t v; } atomic_uint_least32_t;
|
|
|
|
typedef struct { unsigned long long v; } atomic_ullong;
|
2014-05-20 23:04:47 +00:00
|
|
|
|
2017-11-30 00:14:33 +00:00
|
|
|
typedef struct { float v; } mp_atomic_float;
|
2021-11-25 07:09:56 +00:00
|
|
|
typedef struct { double v; } mp_atomic_double;
|
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.)
2018-04-16 20:23:08 +00:00
|
|
|
typedef struct { int64_t v; } mp_atomic_int64;
|
2019-11-28 18:23:02 +00:00
|
|
|
typedef struct { uint64_t v; } mp_atomic_uint64;
|
2017-11-30 00:14:33 +00:00
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#define ATOMIC_VAR_INIT(x) \
|
|
|
|
{.v = (x)}
|
2014-05-20 23:27:54 +00:00
|
|
|
|
2015-03-02 18:09:31 +00:00
|
|
|
#define memory_order_relaxed 1
|
|
|
|
#define memory_order_seq_cst 2
|
2020-03-05 20:14:58 +00:00
|
|
|
#define memory_order_acq_rel 3
|
2015-03-02 18:09:31 +00:00
|
|
|
|
2016-09-06 18:13:30 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
extern pthread_mutex_t mp_atomic_mutex;
|
|
|
|
|
|
|
|
#define atomic_load(p) \
|
|
|
|
({ __typeof__(p) p_ = (p); \
|
|
|
|
pthread_mutex_lock(&mp_atomic_mutex); \
|
2018-02-21 10:46:39 +00:00
|
|
|
__typeof__(p_->v) v_ = p_->v; \
|
2016-09-06 18:13:30 +00:00
|
|
|
pthread_mutex_unlock(&mp_atomic_mutex); \
|
2018-02-21 10:46:39 +00:00
|
|
|
v_; })
|
2016-09-06 18:13:30 +00:00
|
|
|
#define atomic_store(p, val) \
|
|
|
|
({ __typeof__(val) val_ = (val); \
|
|
|
|
__typeof__(p) p_ = (p); \
|
|
|
|
pthread_mutex_lock(&mp_atomic_mutex); \
|
|
|
|
p_->v = val_; \
|
|
|
|
pthread_mutex_unlock(&mp_atomic_mutex); })
|
|
|
|
#define atomic_fetch_op(a, b, op) \
|
|
|
|
({ __typeof__(a) a_ = (a); \
|
|
|
|
__typeof__(b) b_ = (b); \
|
|
|
|
pthread_mutex_lock(&mp_atomic_mutex); \
|
2018-02-21 10:46:39 +00:00
|
|
|
__typeof__(a_->v) v_ = a_->v; \
|
|
|
|
a_->v = v_ op b_; \
|
2016-09-06 18:13:30 +00:00
|
|
|
pthread_mutex_unlock(&mp_atomic_mutex); \
|
2018-02-21 10:46:39 +00:00
|
|
|
v_; })
|
2016-09-06 18:13:30 +00:00
|
|
|
#define atomic_fetch_add(a, b) atomic_fetch_op(a, b, +)
|
|
|
|
#define atomic_fetch_and(a, b) atomic_fetch_op(a, b, &)
|
|
|
|
#define atomic_fetch_or(a, b) atomic_fetch_op(a, b, |)
|
2018-02-21 10:47:12 +00:00
|
|
|
#define atomic_exchange(p, new) \
|
|
|
|
({ __typeof__(p) p_ = (p); \
|
|
|
|
pthread_mutex_lock(&mp_atomic_mutex); \
|
|
|
|
__typeof__(p_->v) res_ = p_->v; \
|
|
|
|
p_->v = (new); \
|
|
|
|
pthread_mutex_unlock(&mp_atomic_mutex); \
|
|
|
|
res_; })
|
2016-09-06 18:13:30 +00:00
|
|
|
#define atomic_compare_exchange_strong(p, old, new) \
|
|
|
|
({ __typeof__(p) p_ = (p); \
|
|
|
|
__typeof__(old) old_ = (old); \
|
|
|
|
__typeof__(new) new_ = (new); \
|
|
|
|
pthread_mutex_lock(&mp_atomic_mutex); \
|
2018-02-21 10:46:39 +00:00
|
|
|
int res_ = p_->v == *old_; \
|
|
|
|
if (res_) { \
|
2016-09-06 18:13:30 +00:00
|
|
|
p_->v = new_; \
|
|
|
|
} else { \
|
|
|
|
*old_ = p_->v; \
|
|
|
|
} \
|
|
|
|
pthread_mutex_unlock(&mp_atomic_mutex); \
|
2018-02-21 10:46:39 +00:00
|
|
|
res_; })
|
2016-09-06 18:13:30 +00:00
|
|
|
|
2020-03-05 20:14:58 +00:00
|
|
|
#define atomic_load_explicit(a, b) \
|
|
|
|
atomic_load(a)
|
|
|
|
|
|
|
|
#define atomic_exchange_explicit(a, b, c) \
|
|
|
|
atomic_exchange(a, b)
|
|
|
|
|
2014-05-20 23:04:47 +00:00
|
|
|
#endif /* else HAVE_STDATOMIC */
|
|
|
|
|
|
|
|
#endif
|