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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
/*
* libzvbi - Teletext page cache
*
* Copyright (C) 2001, 2002, 2003, 2004 Michael H. Schimek
*
* Based on code from AleVT 1.5.1
* Copyright (C) 1998, 1999 Edgar Toernig
*
* 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: cache-priv.h,v 1.3 2005/09/01 01:40:52 mschimek Exp $ */
#ifndef CACHE_PRIV_H
#define CACHE_PRIV_H
#include "cache.h"
#include "dlist.h" /* list, node & funcs */
#ifndef ZAPPING8
# include "aspect_ratio.h" /* vbi3_aspect_ratio */
# include "program_info.h" /* vbi3_program_info */
#endif
#include "sampling_par.h" /* vbi3_videostd_set */
#include "vt.h" /* Teletext definitions */
#define HASH_SIZE 113
/** @internal */
typedef enum {
/** Pages to be deleted when no longer referenced. */
CACHE_PRI_ZOMBIE,
/**
* Ordinary pages, oldest at head of list.
* These are deleted first when we run out of memory.
*/
CACHE_PRI_NORMAL,
/**
* Pages we expect to use frequently, or which take long to reload:
* - pgno 0x100 * n and 0x111 * n
* - shared pages (objs, drcs, navigation)
* - subpages
*/
CACHE_PRI_SPECIAL,
} cache_priority;
/**
* @internal
* Network related data.
*/
typedef struct {
/* Cache internal stuff. */
/** Network chain. */
node node;
/** Cache this network belongs to. */
vbi3_cache * cache;
unsigned int ref_count;
/** To be deleted when no longer referenced. */
vbi3_bool zombie;
/* Decoder stuff. */
/** Network identification. */
vbi3_network network;
/** Used by vbi3_decoder and vbi3_teletext_decoder, see there. */
unsigned int confirm_cni_vps;
unsigned int confirm_cni_8301;
unsigned int confirm_cni_8302;
#ifndef ZAPPING8
/** Last received program information. */
vbi3_program_info program_info;
/** Last received aspect ratio information. */
vbi3_aspect_ratio aspect_ratio;
/** Last received program ID, sorted by vbi3_program_id.channel. */
vbi3_program_id program_id[6];
#endif
/* Caption stuff. */
/** Last XDS_CHANNEL_NAME. */
uint8_t channel_name[32];
/* Teletext stuff. */
/** Pages cached now and ever, maintained by cache routines. */
unsigned int n_pages;
unsigned int max_pages;
/** Number of referenced Teletext pages of this network. */
unsigned int n_referenced_pages;
/** Usually 100. */
pagenum initial_page;
/** BTT links to TOP pages. */
pagenum btt_link[2 * 5];
vbi3_bool have_top;
/** Magazine defaults. Use vt_network_magazine() to access. */
magazine _magazines[8];
/** Last packet 8/30 Status Display, with parity. */
uint8_t status[20];
/** Page statistics. Use cache_network_page_stat() to access. */
page_stat _pages[0x800];
} cache_network;
/**
* @internal
* @brief Cached preprocessed Teletext page.
*
* In the Teletext decoder we check for transmission errors before storing
* data in the cache, and for efficiency store data in decoded format.
*
* Caution! To save memory this structure uses a variable size union.
*/
typedef struct {
/* Cache internal stuff. */
/** See struct vbi3_cache. */
node hash_node;
node pri_node;
/** Network sending this page. */
cache_network * network;
unsigned int ref_count;
/** Current priority of this page. */
cache_priority priority;
/* Teletext stuff. */
/**
* Defines the page function and which member of the
* union applies.
*/
page_function function;
/** Page and subpage number. */
vbi3_pgno pgno;
vbi3_subno subno;
/**
* National character set designator 0 ... 7
* (3 lsb of a vbi3_charset_code).
*/
int national;
/**
* Page flags C4 ... C14.
* Other bits will be set, just ignore them.
*/
unsigned int flags;
/**
* Sets of packets we received. This may include packets
* with hamming errors.
*
* lop_packets: 1 << packet 0 ... 25
* x26_designations: 1 << X/26 designation 0 ... 15
*/
unsigned int lop_packets;
unsigned int x26_designations;
unsigned int x27_designations;
unsigned int x28_designations;
union {
/** Raw page, content unknown. */
struct lop unknown;
/** Plain level one page. */
struct lop lop;
/** Level one page with X/26 page enhancements. */
struct {
struct lop lop;
enhancement enh;
} enh_lop;
/**
* Level one page with X/26 page enhancements
* and X/28 extensions for Level 2.5 / 3.5.
*/
struct {
struct lop lop;
enhancement enh;
extension ext;
} ext_lop;
/** (Global) public object page. */
struct {
/**
* 12 * 2 triplet pointers from packet 1 ... 4.
* Valid range 0 ... 506 (39 packets * 13 triplets),
* unused pointers 511 (10.5.1.2), broken -1.
*/
uint16_t pointer[4 * 12 * 2];
/**
* 13 triplets from each of packet 3 ... 25 and
* 26/0 ... 26/15.
*
* Valid range of mode 0x00 ... 0x1F, broken -1.
*/
triplet triplet[39 * 13 + 1];
} gpop, pop;
/**
* (Global) dynamically redefinable characters
* download page.
*/
struct {
/** DRCS in raw format for error correction. */
struct lop lop;
/**
* Each character consists of 12x10 pixels, stored
* left to right and top to bottom. Pixels can assume
* up to 16 colors. Every two pixels
* are stored in one byte, left pixel in bits 0x0F,
* right pixel in bits 0xF0.
*/
uint8_t chars[DRCS_PTUS_PER_PAGE][12 * 10 / 2];
/** See 9.4.6. */
uint8_t mode[DRCS_PTUS_PER_PAGE];
/**
* 1 << (0 ... (DRCS_PTUS_PER_PAGE - 1)).
*
* Note characters can span multiple successive PTUs,
* see get_drcs_data().
*/
uint64_t invalid;
} gdrcs, drcs;
/** TOP AIT page. */
struct {
ait_title title[46];
/** Used to detect changes. */
unsigned int checksum;
} ait;
} data;
/* Dynamic size, add no fields below unless
cache_page is statically allocated. */
} cache_page;
/** @internal */
vbi3_inline magazine *
cache_network_magazine (cache_network * cn,
vbi3_pgno pgno)
{
assert (pgno >= 0x100 && pgno <= 0x8FF);
return &cn->_magazines[(pgno >> 8) - 1];
}
/** @internal */
vbi3_inline const magazine *
cache_network_const_magazine (const cache_network * cn,
vbi3_pgno pgno)
{
assert (pgno >= 0x100 && pgno <= 0x8FF);
return &cn->_magazines[(pgno >> 8) - 1];
}
/** @internal */
vbi3_inline page_stat *
cache_network_page_stat (cache_network * cn,
vbi3_pgno pgno)
{
assert (pgno >= 0x100 && pgno <= 0x8FF);
return &cn->_pages[pgno - 0x100];
}
/** @internal */
vbi3_inline const page_stat *
cache_network_const_page_stat (const cache_network * cn,
vbi3_pgno pgno)
{
assert (pgno >= 0x100 && pgno <= 0x8FF);
return &cn->_pages[pgno - 0x100];
}
/* in top.c */
extern const ait_title *
cache_network_get_ait_title (cache_network * cn,
cache_page ** ait_cp,
vbi3_pgno pgno,
vbi3_subno subno);
extern vbi3_bool
cache_network_get_top_title (cache_network * cn,
vbi3_top_title * tt,
vbi3_pgno pgno,
vbi3_subno subno);
extern vbi3_top_title *
cache_network_get_top_titles (cache_network * cn,
unsigned int * n_elements);
/* in cache.c */
extern void
cache_network_get_ttx_page_stat (const cache_network * cn,
vbi3_ttx_page_stat * ps,
vbi3_pgno pgno);
extern void
cache_network_unref (cache_network * cn);
extern cache_network *
cache_network_ref (cache_network * cn);
extern cache_network *
_vbi3_cache_get_network (vbi3_cache * ca,
const vbi3_network * nk);
extern cache_network *
_vbi3_cache_add_network (vbi3_cache * ca,
const vbi3_network * nk,
vbi3_videostd_set videostd_set);
/* in caption.c */
extern void
cache_network_destroy_caption (cache_network * cn);
extern void
cache_network_init_caption (cache_network * cn);
/* in packet.c */
extern void
cache_network_dump_teletext (const cache_network * cn,
FILE * fp);
extern void
cache_network_destroy_teletext (cache_network * cn);
extern void
cache_network_init_teletext (cache_network * cn);
/* in cache.c */
extern void
cache_page_dump (const cache_page * cp,
FILE * fp);
extern unsigned int
cache_page_size (const cache_page * cp);
extern vbi3_bool
cache_page_copy (cache_page * dst,
const cache_page * src);
extern void
cache_page_unref (cache_page * cp);
extern cache_page *
cache_page_ref (cache_page * cp);
extern cache_page *
_vbi3_cache_get_page (vbi3_cache * ca,
cache_network * cn,
vbi3_pgno pgno,
vbi3_subno subno,
vbi3_subno subno_mask);
extern cache_page *
_vbi3_cache_put_page (vbi3_cache * ca,
cache_network * cn,
const cache_page * cp);
extern void
_vbi3_cache_dump (const vbi3_cache * ca,
FILE * fp);
/* Other stuff. */
typedef int
_vbi3_cache_foreach_cb (cache_page * cp,
vbi3_bool wrapped,
void * user_data);
/* in cache.c */
extern int
_vbi3_cache_foreach_page (vbi3_cache * ca,
cache_network * cn,
vbi3_pgno pgno,
vbi3_subno subno,
int dir,
_vbi3_cache_foreach_cb *callback,
void * user_data);
/* in teletext.c */
extern void
_vbi3_character_set_init (const vbi3_character_set *charset[2],
vbi3_charset_code default_code_0,
vbi3_charset_code default_code_1,
const extension * ext,
const cache_page * cp);
#endif /* CACHE_PRIV_H */
|