From: Michael Niedermayer <michael@niedermayer.cc> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: [FFmpeg-devel] [PATCH 1/2] avradio/sdrdemux: avoid repeated litteral number Date: Fri, 14 Jul 2023 20:03:40 +0200 Message-ID: <20230714180341.2186605-1-michael@niedermayer.cc> (raw) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> --- libavradio/sdrdemux.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c index d40b92dd24..041775730e 100644 --- a/libavradio/sdrdemux.c +++ b/libavradio/sdrdemux.c @@ -57,6 +57,8 @@ #include "libavutil/lfg.h" #endif +#define MAX_STATIONS 1000 // Maximum stations vissible at the same time + #define AM_FREQ_TOLERANCE 5 #define FM_FREQ_TOLERANCE 500 @@ -185,7 +187,7 @@ static int create_station(SDRContext *sdr, Station *candidate_station) { int conflict = INT_MAX; int nb_candidate_conflict = 0; int nb_candidate_match = 0; - Station *station_list[1000]; + Station *station_list[MAX_STATIONS]; if (candidate_station->in_station_list) @@ -287,7 +289,7 @@ static int create_station(SDRContext *sdr, Station *candidate_station) { static void create_stations(SDRContext *sdr) { - Station *station_list[1000]; + Station *station_list[MAX_STATIONS]; int nb_stations; if (!sdr->block_center_freq) @@ -330,7 +332,7 @@ static void *tree_remove(struct AVTreeNode **rootp, void *key, */ static void decay_stations(SDRContext *sdr) { - Station *station_list[1000]; + Station *station_list[MAX_STATIONS]; int nb_stations = ff_sdr_find_stations(sdr, sdr->block_center_freq, sdr->bandwidth*0.5, station_list, FF_ARRAY_ELEMS(station_list)); for (int i=0; i<nb_stations; i++) { @@ -381,7 +383,7 @@ static int create_candidate_station(SDRContext *sdr, enum Modulation modulation, Station *station; void *tmp; struct AVTreeNode *next = NULL; - Station *station_list[1000]; + Station *station_list[MAX_STATIONS]; double snapdistance = modulation == AM ? AM_FREQ_TOLERANCE : FM_FREQ_TOLERANCE; int nb_stations = ff_sdr_find_stations(sdr, freq, snapdistance, station_list, FF_ARRAY_ELEMS(station_list)); int update_freq = 1; @@ -1274,7 +1276,7 @@ static int snap2station(SDRContext *sdr, int *seek_direction) { double current_freq; double best_distance = INT64_MAX; Station *best_station = NULL; - Station *station_list[1000]; + Station *station_list[MAX_STATIONS]; int nb_stations = ff_sdr_find_stations(sdr, sdr->block_center_freq, sdr->sdr_sample_rate*0.5, station_list, FF_ARRAY_ELEMS(station_list)); if (sst->station) { @@ -1740,7 +1742,7 @@ process_next_block: } if (sdr->demodulate_all_fm) { - Station *station_list[1000]; + Station *station_list[MAX_STATIONS]; int nb_stations = ff_sdr_find_stations(sdr, sdr->block_center_freq, sdr->sdr_sample_rate*0.5, station_list, FF_ARRAY_ELEMS(station_list)); for (int i= 0; i<nb_stations; i++) { Station *station = station_list[i]; @@ -1900,7 +1902,7 @@ process_next_block: // windowed_block is unused now, we can fill it with the next blocks data if (sdr->block_center_freq) { - Station *station_list[1000]; + Station *station_list[MAX_STATIONS]; int nb_stations; if (sdr->skip_probe-- <= 0) { //Probing takes a bit of time, lets not do it every time -- 2.31.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next reply other threads:[~2023-07-14 18:03 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-07-14 18:03 Michael Niedermayer [this message] 2023-07-14 18:03 ` [FFmpeg-devel] [PATCH 2/2] avradio/sdrdemux: Some corrections to the FM stereo side channel Michael Niedermayer 2023-07-15 16:59 ` [FFmpeg-devel] [PATCH 1/2] avradio/sdrdemux: avoid repeated litteral number Michael Niedermayer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20230714180341.2186605-1-michael@niedermayer.cc \ --to=michael@niedermayer.cc \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git