diff options
author | Max Kellermann <max@duempel.org> | 2009-06-08 08:41:07 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-06-08 08:41:07 +0200 |
commit | f5d4079d1114341f78d9e6a25e830182a90416af (patch) | |
tree | c39caee74d632ebe90f12febc450d8c5a94f7385 /src/decoder/ffmpeg_plugin.c | |
parent | faaf9dafe131ae8cf1dd2d0319e565a3be3cff52 (diff) | |
download | mpd-f5d4079d1114341f78d9e6a25e830182a90416af.tar.gz mpd-f5d4079d1114341f78d9e6a25e830182a90416af.tar.xz mpd-f5d4079d1114341f78d9e6a25e830182a90416af.zip |
ffmpeg: removed "new metadata api" warning
This warning is useless. I assume the author added it for debugging
purposes.
Diffstat (limited to '')
-rw-r--r-- | src/decoder/ffmpeg_plugin.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/decoder/ffmpeg_plugin.c b/src/decoder/ffmpeg_plugin.c index 285b07ee1..c22524331 100644 --- a/src/decoder/ffmpeg_plugin.c +++ b/src/decoder/ffmpeg_plugin.c @@ -350,8 +350,6 @@ static bool ffmpeg_tag_internal(struct ffmpeg_context *ctx) { AVMetadataTag *title, *author, *album, *genre, *comment, *track, *year; - g_warning("using new metadata api\n"); - title = av_metadata_get(f->metadata, "title", NULL, 0); author = av_metadata_get(f->metadata, "author", NULL, 0); album = av_metadata_get(f->metadata, "album", NULL, 0); |