Commit 32c3fa20 authored by Laurent Aimar's avatar Laurent Aimar

Used VLC_TS_0 in dirac demuxer.

parent 88518d3a
...@@ -176,12 +176,7 @@ static int Demux( demux_t *p_demux) ...@@ -176,12 +176,7 @@ static int Demux( demux_t *p_demux)
p_sys->i_state++; p_sys->i_state++;
/* by default, timestamps are invalid. /* by default, timestamps are invalid.
* Except when we need an anchor point */ * Except when we need an anchor point */
#if VLC_TS_INVALID == 0 p_block_in->i_dts = VLC_TS_0;
/* xxx: to be removed in 1.1 */
p_block_in->i_dts = 1;
#else
p_block_in->i_dts = 0;
#endif
} }
} }
......
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