Deleted Added
sdiff udiff text old ( 32926 ) new ( 33025 )
full compact
1/*
2 * Copyright (c) 1995 Mark Tinguely and Jim Lowe
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 297 unchanged lines hidden (view full) ---

306 u_char afc;
307};
308
309/* description of the PHYSICAL tuner */
310struct TUNER {
311 char* name;
312 u_char type;
313 u_char pllAddr;
314 u_char pllControl;
315 u_char bandLimits[ 2 ];
316 u_char bandAddrs[ 3 ];
317};
318
319/* description of the card */
320#define EEPROMBLOCKSIZE 32
321struct CARDTYPE {
322 char* name;
323 const struct TUNER* tuner;
324 u_char dbx; /* Has DBX chip? */

--- 99 unchanged lines hidden (view full) ---

424#define METEOR_WANT_TS 0x08000000 /* time-stamp a frame */
425#define METEOR_RGB 0x20000000 /* meteor rgb unit */
426#define METEOR_FIELD_MODE 0x80000000
427 u_char tflags;
428#define TUNER_INITALIZED 0x00000001
429#define TUNER_OPEN 0x00000002
430 u_short fps; /* frames per second */
431#ifdef DEVFS
432 void *devfs_bktr_token;
433 void *devfs_tuner_token;
434#endif
435 struct meteor_video video;
436 struct TVTUNER tuner;
437 struct CARDTYPE card;
438 u_char audio_mux_select; /* current mode of the audio */
439 u_char audio_mute_state; /* mute state of the audio */
440 u_char format_params;
441 u_long current_sol;

--- 14 unchanged lines hidden ---