Mercurial > mplayer.hg
comparison libmpdemux/demuxer.c @ 26758:9fb1d2c3dbd4
cosmetics: Remove pointless parentheses from return statements.
author | diego |
---|---|
date | Fri, 16 May 2008 09:41:00 +0000 |
parents | 2735c113ed62 |
children | a90971b955af |
comparison
equal
deleted
inserted
replaced
26757:0fdf04b07ecb | 26758:9fb1d2c3dbd4 |
---|---|
1234 *chapter_name = tmp; | 1234 *chapter_name = tmp; |
1235 } | 1235 } |
1236 } | 1236 } |
1237 } | 1237 } |
1238 | 1238 |
1239 return (ris != STREAM_UNSUPPORTED ? chapter : -1); | 1239 return ris != STREAM_UNSUPPORTED ? chapter : -1; |
1240 } else { //chapters structure is set in the demuxer | 1240 } else { //chapters structure is set in the demuxer |
1241 total = demuxer->num_chapters; | 1241 total = demuxer->num_chapters; |
1242 | 1242 |
1243 if (mode==1) { //absolute seeking | 1243 if (mode==1) { //absolute seeking |
1244 current = chapter; | 1244 current = chapter; |