From 44ce6b8a6664a2e4dd5790bd0d30f595ec75c4d1 Mon Sep 17 00:00:00 2001 From: Sami Jaktholm Date: Fri, 28 Dec 2018 19:51:28 +0200 Subject: [PATCH] tags: fix album tag definition The Album tag should be defined using the GST_TAG_ALBUM constant instead of GST_TAG_ARTIST_SORTNAME. --- gstreamer/src/tags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer/src/tags.rs b/gstreamer/src/tags.rs index 2b9e6723f..708d09efe 100644 --- a/gstreamer/src/tags.rs +++ b/gstreamer/src/tags.rs @@ -59,7 +59,7 @@ impl_tag!( TAG_ARTIST_SORTNAME, GST_TAG_ARTIST_SORTNAME ); -impl_tag!(Album, &'a str, TAG_ALBUM, GST_TAG_ARTIST_SORTNAME); +impl_tag!(Album, &'a str, TAG_ALBUM, GST_TAG_ALBUM); impl_tag!( AlbumSortname, &'a str,