comparison stream/tv.h @ 27025:e598c9756181

Ability for specifying TV standard individually for each TV channel. Slightly modified patch by Ildar devel at pop3 dot ru
author voroshil
date Sat, 14 Jun 2008 09:14:16 +0000
parents 4129c8cfa742
children 7406e7f30d4e
comparison
equal deleted inserted replaced
27024:6f542aa9c3cc 27025:e598c9756181
117 117
118 typedef struct tv_channels_s { 118 typedef struct tv_channels_s {
119 int index; 119 int index;
120 char number[5]; 120 char number[5];
121 char name[20]; 121 char name[20];
122 int norm;
122 int freq; 123 int freq;
123 struct tv_channels_s *next; 124 struct tv_channels_s *next;
124 struct tv_channels_s *prev; 125 struct tv_channels_s *prev;
125 } tv_channels_t; 126 } tv_channels_t;
126 127