diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-07-02 20:20:57 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-07-02 20:20:57 +0000 |
commit | c43042a7d4b2dde0936ded278ce94be436390ba8 (patch) | |
tree | 079afb7a16fad5b737f433b8c6b00e1f2f1a2e2a | |
parent | 37cdf93d6edd8887b95d969523b54f699657745b (diff) | |
download | ffmpeg-c43042a7d4b2dde0936ded278ce94be436390ba8.tar.gz |
100l fix by (Wolfram Gloger <wmglo at dent dot med dot uni-muenchen dot de>)
Originally committed as revision 3286 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -520,7 +520,7 @@ static void do_audio_out(AVFormatContext *s, AVPacket pkt; av_init_packet(&pkt); - ost->sync_opts += size_out / enc->channels; + ost->sync_opts += size_out / (2 * enc->channels); /* output a pcm frame */ /* XXX: change encoding codec API to avoid this ? */ |