diff options
author | phintuka <phintuka> | 2007-01-07 03:35:04 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-01-07 03:35:04 +0000 |
commit | 369fc3b1ddedfc98322bbf973125de1c76f49314 (patch) | |
tree | be4eb7644e6a99e16e4aca16c4f55c3b84ab25bf /config.c | |
parent | 6fcf6292a6bce7be79ee4e0acc24078a865028e2 (diff) | |
download | xineliboutput-369fc3b1ddedfc98322bbf973125de1c76f49314.tar.gz xineliboutput-369fc3b1ddedfc98322bbf973125de1c76f49314.tar.bz2 |
ogm, spx, dat, mkv
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.c,v 1.20 2006-12-24 09:52:15 phintuka Exp $ + * $Id: config.c,v 1.21 2007-01-07 03:35:04 phintuka Exp $ * */ @@ -120,11 +120,13 @@ bool config_t::IsAudioFile(const char *fname) !strcasecmp(pos, "flac") || !strcasecmp(pos, "ac3") || !strcasecmp(pos, "ogg") || + !strcasecmp(pos, "ogm") || !strcasecmp(pos, "au") || !strcasecmp(pos, "aud") || !strcasecmp(pos, "wma") || !strcasecmp(pos, "asf") || !strcasecmp(pos, "wav") || + !strcasecmp(pos, "spx") || !strcasecmp(pos, "ra")) return true; return IsPlaylistFile(fname); @@ -155,6 +157,8 @@ bool config_t::IsVideoFile(const char *fname) !strcasecmp(pos, "divx") || !strcasecmp(pos, "fli") || !strcasecmp(pos, "dv") || + !strcasecmp(pos, "dat") || + !strcasecmp(pos, "mkv") || !strcasecmp(pos, "rm") || !strcasecmp(pos, "iso")) /* maybe dvd */ return true; |