diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-28 00:52:11 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-28 00:52:11 +0100 |
commit | d041f1251347551d828a11f084d6f125a63ae35a (patch) | |
tree | a13f872ddf0d481f0115ef06396c3ef0ffd9d455 | |
parent | b85bf3423c47670c0a86ddf63c856002bbdcd08f (diff) | |
download | ffmpeg-d041f1251347551d828a11f084d6f125a63ae35a.tar.gz |
avdevice/pulse_audio_enc: remove double ;
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavdevice/pulse_audio_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/pulse_audio_enc.c b/libavdevice/pulse_audio_enc.c index e0f23c8ee9..591e518824 100644 --- a/libavdevice/pulse_audio_enc.c +++ b/libavdevice/pulse_audio_enc.c @@ -109,7 +109,7 @@ static int pulse_write_packet(AVFormatContext *h, AVPacket *pkt) s->timestamp = pkt->dts; if (pkt->duration) { - s->timestamp += pkt->duration;; + s->timestamp += pkt->duration; } else { AVStream *st = h->streams[0]; AVCodecContext *codec_ctx = st->codec; |