diff --git a/mythtv/libs/libmythtv/recorders/hdhrchannel.cpp b/mythtv/libs/libmythtv/recorders/hdhrchannel.cpp
index 133fe827e1..8704cf3474 100644
|
a
|
b
|
static QString format_dvbc(const DTVMultiplex &tuning, const QString &mod)
|
| 136 | 136 | { |
| 137 | 137 | const QChar b = tuning.bandwidth.toChar(); |
| 138 | 138 | |
| | 139 | // need bandwidth to set modulation and symbol rate |
| | 140 | if ((QChar('a') == b) && (mod != "auto") && (tuning.symbolrate > 0)) |
| | 141 | return QString("a8%1-%2") |
| | 142 | .arg(mod).arg(tuning.symbolrate/1000); |
| | 143 | |
| 139 | 144 | if ((QChar('a') == b) || (mod == "auto")) |
| 140 | 145 | return "auto"; // uses bandwidth from channel map |
| 141 | 146 | else if ((QChar('a') != b) && (tuning.symbolrate > 0)) |