From 77a94d817acb5c2b5a9235cd3272b1004b8465d7 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Wed, 28 May 2014 21:33:20 +0200 Subject: ffmpeg: fixed weird alac-related code in _insert, which was preventing adding TAK files to playlist (bug #1121) --- plugins/ffmpeg/ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/ffmpeg') diff --git a/plugins/ffmpeg/ffmpeg.c b/plugins/ffmpeg/ffmpeg.c index 1cc6564a..aaf05464 100644 --- a/plugins/ffmpeg/ffmpeg.c +++ b/plugins/ffmpeg/ffmpeg.c @@ -658,7 +658,7 @@ ffmpeg_insert (ddb_playlist_t *plt, DB_playItem_t *after, const char *fname) { #endif { codec = avcodec_find_decoder(ctx->codec_id); - if (codec != NULL && !strcasecmp (codec->name, "alac")) { // only open alac streams + if (codec != NULL) { break; } } -- cgit v1.2.3