1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
/*
* libzvbi - BCD arithmetic for Teletext page numbers
*
* Copyright (C) 2001, 2002, 2003 Michael H. Schimek
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: bcd.h,v 1.6 2006/02/03 18:24:42 mschimek Exp $ */
#ifndef __ZVBI3_BCD_H__
#define __ZVBI3_BCD_H__
#include "macros.h"
VBI3_BEGIN_DECLS
#ifndef DOXYGEN_SHOULD_IGNORE_THIS
#define _VBI3_BCD_10 (1u * ((int) 0x1111111111111111LL) << 4)
#define _VBI3_BCD_06 (((int) 0x6666666666666666LL) >> 4)
#endif
/**
* @addtogroup BCD
* @{
*/
#define VBI3_BCD_MIN (0xF << (sizeof (int) * 8 - 4))
#define VBI3_BCD_MAX (VBI3_BCD_MIN ^ ~_VBI3_BCD_06)
#define VBI3_BCD_BIN_MAX /* FEDCBA9876543210 F6543210 */ \
((8 == sizeof (int)) ? 999999999999999LL : 9999999)
#define VBI3_BCD_BIN_MIN ((-VBI3_BCD_BIN_MAX) - 1)
extern int
vbi3_bin2bcd (int bin)
__attribute__ ((const));
extern int
vbi3_bcd2bin (int bcd)
__attribute__ ((const));
/**
* @param a BCD number.
* @param b BCD number.
*
* Adds two signed packed bcd numbers, returning a signed packed bcd sum.
*
* @return
* BCD number. The result is undefined when any of the arguments
* contain hex digits 0xA ... 0xF, except for the sign nibble.
*/
vbi3_inline int
vbi3_add_bcd (int a,
int b)
{
int t = a + (b += _VBI3_BCD_06);
a = ((~(b ^ a ^ t) & _VBI3_BCD_10) >> 3) * 3;
return t - a;
}
/**
* @param bcd BCD number.
*
* Calculates the ten's complement of a signed packed bcd. The most
* significant nibble is the sign, e.g. 0xF999 9999 = vbi3_neg_bcd
* (0x0000 00001), presumed sizeof(int) is 4.
*
* @return
* BCD number. The result is undefined when any of the arguments
* contain hex digits 0xA ... 0xF, except for the sign nibble.
*
* Note the ten's complement of VBI3_BCD_MIN is not representable
* as signed packed bcd, this function will return VBI3_BCD_MAX + 1
* (0x1000 0000) instead.
*/
vbi3_inline int
vbi3_neg_bcd (int bcd)
{
int t = -bcd;
return t - (((bcd ^ t) & _VBI3_BCD_10) >> 3) * 3;
}
/**
* @param a BCD number.
* @param b BCD number.
*
* Subtracts two signed packed bcd numbers, returning a - b. The result
* may be negative (ten's complement), see vbi3_neg_bcd().
*
* @return
* BCD number. The result is undefined when any of the arguments
* contain hex digits 0xA ... 0xF, except for the sign nibble.
*/
vbi3_inline int
vbi3_sub_bcd (int a,
int b)
{
return vbi3_add_bcd (a, vbi3_neg_bcd (b));
}
/**
* @param bcd BCD number.
*
* Tests if @a bcd forms a valid signed packed bcd number.
*
* @return
* @c FALSE if @a bcd contains hex digits 0xA ... 0xF, ignoring
* the four most significant bits i.e. the sign nibble.
*/
vbi3_inline vbi3_bool
vbi3_is_bcd (int bcd)
{
bcd &= ~VBI3_BCD_MIN;
return 0 == (((bcd + _VBI3_BCD_06) ^ bcd ^ _VBI3_BCD_06)
& _VBI3_BCD_10);
}
/**
* @param bcd Unsigned BCD number.
* @param maximum Unsigned maximum value.
*
* Compares an unsigned packed bcd number digit-wise against a maximum
* value, for example 0x295959. The function takes about six instructions.
* @a maximum can contain digits 0x0 ... 0xF.
*
* @return
* @c TRUE if any digit of @a bcd is greater than the
* corresponding digit of @a maximum.
*/
vbi3_inline vbi3_bool
vbi3_bcd_digits_greater (unsigned int bcd,
unsigned int maximum)
{
maximum ^= ~0;
return 0 != (((bcd + maximum) ^ bcd ^ maximum) & _VBI3_BCD_10);
}
/** @} */
/**
* @addtogroup Service
* @{
*/
/**
* Teletext or Closed Caption page number. For Teletext pages
* this is a bcd number in range 0x100 ... 0x8FF. Page numbers
* containing digits 0xA to 0xF are reserved for various system
* purposes, these pages are not intended for display.
*
* Closed Caption page numbers between 1 ... 8 correspond
* to the four Caption and Text channels:
* <table>
* <tr><td>1</td><td>Caption 1</td><td>
* "Primary synchronous caption service [English]"</td></tr>
* <tr><td>2</td><td>Caption 2</td><td>
* "Special non-synchronous data that is intended to
* augment information carried in the program"</td></tr>
* <tr><td>3</td><td>Caption 3</td><td>
* "Secondary synchronous caption service, usually
* second language [Spanish, French]"</td></tr>
* <tr><td>4</td><td>Caption 4</td><td>
* "Special non-synchronous data similar to Caption 2"</td></tr>
* <tr><td>5</td><td>Text 1</td><td>
* "First text service, data usually not program related"</td></tr>
* <tr><td>6</td><td>Text 2</td><td>
* "Second text service, additional data usually not program related
* [ITV data]"</td></tr>
* <tr><td>7</td><td>Text 3</td><td>
* "Additional text channel"</td></tr>
* <tr><td>8</td><td>Text 4</td><td>
* "Additional text channel"</td></tr>
* </table>
*/
typedef int vbi3_pgno;
/* XXX document me */
#define VBI3_CAPTION_CC1 1
#define VBI3_CAPTION_CC2 2
#define VBI3_CAPTION_CC3 3
#define VBI3_CAPTION_CC4 4
#define VBI3_CAPTION_T1 5
#define VBI3_CAPTION_T2 6
#define VBI3_CAPTION_T3 7
#define VBI3_CAPTION_T4 8
/**
* This is the subpage number only applicable to Teletext pages,
* a BCD number in range 0x01 ... 0x79. Pages without subpages
* have subpage number 0x00.
*
* On special 'clock' pages (for example listing the current time
* in different time zones) it can assume values between 0x0000 ...
* 0x2359 expressing local time (EN 300 706, Section E.2). These are
* not actually subpages.
*
* Finally the non-BCD value 0x3F7F is possible, symbolic
* @c VBI3_ANY_SUBNO and @c VBI3_NO_SUBNO depending on context.
*/
typedef int vbi3_subno;
/* Magic constants from EN 300 706. */
#define VBI3_ANY_SUBNO ((vbi3_subno) 0x3F7F)
#define VBI3_NO_SUBNO ((vbi3_subno) 0x3F7F)
/** @} */
VBI3_END_DECLS
#endif /* __ZVBI3_BCD_H__ */
|