Opened 11 years ago
Closed 11 years ago
#7677 closed patch (fixed)
SECAM-DK
Reported by: | Owned by: | Isaac Richards | |
---|---|---|---|
Priority: | minor | Milestone: | 0.23 |
Component: | MythTV - General | Version: | 0.22-fixes |
Severity: | medium | Keywords: | SECAM |
Cc: | Ticket locked: | no |
Description
SECAM-DK is supported in MythTV, but cannot select in Channelsetting menu.
This patch enabled it function:
* libs/libmythtv/channelsettings.cpp 2009-11-29 16:51:43.000000000 +0300 --- libs/libmythtv/channelsettings.cpp.orig 2009-11-29 16:44:07.000000000 +0300 * * 148,153 --- 148,154 ----
list.push_back("PAL-NC"); list.push_back("SECAM"); list.push_back("SECAM-D");
+ list.push_back("SECAM-DK");
return list;
}
* libs/libmythtv/v4lchannel.cpp 2009-11-29 16:47:12.000000000 +0300 --- libs/libmythtv/v4lchannel.cpp.orig 2009-11-29 16:50:06.000000000 +0300 * * 125,130 --- 125,132 ----
return V4L2_STD_SECAM;
else if (fmt == "SECAM-D")
return V4L2_STD_SECAM_D;
+ else if (fmt == "SECAM-DK") + return V4L2_STD_SECAM_DK;
else if (fmt == "PAL-NC")
return V4L2_STD_PAL_Nc;
else if (fmt == "PAL-M")
Maybe it will add in trunk version?