From 613b792e5c6b35dfe614002e724d1caefc11df58 Mon Sep 17 00:00:00 2001 From: waker Date: Tue, 18 Aug 2009 19:43:03 +0200 Subject: fixed streamer skipping in beginning of each track --- cflac.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cflac.c') diff --git a/cflac.c b/cflac.c index 615b7527..f8483486 100644 --- a/cflac.c +++ b/cflac.c @@ -405,14 +405,14 @@ cflac_insert (playItem_t *after, const char *fname) { } #endif FLAC__stream_decoder_delete(decoder); - it->filetype = "flac"; + it->filetype = "FLAC"; after = pl_insert_item (after, it); return after; } static const char * exts[]= { - "flac","ogg",NULL + "flac",NULL }; const char **cflac_getexts (void) { @@ -427,5 +427,5 @@ codec_t cflac = { .insert = cflac_insert, .getexts = cflac_getexts, .id = "stdflac", - .filetypes = { "flac", NULL } + .filetypes = { "FLAC", NULL } }; -- cgit v1.2.3