You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
In gxf muxer, fix number of flt entries based on patch by Reuben Martin, reuben dot m at gmail dot com
Originally committed as revision 25399 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -365,7 +365,7 @@ static int gxf_write_flt_packet(AVFormatContext *s)
|
||||
ByteIOContext *pb = s->pb;
|
||||
int64_t pos = url_ftell(pb);
|
||||
int fields_per_flt = (gxf->nb_fields+1) / 1000 + 1;
|
||||
int flt_entries = gxf->nb_fields / fields_per_flt - 1;
|
||||
int flt_entries = gxf->nb_fields / fields_per_flt;
|
||||
int i = 0;
|
||||
|
||||
gxf_write_packet_header(pb, PKT_FLT);
|
||||
|
Reference in New Issue
Block a user