Description: Make channel scan work oob for Astra 19E.
Author: Stephan Sürken <absurd@olurdix.de>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2020-04-27

--- a/libs/libmythtv/channelscan/channelscanmiscsettings.h
+++ b/libs/libmythtv/channelscan/channelscanmiscsettings.h
@@ -87,8 +87,8 @@ class DesiredServices : public TransMyth
                         "TV+Radio - Adds all services with audio, "
                         "All - Adds all services "
                         "(including data only services)."));
-        addSelection(QObject::tr("TV"),       "tv", true);
-        addSelection(QObject::tr("TV+Radio"), "audio");
+        addSelection(QObject::tr("TV"),       "tv");
+        addSelection(QObject::tr("TV+Radio"), "audio", true);
         addSelection(QObject::tr("All"),      "all");
     };
 
@@ -225,6 +225,7 @@ class ScanFrequencykHz: public TransText
         setLabel(QObject::tr("Frequency"));
         setHelpText(QObject::tr("Frequency (Option has no default)\n"
                                 "The frequency for this transport (multiplex) in kHz."));
+        setValue(12551500);
     };
 };
 
@@ -251,10 +252,10 @@ class ScanSymbolRateDVBS: public TransMy
                 "Most DVB-S transponders transmit at 27.5 "
                 "million symbols per second."));
         addSelection("3333000");
-        addSelection("22000000");
+        addSelection("22000000", "22000000", true);
         addSelection("22500000");
         addSelection("23000000");
-        addSelection("27500000", "27500000", true);
+        addSelection("27500000");
         addSelection("28000000");
         addSelection("28500000");
         addSelection("29500000");
@@ -290,8 +291,8 @@ class ScanPolarity: public TransMythUICo
     {
         setLabel(QObject::tr("Polarity"));
         setHelpText(QObject::tr("Polarity (Option has no default)"));
-        addSelection(QObject::tr("Horizontal"), "h",true);
-        addSelection(QObject::tr("Vertical"), "v");
+        addSelection(QObject::tr("Horizontal"), "h");
+        addSelection(QObject::tr("Vertical"), "v",true);
         addSelection(QObject::tr("Right Circular"), "r");
         addSelection(QObject::tr("Left Circular"), "l");
     };
