summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Goddard <michael.goddard@nokia.com>2011-10-27 10:45:13 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-27 03:09:27 +0200
commit0ba1c8f4f6a66a70a3334b6f63755d3ca079ea69 (patch)
treea4e11a8afd59c48a08059f2495f073b7a3675de4
parentd3ceea30f86368f0232b6e216c50fdebbb42611b (diff)
Remove the last bits of QtMultimediaKit (*).
Except a comment about it in the module overview. Change-Id: I22d9111d7917d1a3259ee1e525fd52501733454e Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
-rw-r--r--qtmultimediakit.pro4
-rw-r--r--src/multimedia/qtmedianamespace.h142
2 files changed, 0 insertions, 146 deletions
diff --git a/qtmultimediakit.pro b/qtmultimediakit.pro
deleted file mode 100644
index 55aa22007..000000000
--- a/qtmultimediakit.pro
+++ /dev/null
@@ -1,4 +0,0 @@
-# This is only so that Qt5.git still builds, since it's expecting
-# the .pro file to match the directory name
-include(qtmultimedia.pro)
-
diff --git a/src/multimedia/qtmedianamespace.h b/src/multimedia/qtmedianamespace.h
index 34a1a9ff4..474dfe223 100644
--- a/src/multimedia/qtmedianamespace.h
+++ b/src/multimedia/qtmedianamespace.h
@@ -53,11 +53,6 @@ QT_BEGIN_NAMESPACE
QT_MODULE(Multimedia)
-// For now, for backwards source compatibility
-// we have a copy of these enums
-// But if you add a new enum value, you won't need
-// to copy it to the QtMMK enums since it can't have
-// been used before.
namespace QtMultimedia
{
enum MetaData
@@ -194,143 +189,6 @@ namespace QtMultimedia
}
-// For legacy support
-namespace QtMultimediaKit
-{
- enum MetaData
- {
- // Common
- Title = QtMultimedia::Title,
- SubTitle,
- Author,
- Comment,
- Description,
- Category,
- Genre,
- Year,
- Date,
- UserRating,
- Keywords,
- Language,
- Publisher,
- Copyright,
- ParentalRating,
- RatingOrganisation,
-
- // Media
- Size,
- MediaType,
- Duration,
-
- // Audio
- AudioBitRate,
- AudioCodec,
- AverageLevel,
- ChannelCount,
- PeakValue,
- SampleRate,
-
- // Music
- AlbumTitle,
- AlbumArtist,
- ContributingArtist,
- Composer,
- Conductor,
- Lyrics,
- Mood,
- TrackNumber,
- TrackCount,
-
- CoverArtUrlSmall,
- CoverArtUrlLarge,
-
- // Image/Video
- Resolution,
- PixelAspectRatio,
-
- // Video
- VideoFrameRate,
- VideoBitRate,
- VideoCodec,
-
- PosterUrl,
-
- // Movie
- ChapterNumber,
- Director,
- LeadPerformer,
- Writer,
-
- // Photos
- CameraManufacturer,
- CameraModel,
- Event,
- Subject,
- Orientation,
- ExposureTime,
- FNumber,
- ExposureProgram,
- ISOSpeedRatings,
- ExposureBiasValue,
- DateTimeOriginal,
- DateTimeDigitized,
- SubjectDistance,
- MeteringMode,
- LightSource,
- Flash,
- FocalLength,
- ExposureMode,
- WhiteBalance,
- DigitalZoomRatio,
- FocalLengthIn35mmFilm,
- SceneCaptureType,
- GainControl,
- Contrast,
- Saturation,
- Sharpness,
- DeviceSettingDescription,
-
- PosterImage,
- CoverArtImage,
- ThumbnailImage
-
- };
-
- enum SupportEstimate
- {
- NotSupported = QtMultimedia::NotSupported,
- MaybeSupported,
- ProbablySupported,
- PreferredService
- };
-
- enum EncodingQuality
- {
- VeryLowQuality = QtMultimedia::VeryLowQuality,
- LowQuality,
- NormalQuality,
- HighQuality,
- VeryHighQuality
- };
-
- enum EncodingMode
- {
- ConstantQualityEncoding = QtMultimedia::ConstantQualityEncoding,
- ConstantBitRateEncoding,
- AverageBitRateEncoding,
- TwoPassEncoding
- };
-
- enum AvailabilityError
- {
- NoError = QtMultimedia::NoError,
- ServiceMissingError,
- BusyError,
- ResourceError
- };
-
-}
-
QT_END_NAMESPACE
Q_DECLARE_METATYPE(QtMultimedia::AvailabilityError)