Commit 6cf7153b authored by Petri Hintukainen's avatar Petri Hintukainen Committed by Jean-Baptiste Kempf

bluray: fix macros

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 1052ee78
...@@ -258,8 +258,8 @@ static int onIntfEvent(vlc_object_t *, char const *, ...@@ -258,8 +258,8 @@ static int onIntfEvent(vlc_object_t *, char const *,
static void blurayResetParser(demux_t *p_demux); static void blurayResetParser(demux_t *p_demux);
#define FROM_TICKS(a) (a*CLOCK_FREQ / INT64_C(90000)) #define FROM_TICKS(a) ((a)*CLOCK_FREQ / INT64_C(90000))
#define TO_TICKS(a) (a*INT64_C(90000)/CLOCK_FREQ) #define TO_TICKS(a) ((a)*INT64_C(90000)/CLOCK_FREQ)
#define CUR_LENGTH p_sys->pp_title[p_demux->info.i_title]->i_length #define CUR_LENGTH p_sys->pp_title[p_demux->info.i_title]->i_length
/* */ /* */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment