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
69af6a5975
commit
6f867443c9
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ impl_tag!(
|
||||||
TAG_ARTIST_SORTNAME,
|
TAG_ARTIST_SORTNAME,
|
||||||
GST_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!(
|
impl_tag!(
|
||||||
AlbumSortname,
|
AlbumSortname,
|
||||||
&'a str,
|
&'a str,
|
||||||
|
|
Loading…
Reference in a new issue