Skip to content

Commit

Permalink
Fix two transposition typos in FEC type parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Mar 14, 2012
1 parent eb339d7 commit f160c64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/iptvtuningdata.h
Expand Up @@ -58,9 +58,9 @@ class MTV_PUBLIC IPTVTuningData
m_bitrate[0] = data_bitrate;
m_bitrate[1] = fec_bitrate0;
m_bitrate[2] = fec_bitrate1;
if (fec_type.toLower() == "rcf2733")
if (fec_type.toLower() == "rfc2733")
m_fec_type = kRFC2733;
else if (fec_type.toLower() == "rcf5109")
else if (fec_type.toLower() == "rfc5109")
m_fec_type = kRFC5109;
else if (fec_type.toLower() == "smpte2022")
m_fec_type = kSMPTE2022;
Expand Down

0 comments on commit f160c64

Please sign in to comment.