summaryrefslogtreecommitdiff
path: root/cflac.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-08-18 19:43:03 +0200
committerGravatar waker <wakeroid@gmail.com>2009-08-18 19:43:03 +0200
commit613b792e5c6b35dfe614002e724d1caefc11df58 (patch)
treef8f6a6a412224359dcae537c1fb8f256b5483768 /cflac.c
parent9cededd13631d65ca000bab0af2e03d124cff147 (diff)
fixed streamer skipping in beginning of each track
Diffstat (limited to 'cflac.c')
-rw-r--r--cflac.c6
1 files changed, 3 insertions, 3 deletions
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 }
};