diff mbox

[FFmpeg-devel,14/23] avformat/matroskaenc: Remove outdated comment

Message ID 20191106024922.19228-14-andreas.rheinhardt@gmail.com
State Accepted
Commit 6eb88daed1052ed369956dd1d510640e38de3860
Headers show

Commit Message

Andreas Rheinhardt Nov. 6, 2019, 2:49 a.m. UTC
This comment does not account for the fact that the limits on cluster
size and duration are configurable by the user since 98308bd4.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavformat/matroskaenc.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Michael Niedermayer Nov. 24, 2019, 3:02 p.m. UTC | #1
On Wed, Nov 06, 2019 at 03:49:13AM +0100, Andreas Rheinhardt wrote:
> This comment does not account for the fact that the limits on cluster
> size and duration are configurable by the user since 98308bd4.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
> ---
>  libavformat/matroskaenc.c | 2 --
>  1 file changed, 2 deletions(-)

will apply

thx

[...]
diff mbox

Patch

diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index bc94ed53ae..39ad5d1ccf 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -2360,8 +2360,6 @@  static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
         cluster_time = pkt->pts - mkv->cluster_pts;
     cluster_time += mkv->tracks[pkt->stream_index].ts_offset;
 
-    // start a new cluster every 5 MB or 5 sec, or 32k / 1 sec for streaming or
-    // after 4k and on a keyframe
     cluster_size = avio_tell(mkv->cluster_bc);
 
     if (mkv->is_dash && codec_type == AVMEDIA_TYPE_VIDEO) {