From 773de38bd9e018e48cf5b0a4f009dedce090bf0a Mon Sep 17 00:00:00 2001 From: k44 Date: Tue, 16 Dec 2014 18:43:05 +0100 Subject: [PATCH] playlist/embcue: fix filename suffix detection The definition of the playlist_plugin struct member of the embcue plugin was incorrect. --- NEWS | 2 ++ src/playlist/EmbeddedCuePlaylistPlugin.cxx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 40df6aed9..451b37783 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,6 @@ ver 0.18.21 (not yet released) +* playlist + - embcue: fix filename suffix detection * decoder - ffmpeg: fix time stamp underflow diff --git a/src/playlist/EmbeddedCuePlaylistPlugin.cxx b/src/playlist/EmbeddedCuePlaylistPlugin.cxx index 2734fa59e..9ad71b8a8 100644 --- a/src/playlist/EmbeddedCuePlaylistPlugin.cxx +++ b/src/playlist/EmbeddedCuePlaylistPlugin.cxx @@ -178,7 +178,7 @@ const struct playlist_plugin embcue_playlist_plugin = { embcue_playlist_open_uri, nullptr, + nullptr, embcue_playlist_suffixes, nullptr, - nullptr, };