diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-07-19 03:27:24 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-07-19 03:27:24 +0000 |
commit | 0fb6c620c0226e6c7c0ec711b153a892582e278a (patch) | |
tree | 3ab8e8c1d1777b3a35e3327fee66d5fc2458a896 /libavformat/oggenc.c | |
parent | 9b92ed7666a78b417cb7e98ca9a92c0dbab31df4 (diff) | |
download | ffmpeg-0fb6c620c0226e6c7c0ec711b153a892582e278a.tar.gz |
cosmetics, remove space
Originally committed as revision 14294 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggenc.c')
-rw-r--r-- | libavformat/oggenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index 717448851b..85ec628514 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -225,7 +225,7 @@ int ogg_interleave_per_granule(AVFormatContext *s, AVPacket *out, AVPacket *pkt, next_granule = av_rescale_q(next_pkt->pts + next_pkt->duration, st2->time_base, AV_TIME_BASE_Q); cur_granule = av_rescale_q(pkt->pts + pkt->duration, - st->time_base, AV_TIME_BASE_Q); + st->time_base, AV_TIME_BASE_Q); if (next_granule > cur_granule) break; next_point= &(*next_point)->next; |