[FFmpeg-cvslog] [ffmpeg-radio] 10/14: avradio/sdrdemux: no need to set wanted_freq from sdrfile_initial_setup()
Michael Niedermayer
ffmpeg-git at ffmpeg.org
Sat Jul 22 16:55:56 EEST 2023
This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository libavradio.
commit 326fe6e456cc91a100d90c07ea7e2192d36b7608
Author: Michael Niedermayer <michael at niedermayer.cc>
AuthorDate: Tue Jul 18 22:49:04 2023 +0200
Commit: Michael Niedermayer <michael at niedermayer.cc>
CommitDate: Sat Jul 22 15:44:54 2023 +0200
avradio/sdrdemux: no need to set wanted_freq from sdrfile_initial_setup()
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavradio/sdrdemux.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c
index b5e9b9ad04..d5ea2d85b4 100644
--- a/libavradio/sdrdemux.c
+++ b/libavradio/sdrdemux.c
@@ -1714,7 +1714,7 @@ static int sdrfile_initial_setup(AVFormatContext *s)
avio_skip(s->pb, 3); //BE
sdr->sdr_sample_rate = avio_rb32(s->pb);
avio_rb32(s->pb); //block_size
- sdr->wanted_freq = av_int2double(avio_rb64(s->pb));
+ av_int2double(avio_rb64(s->pb));
sdr->pts = avio_rb64(s->pb);
if (version > AV_RB24("000")) {
sdr->bandwidth = avio_rb32(s->pb);
More information about the ffmpeg-cvslog
mailing list