forked from mirrors/gstreamer-rs
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
3aac87c07f
commit
44ce6b8a66
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue