summaryrefslogtreecommitdiff
path: root/plugins/ffmpeg
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-05-28 21:33:20 +0200
committerGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-05-28 21:33:20 +0200
commit77a94d817acb5c2b5a9235cd3272b1004b8465d7 (patch)
tree72a26660beaf9737c096d80879455eeeadf38637 /plugins/ffmpeg
parentc79624b24a0c662f1e1d404b87fe9559fd6900e6 (diff)
ffmpeg: fixed weird alac-related code in _insert, which was preventing adding TAK files to playlist (bug #1121)
Diffstat (limited to 'plugins/ffmpeg')
-rw-r--r--plugins/ffmpeg/ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}