Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SDLVideoError enum name #411

Merged
merged 2 commits into from Jul 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions SmartDeviceLink/SDLStreamingMediaManager.h
Expand Up @@ -17,11 +17,12 @@
NS_ASSUME_NONNULL_BEGIN

typedef NS_ENUM(NSInteger, SDLStreamingVideoError) {
SDLStreamingVideoErrorHeadUnitNACK,
SDLSTreamingVideoErrorInvalidOperatingSystemVersion,
SDLStreamingVideoErrorConfigurationCompressionSessionCreationFailure,
SDLStreamingVideoErrorConfigurationAllocationFailure,
SDLStreamingVideoErrorConfigurationCompressionSessionSetPropertyFailure
SDLStreamingVideoErrorHeadUnitNACK = 0,
SDLSTreamingVideoErrorInvalidOperatingSystemVersion __deprecated_enum_msg("Use SDLStreamingVideoErrorInvalidOperatingSystemVersion instead") = 1,
SDLStreamingVideoErrorInvalidOperatingSystemVersion = 1,
SDLStreamingVideoErrorConfigurationCompressionSessionCreationFailure = 2,
SDLStreamingVideoErrorConfigurationAllocationFailure = 3,
SDLStreamingVideoErrorConfigurationCompressionSessionSetPropertyFailure = 4
};

typedef NS_ENUM(NSInteger, SDLStreamingAudioError) {
Expand Down