Ticket #4122: 4122-mythtv-deaf-signing.diff
File 4122-mythtv-deaf-signing.diff, 2.2 KB (added by , 18 years ago) |
---|
-
mythtv/libs/libmythtv/programinfo.h
75 75 SUB_UNKNOWN = 0x00, // For backwards compatibility do not change 0 or 1 76 76 SUB_HARDHEAR = 0x01, 77 77 SUB_NORMAL = 0x02, 78 SUB_ONSCREEN = 0x04 78 SUB_ONSCREEN = 0x04, 79 SUB_SIGNED = 0x08 79 80 }; 80 81 81 82 enum RecStatusType { -
mythtv/libs/libmythtv/programinfo.cpp
3587 3587 attr += QObject::tr("Subtitles Available") + ", "; 3588 3588 if (subtype & SUB_ONSCREEN) 3589 3589 attr += QObject::tr("Subtitled") + ", "; 3590 if (subtype & SUB_SIGNED) 3591 attr += QObject::tr("Deaf Signing") + ", "; 3590 3592 3591 3593 if (generic && category_type == "series") 3592 3594 attr += QObject::tr("Unidentified Episode") + ", "; -
mythtv/programs/mythfrontend/playbackbox.cpp
923 923 iconMap["onscreensub"] = SUB_ONSCREEN; 924 924 iconMap["subtitles"] = SUB_NORMAL; 925 925 iconMap["cc"] = SUB_HARDHEAR; 926 iconMap["deafsigned"] = SUB_SIGNED; 926 927 927 928 bool havesubicon = false; 928 929 -
mythtv/programs/mythfilldatabase/xmltvparser.cpp
430 430 { 431 431 pginfo->subtitletype |= SUB_ONSCREEN; 432 432 } 433 else if (info.tagName() == "subtitles" && info.attribute("type") == "deaf-signed") 434 { 435 pginfo->subtitletype |= SUB_SIGNED; 436 } 433 437 else if (info.tagName() == "audio") 434 438 { 435 439 parseAudio(info, pginfo);