]> git.sesse.net Git - ffmpeg/commitdiff
rtpenc: Fix the AVRational used for av_rescale_q_rnd
authorMartin Storsjö <martin@martin.st>
Wed, 7 Mar 2012 22:52:53 +0000 (00:52 +0200)
committerMartin Storsjö <martin@martin.st>
Wed, 7 Mar 2012 23:15:28 +0000 (01:15 +0200)
The current one has a zero denominator - this is what was
intended in 14aecc50fae6.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtpenc.c

index 787eba87b781213b03b78b61f5166490982c034b..5df25e4b8884bbbebf03c3beb91af182a524f7d0 100644 (file)
@@ -138,7 +138,7 @@ static int rtp_write_header(AVFormatContext *s1)
                 s->max_frames_per_packet =
                         av_rescale_q_rnd(s1->max_delay,
                                          AV_TIME_BASE_Q,
-                                         (AVRational){ frame_size / st->codec->sample_rate },
+                                         (AVRational){ frame_size, st->codec->sample_rate },
                                          AV_ROUND_DOWN);
             }
         }