diff options
author | Tobias Grimm <git@e-tobi.net> | 2010-02-02 15:52:03 +0100 |
---|---|---|
committer | Tobias Grimm <git@e-tobi.net> | 2010-02-03 00:57:41 +0100 |
commit | eb6a02c3743ef186a88b8d5e5023d6d07efad84c (patch) | |
tree | 6cb6821d19427bf9f22a817910a03a183276321d | |
parent | 67b9f1184b2a5ced251f91ddacd75372ac3daf33 (diff) | |
download | vdr-plugin-ttxtsubs-eb6a02c3743ef186a88b8d5e5023d6d07efad84c.tar.gz vdr-plugin-ttxtsubs-eb6a02c3743ef186a88b8d5e5023d6d07efad84c.tar.bz2 |
refactoring - removed unused print_code debug code
-rw-r--r-- | teletext.c | 80 |
1 files changed, 0 insertions, 80 deletions
@@ -152,83 +152,3 @@ uint16_t ttxt_laG2_la1_char(uint8_t inchar) { return laG2_la1_table[inchar & 0x7f]; } - -void -print_code(uint8_t c, int natopts) -{ - if(c >= 0x20) { - dprint("%c", ttxt_laG0_la1_char(0, natopts, c)); - } else - switch(c) { - case 0x0: - case 0x1: - case 0x2: - case 0x3: - case 0x4: - case 0x5: - case 0x6: - case 0x7: - dprint("<fc%d>", c); - break; - case 0x08: - dprint("<flash>"); - break; - case 0x09: - dprint("<Steady>"); - break; - case 0x0a: - dprint("]"); - break; - case 0x0b: - dprint("["); - break; - case 0x0c: - dprint("<normal size>"); - break; - case 0x0d: - dprint("<dh>"); - break; - case 0x0e: - dprint("<dbl width>"); - break; - case 0x0f: - dprint("<dbl size>"); - break; - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - dprint("<mosc%d>", c-0x10); - break; - case 0x18: - dprint("<conceal>"); - break; - case 0x19: - dprint("<cont mosaic>"); - break; - case 0x1a: - dprint("<sep mosaic>"); - break; - case 0x1b: - dprint("<charset switch>"); - break; - case 0x1c: - dprint("<black bg>"); - break; - case 0x1d: - dprint("<new bg>"); - break; - case 0x1e: - dprint("<hold mosaic>"); - break; - case 0x1f: - dprint("<rele mosaic>"); - break; - default: - dprint("<U%02x>", c); - } -} |