[SCM] libav/experimental: rtpenc: base max_frames_per_packet on avg_frame_rate, not codec timebase

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:03:30 UTC 2014


The following commit has been merged in the experimental branch:
commit cfbdd7ffbd9fe14d110fd1bb89bf52f0f7bde016
Author: Anton Khirnov <anton at khirnov.net>
Date:   Thu May 29 07:58:35 2014 +0200

    rtpenc: base max_frames_per_packet on avg_frame_rate, not codec timebase
    
    Fall back to 1 (which is what is used for most cases anyway) when the
    framerate is not set.

diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c
index 83167eb..0027abd 100644
--- a/libavformat/rtpenc.c
+++ b/libavformat/rtpenc.c
@@ -165,7 +165,12 @@ static int rtp_write_header(AVFormatContext *s1)
         }
         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
             /* FIXME: We should round down here... */
-            s->max_frames_per_packet = av_rescale_q(s1->max_delay, (AVRational){1, 1000000}, st->codec->time_base);
+            if (st->avg_frame_rate.num > 0 && st->avg_frame_rate.den > 0) {
+                s->max_frames_per_packet = av_rescale_q(s1->max_delay,
+                                                        (AVRational){1, 1000000},
+                                                        av_inv_q(st->avg_frame_rate));
+            } else
+                s->max_frames_per_packet = 1;
         }
     }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list