* Streamline some TiVo ifdefs.

This commit is contained in:
Justin Maggard
2012-06-30 00:26:55 +00:00
parent 61fbce18ba
commit 5f14c68597
5 changed files with 37 additions and 36 deletions

View File

@ -210,26 +210,6 @@ dlna_timestamp_is_present(const char *filename, int *raw_packet_size)
return 0;
}
#ifdef TIVO_SUPPORT
int
is_tivo_file(const char *path)
{
unsigned char buf[5];
unsigned char hdr[5] = { 'T','i','V','o','\0' };
int fd;
/* read file header */
fd = open(path, O_RDONLY);
if( !fd )
return 0;
if( read(fd, buf, 5) < 0 )
buf[0] = 'X';
close(fd);
return !memcmp(buf, hdr, 5);
}
#endif
void
check_for_captions(const char *path, int64_t detailID)
{