mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-05 17:19:42 +00:00
tags: fix album tag definition
The Album tag should be defined using the GST_TAG_ALBUM constant instead of GST_TAG_ARTIST_SORTNAME.
This commit is contained in:
parent
69af6a5975
commit
6f867443c9
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,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,
|
||||
|
|
Loading…
Reference in a new issue