mirror of
https://github.com/mpv-player/mpv
synced 2025-02-27 02:40:53 +00:00
cosmetics: Remove useless parentheses, align.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27091 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3e081f4563
commit
437b206595
@ -449,9 +449,9 @@ int ds_fill_buffer(demux_stream_t *ds)
|
||||
demux_packet_t *p = ds->first;
|
||||
#if 0
|
||||
if (demux->reference_clock != MP_NOPTS_VALUE) {
|
||||
if ((p->pts != MP_NOPTS_VALUE)
|
||||
&& (p->pts > demux->reference_clock)
|
||||
&& (ds->packs < MAX_ACUMULATED_PACKETS)) {
|
||||
if ( p->pts != MP_NOPTS_VALUE
|
||||
&& p->pts > demux->reference_clock
|
||||
&& ds->packs < MAX_ACUMULATED_PACKETS) {
|
||||
if (demux_fill_buffer(demux, ds))
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user