Revert last commit

This commit is contained in:
Sebastian Dröge 2017-04-10 14:35:44 +03:00
parent 1e63a820a6
commit 92b40d02a4
2 changed files with 9 additions and 9 deletions

View file

@ -655,10 +655,10 @@ the info structure in the image's #GstSample)</doc>
glib:nick="illustration">
<doc xml:space="preserve">Illustration</doc>
</member>
<member name="artist_logo"
<member name="band_artist_logo"
value="17"
c:identifier="GST_TAG_IMAGE_TYPE_ARTIST_LOGO"
glib:nick="artist-logo">
c:identifier="GST_TAG_IMAGE_TYPE_BAND_ARTIST_LOGO"
glib:nick="band-artist-logo">
<doc xml:space="preserve">Band/artist logotype</doc>
</member>
<member name="publisher_studio_logo"
@ -708,10 +708,10 @@ the info structure in the image's #GstSample)</doc>
<doc xml:space="preserve">copyright and license notices
must be kept intact</doc>
</member>
<member name="requires_attributions"
<member name="requires_attribution"
value="512"
c:identifier="GST_TAG_LICENSE_REQUIRES_ATTRIBUTIONS"
glib:nick="requires-attributions">
c:identifier="GST_TAG_LICENSE_REQUIRES_ATTRIBUTION"
glib:nick="requires-attribution">
<doc xml:space="preserve">credit must be given to
copyright holder and/or author</doc>
</member>

View file

@ -51,7 +51,7 @@ pub enum GstTagImageType {
VideoCapture = 14,
Fish = 15,
Illustration = 16,
ArtistLogo = 17,
BandArtistLogo = 17,
PublisherStudioLogo = 18,
}
pub const GST_TAG_IMAGE_TYPE_NONE: GstTagImageType = GstTagImageType::None;
@ -72,7 +72,7 @@ pub const GST_TAG_IMAGE_TYPE_DURING_PERFORMANCE: GstTagImageType = GstTagImageTy
pub const GST_TAG_IMAGE_TYPE_VIDEO_CAPTURE: GstTagImageType = GstTagImageType::VideoCapture;
pub const GST_TAG_IMAGE_TYPE_FISH: GstTagImageType = GstTagImageType::Fish;
pub const GST_TAG_IMAGE_TYPE_ILLUSTRATION: GstTagImageType = GstTagImageType::Illustration;
pub const GST_TAG_IMAGE_TYPE_ARTIST_LOGO: GstTagImageType = GstTagImageType::ArtistLogo;
pub const GST_TAG_IMAGE_TYPE_BAND_ARTIST_LOGO: GstTagImageType = GstTagImageType::BandArtistLogo;
pub const GST_TAG_IMAGE_TYPE_PUBLISHER_STUDIO_LOGO: GstTagImageType = GstTagImageType::PublisherStudioLogo;
// Constants
@ -121,7 +121,7 @@ bitflags! {
const GST_TAG_LICENSE_PERMITS_DERIVATIVE_WORKS = 4,
const GST_TAG_LICENSE_PERMITS_SHARING = 8,
const GST_TAG_LICENSE_REQUIRES_NOTICE = 256,
const GST_TAG_LICENSE_REQUIRES_ATTRIBUTIONS = 512,
const GST_TAG_LICENSE_REQUIRES_ATTRIBUTION = 512,
const GST_TAG_LICENSE_REQUIRES_SHARE_ALIKE = 1024,
const GST_TAG_LICENSE_REQUIRES_SOURCE_CODE = 2048,
const GST_TAG_LICENSE_REQUIRES_COPYLEFT = 4096,