comparison libmpdemux/vcd_read.h @ 3261:caac174877b7

using #ifdef HAVE_VCD
author arpi
date Sat, 01 Dec 2001 23:40:24 +0000
parents f51307170f69
children 1394aebaa838
comparison
equal deleted inserted replaced
3260:80e1e29e71e7 3261:caac174877b7
252 ++vcd_cache_current; 252 ++vcd_cache_current;
253 return VCD_SECTOR_DATA; 253 return VCD_SECTOR_DATA;
254 } 254 }
255 #endif 255 #endif
256 256
257 #else /* linux || sun */ 257 #else /* linux || sun || __bsdi__ */
258 258
259 int vcd_seek_to_track(int fd,int track) 259 #error vcd is not yet supported on this arch...
260 { 260
261 return -1; 261 #endif
262 }
263
264 int vcd_get_track_end(int fd,int track)
265 {
266 return -1;
267 }
268
269 void vcd_read_toc(int fd)
270 {
271 }
272
273 static char vcd_buf[VCD_SECTOR_SIZE];
274
275 static int vcd_read(int fd,char *mem)
276 {
277 return -1;
278 }
279
280 static inline void vcd_set_msf(unsigned int sect)
281 {
282 }
283
284 #endif /* !linux && !sun */