diff mbox series

[FFmpeg-devel,1/2] avradio/sdr: add Airband frequencies

Message ID f9ff07c5e7f5f4a4159e99d468a1078a841f2d8f.1690595171.git.pross@xvid.org
State New
Headers show
Series [FFmpeg-devel,1/2] avradio/sdr: add Airband frequencies | expand

Checks

Context Check Description
yinshiyou/configure_loongarch64 warning Failed to apply patch
andriy/configure_x86 warning Failed to apply patch

Commit Message

Peter Ross July 29, 2023, 1:46 a.m. UTC
---
 libavradio/sdrdemux.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Michael Niedermayer Aug. 14, 2023, 1:42 p.m. UTC | #1
On Sat, Jul 29, 2023 at 11:46:56AM +1000, Peter Ross wrote:
> ---
>  libavradio/sdrdemux.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c
> index 3b24cfedef..0bd9222e6d 100644
> --- a/libavradio/sdrdemux.c
> +++ b/libavradio/sdrdemux.c
> @@ -1159,6 +1159,7 @@ BandDescriptor band_descs[] = {
>      {"Mediumwave band"  , "MW",   520000,   1600000},
>      {"Shortwave band"   , "SW",  6000000,  18000000},
>      {"FM broadcast band", "FM", 88000000, 108000000},
> +    {"Aircraft band", "Airband", 108000000, 137000000},
>  };
>  

sorry for my slow reply
I wanted to implement a more flexible system for the user to select bands
So the user can select exactly what he wants to be considered.
But my prior patches seem to experience massive interrest and review so
it might take a little longer for me to get that done

thx

[...]
Paul B Mahol Aug. 14, 2023, 3:27 p.m. UTC | #2
On Mon, Aug 14, 2023 at 3:43 PM Michael Niedermayer <michael@niedermayer.cc>
wrote:

> On Sat, Jul 29, 2023 at 11:46:56AM +1000, Peter Ross wrote:
> > ---
> >  libavradio/sdrdemux.c | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c
> > index 3b24cfedef..0bd9222e6d 100644
> > --- a/libavradio/sdrdemux.c
> > +++ b/libavradio/sdrdemux.c
> > @@ -1159,6 +1159,7 @@ BandDescriptor band_descs[] = {
> >      {"Mediumwave band"  , "MW",   520000,   1600000},
> >      {"Shortwave band"   , "SW",  6000000,  18000000},
> >      {"FM broadcast band", "FM", 88000000, 108000000},
> > +    {"Aircraft band", "Airband", 108000000, 137000000},
> >  };
> >
>
> sorry for my slow reply
> I wanted to implement a more flexible system for the user to select bands
> So the user can select exactly what he wants to be considered.
> But my prior patches seem to experience massive interrest and review so
> it might take a little longer for me to get that done
>

You imagine stuff, move all this SDR to some other place other than FFmpeg
and
nobody would care anymore what you do on it.


>
> thx
>
> [...]
>
> --
> Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
>
> If you think the mosad wants you dead since a long time then you are either
> wrong or dead since a long time.
> _______________________________________________
> 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".
>
Peter Ross Aug. 14, 2023, 9:37 p.m. UTC | #3
On Mon, Aug 14, 2023 at 03:42:53PM +0200, Michael Niedermayer wrote:
> On Sat, Jul 29, 2023 at 11:46:56AM +1000, Peter Ross wrote:
> > ---
> >  libavradio/sdrdemux.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c
> > index 3b24cfedef..0bd9222e6d 100644
> > --- a/libavradio/sdrdemux.c
> > +++ b/libavradio/sdrdemux.c
> > @@ -1159,6 +1159,7 @@ BandDescriptor band_descs[] = {
> >      {"Mediumwave band"  , "MW",   520000,   1600000},
> >      {"Shortwave band"   , "SW",  6000000,  18000000},
> >      {"FM broadcast band", "FM", 88000000, 108000000},
> > +    {"Aircraft band", "Airband", 108000000, 137000000},
> >  };
> >  
> 
> sorry for my slow reply
> I wanted to implement a more flexible system for the user to select bands
> So the user can select exactly what he wants to be considered.
> But my prior patches seem to experience massive interrest and review so
> it might take a little longer for me to get that done

no worries. user selectable option would be welcome.
(for example, australia, new zealand and some other countries in south east
asia operate citizen band radio on 477mhz, but that's unlikely to cared
about by rest of the world.)

-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)
diff mbox series

Patch

diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c
index 3b24cfedef..0bd9222e6d 100644
--- a/libavradio/sdrdemux.c
+++ b/libavradio/sdrdemux.c
@@ -1159,6 +1159,7 @@  BandDescriptor band_descs[] = {
     {"Mediumwave band"  , "MW",   520000,   1600000},
     {"Shortwave band"   , "SW",  6000000,  18000000},
     {"FM broadcast band", "FM", 88000000, 108000000},
+    {"Aircraft band", "Airband", 108000000, 137000000},
 };
 
 ModulationDescriptor ff_sdr_modulation_descs[] = {