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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
/*
* libzvbi - Teletext packet decoder, packet 8/30
*
* Copyright (C) 2003, 2004 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 version 2 as
* published by the Free Software Foundation.
*
* 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: packet-830.c,v 1.6 2006/02/06 18:14:54 mschimek Exp $ */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include "bcd.h" /* vbi3_bcd2bin() */
#include "hamm.h" /* vbi3_rev16p(), vbi3_iham8() */
#include "packet-830.h"
/**
* @addtogroup Packet830 Teletext Packet 8/30 Decoder
* @ingroup LowDec
* @brief Functions to decode Teletext packets 8/30 (ETS 300 706).
*/
/**
* @param cni CNI of type VBI3_CNI_TYPE_8301 will be stored here.
* @param buffer Teletext packet as defined for @c VBI3_SLICED_TELETEXT_B,
* i.e. 42 bytes without clock run-in and framing code.
*
* Decodes a Teletext packet 8/30 format 1 according to
* ETS 300 706 section 9.8.1, returning the 16 bit Country and
* Network Identifier in @a cni.
*
* @returns
* Always @c TRUE, no error checking possible.
*/
vbi3_bool
vbi3_decode_teletext_8301_cni (unsigned int * cni,
const uint8_t buffer[42])
{
assert (NULL != cni);
assert (NULL != buffer);
*cni = vbi3_rev16p (buffer + 9);
return TRUE;
}
/**
* @param tme UTC time will be stored here.
* @param gmtoff Local time offset in seconds east of UTC is stored here,
* including daylight saving time, as in BSD and GNU struct tm tm_gmtoff.
* To get the local time of the network broadcasting this packet add
* @a gmtoff to @a time.
* @param buffer Teletext packet as defined for @c VBI3_SLICED_TELETEXT_B,
* i.e. 42 bytes without clock run-in and framing code.
*
* Decodes a Teletext packet 8/30 format 1 according to
* ETS 300 706 section 9.8.1, returning the time data.
*
* Note a few stations incorrectly transmit local time instead of UTC,
* with gmtoff zero.
*
* @returns
* @c FALSE if the buffer contained incorrectable data, in this case
* @a tme and @a gmtoff remain unchanged.
*/
vbi3_bool
vbi3_decode_teletext_8301_local_time
(time_t * tme,
int * gmtoff,
const uint8_t buffer[42])
{
unsigned int mjd;
unsigned int utc;
int bcd;
int t;
assert (NULL != tme);
assert (NULL != gmtoff);
assert (NULL != buffer);
bcd = (+ ((buffer[12] & 15) << 16)
+ (buffer[13] << 8)
+ buffer[14]
- 0x11111);
if (!vbi3_is_bcd (bcd))
return FALSE;
mjd = vbi3_bcd2bin (bcd);
bcd = (+ (buffer[15] << 16)
+ (buffer[16] << 8)
+ buffer[17]
- 0x111111);
if (vbi3_bcd_digits_greater (bcd, 0x295959))
return FALSE;
utc = (bcd & 15) + ((bcd >> 4) & 15) * 10;
bcd >>= 8;
utc += (bcd & 15) * 60 + ((bcd >> 4) & 15) * 600;
bcd >>= 8;
utc += (bcd & 15) * 3600 + (bcd >> 4) * 36000;
if (utc >= 24 * 60 * 60)
return FALSE;
*tme = (mjd - 40587) * 86400 + utc;
/* Local time offset in seconds east of UTC. */
t = (buffer[11] & 0x3E) * (15 * 60);
if (buffer[11] & 0x40)
t = -t;
/* 300 706 says 0x81 bits are reserved, some stations set,
some clear, no apparent function (no UTC/local flag anyway). */
*gmtoff = t;
return TRUE;
}
/**
* @param cni CNI of type VBI3_CNI_TYPE_8302 will be stored here.
* @param buffer Teletext packet as defined for @c VBI3_SLICED_TELETEXT_B,
* i.e. 42 bytes without clock run-in and framing code.
*
* Decodes a Teletext packet 8/30 format 2 according to
* ETS 300 706 section 9.8.2, returning the 16 bit Country and
* Network Identifier in @a cni.
*
* @returns
* @c FALSE if the buffer contained incorrectable data, in this case
* @a cni remains unchanged.
*/
vbi3_bool
vbi3_decode_teletext_8302_cni (unsigned int * cni,
const uint8_t buffer[42])
{
int b[13];
assert (NULL != cni);
assert (NULL != buffer);
b[ 7] = vbi3_unham16p (buffer + 10);
b[ 8] = vbi3_unham16p (buffer + 12);
b[10] = vbi3_unham16p (buffer + 16);
b[11] = vbi3_unham16p (buffer + 18);
if ((b[7] | b[8] | b[10] | b[11]) < 0)
return FALSE;
b[ 7] = vbi3_rev8 (b[ 7]);
b[ 8] = vbi3_rev8 (b[ 8]);
b[10] = vbi3_rev8 (b[10]);
b[11] = vbi3_rev8 (b[11]);
*cni = (+ ((b[ 7] & 0x0F) << 12)
+ ((b[10] & 0x03) << 10)
+ ((b[11] & 0xC0) << 2)
+ (b[ 8] & 0xC0)
+ (b[11] & 0x3F));
return TRUE;
}
/**
* @param pid PDC data will be stored here.
* @param buffer Teletext packet as defined for @c VBI3_SLICED_TELETEXT_B,
* i.e. 42 bytes without clock run-in and framing code.
*
* Decodes a Teletext packet 8/30 format 2 according to
* ETS 300 231, storing PDC recording-control data in @a pid.
*
* @returns
* @c FALSE if the buffer contained incorrectable data, in this case
* @a pid remains unchanged.
*/
vbi3_bool
vbi3_decode_teletext_8302_pdc (vbi3_program_id * pid,
const uint8_t buffer[42])
{
uint8_t b[13];
unsigned int i;
int error;
assert (NULL != pid);
assert (NULL != buffer);
error = vbi3_unham8 (buffer[10]);
b[ 6] = error;
for (i = 7; i <= 12; ++i) {
int t;
t = vbi3_unham16p (buffer + i * 2 - 4);
error |= t;
b[i] = vbi3_rev8 (t);
}
if (error < 0)
return FALSE;
pid->cni_type = VBI3_CNI_TYPE_8302;
pid->cni = (+ ((b[ 7] & 0x0F) << 12)
+ ((b[10] & 0x03) << 10)
+ ((b[11] & 0xC0) << 2)
+ (b[ 8] & 0xC0)
+ (b[11] & 0x3F));
pid->channel = VBI3_PID_CHANNEL_LCI_0 + ((b[6] >> 2) & 3);
pid->luf = !!(b[6] & 2);
pid->prf = b[6] & 1;
pid->pcs_audio = b[7] >> 6;
pid->mi = !!(b[7] & 0x20);
pid->pil = (+ ((b[ 8] & 0x3F) << 14)
+ (b[ 9] << 6)
+ (b[10] >> 2));
pid->month = VBI3_PIL_MONTH (pid->pil) - 1;
pid->day = VBI3_PIL_DAY (pid->pil) - 1;
pid->hour = VBI3_PIL_HOUR (pid->pil);
pid->minute = VBI3_PIL_MINUTE (pid->pil);
pid->length = 0; /* unknown */
pid->pty = b[12];
pid->tape_delayed = FALSE;
return TRUE;
}
|