[vlc-commits] aout: define AOUT_RESTART_* as flags
Thomas Guillem
git at videolan.org
Mon Jul 17 13:53:52 CEST 2017
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Mon Jul 17 13:35:31 2017 +0200| [97b1d6bb0d9e161992a75b7e1842870f4ef0e8c5] | committer: Thomas Guillem
aout: define AOUT_RESTART_* as flags
These 2 defines are already used as flags in audio_output/dec.c
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=97b1d6bb0d9e161992a75b7e1842870f4ef0e8c5
---
include/vlc_aout.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/vlc_aout.h b/include/vlc_aout.h
index ecfd396207..c6688df531 100644
--- a/include/vlc_aout.h
+++ b/include/vlc_aout.h
@@ -217,8 +217,8 @@ static const uint32_t pi_vlc_chan_order_wg4[] =
AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0
};
-#define AOUT_RESTART_FILTERS 1
-#define AOUT_RESTART_OUTPUT 2
+#define AOUT_RESTART_FILTERS 0x1
+#define AOUT_RESTART_OUTPUT (AOUT_RESTART_FILTERS|0x2)
/*****************************************************************************
* Prototypes
More information about the vlc-commits
mailing list