summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-04 23:25:11 +0200
committerwm4 <wm4@nowhere>2014-09-05 01:53:10 +0200
commit787839e8ec54cae08e9a590d962e6b4235fd8ce2 (patch)
treedac61fc68ba7c2a07e03aabe5df000041c2944d6
parentb5181422369ef3e5773c7e15ab3004006322d065 (diff)
downloadmpv-787839e8ec54cae08e9a590d962e6b4235fd8ce2.tar.bz2
mpv-787839e8ec54cae08e9a590d962e6b4235fd8ce2.tar.xz
cosmetics: remove a stray ';'
-rw-r--r--player/audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/audio.c b/player/audio.c
index e3d3d57bd1..67ac16a2be 100644
--- a/player/audio.c
+++ b/player/audio.c
@@ -224,7 +224,7 @@ double written_audio_pts(struct MPContext *mpctx)
mp_audio_buffer_get_format(d_audio->decode_buffer, &in_format);
if (!mp_audio_config_valid(&in_format) || !d_audio->afilter)
- return MP_NOPTS_VALUE;;
+ return MP_NOPTS_VALUE;
// first calculate the end pts of audio that has been output by decoder
double a_pts = d_audio->pts;