Skip to content

Commit

Permalink
fix ATSC QAM scanning
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.mythtv.org/svn/branches/release-0-20-fixes@14263 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
jannau committed Aug 22, 2007
1 parent 6111666 commit 0f44572
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mythtv/libs/libmythtv/frequencytables.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@ TransportScanItem::TransportScanItem(int sourceid,
else if (standard == "atsc")
{
#if (DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1)
// HACK ATSC could either be VSB (terrestrial) or QAM (cable)
// structs are compatible in this regard, qam tuning does only work
// this way amd I'm too tired to find the bug
tuning.params.u.vsb.modulation = (fe_modulation) ft.modulation;
tuning.params.u.qam.modulation = (fe_modulation) ft.modulation;
#endif
if (dvbft)
{
Expand Down

0 comments on commit 0f44572

Please sign in to comment.