diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-22 20:43:28 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-26 06:36:43 +0100 |
commit | 56ba83ff2d7225189cee296b6a5c33ba6619e521 (patch) | |
tree | 48e407e5f7dc0fd6942056bee4461877e55e31c6 /libavformat | |
parent | 88f803cf64517c70e808420fddcba7bb1788645b (diff) | |
download | ffmpeg-56ba83ff2d7225189cee296b6a5c33ba6619e521.tar.gz |
avformat/fsb: Don't set data_offset manually
It is set generically to the value that it is to here.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/fsb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/fsb.c b/libavformat/fsb.c index 4189822d8e..0febeffd56 100644 --- a/libavformat/fsb.c +++ b/libavformat/fsb.c @@ -157,7 +157,6 @@ static int fsb_read_header(AVFormatContext *s) } avio_skip(pb, offset - avio_tell(pb)); - ffformatcontext(s)->data_offset = avio_tell(pb); avpriv_set_pts_info(st, 64, 1, par->sample_rate); |