mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 22:00:34 -06:00
Have audio source type listen for audio add notifications in their engine and apply audio settings if it is relevant. FFMPEG movie source now generates proper UUIDs for the PCMPlayer
62 lines
2.7 KiB
Objective-C
62 lines
2.7 KiB
Objective-C
//
|
|
// CSNotifications.m
|
|
// CocoaSplit
|
|
//
|
|
// Created by Zakk on 9/7/14.
|
|
// Copyright (c) 2014 Zakk. All rights reserved.
|
|
//
|
|
|
|
|
|
NSString *const CSNotificationLayoutAdded = @"CSNotificationLayoutAdded";
|
|
NSString *const CSNotificationLayoutDeleted = @"CSNotificationLayoutDeleted";
|
|
NSString *const CSNotificationLayoutSaved = @"CSNotificationLayoutSaved";
|
|
NSString *const CSNotificationLayoutCanvasChanged = @"CSNotificationLayoutCanvasChanged";
|
|
NSString *const CSNotificationLayoutFramerateChanged = @"CSNotificationLayoutFramerateChanged";
|
|
|
|
|
|
NSString *const CSNotificationSequenceAdded = @"CSNotificationSequenceAdded";
|
|
NSString *const CSNotificationSequenceDeleted = @"CSNotificationSequenceDeleted";
|
|
NSString *const CSNotificationSequenceSaved = @"CSNotificationSequenceSaved";
|
|
|
|
NSString *const CSNotificationStreamStarted = @"CSNotificationStreamStarted";
|
|
NSString *const CSNotificationStreamStopped = @"CSNotificationStreamStopped";
|
|
|
|
|
|
NSString *const CSNotificationOutputAdded = @"CSNotificationOutputAdded";
|
|
NSString *const CSNotificationOutputDeleted = @"CSNotificationOutputDeleted";
|
|
NSString *const CSNotificationOutputErrored = @"CSNotificationOutputErrored";
|
|
NSString *const CSNotificationOutputStarted = @"CSNotificationOutputStarted";
|
|
NSString *const CSNotificationOutputRestarted = @"CSNotificationOutputRestarted";
|
|
NSString *const CSNotificationOutputSetActive = @"CSNotificationOutputSetActive";
|
|
NSString *const CSNotificationOutputSetInactive = @"CSNotificationOutputSetInactive";
|
|
NSString *const CSNotificationOutputReconfigured = @"CSNotificationOutputReconfigured";
|
|
NSString *const CSNotificationOutputStopped = @"CSNotificationOutputStopped";
|
|
|
|
|
|
|
|
|
|
NSString *const CSNotificationCompressorAdded = @"CSNotificationCompressorAdded";
|
|
NSString *const CSNotificationCompressorDeleted = @"CSNotificationCompressorDeleted";
|
|
NSString *const CSNotificationCompressorRenamed = @"CSNotificationCompressorRenamed";
|
|
NSString *const CSNotificationCompressorReconfigured = @"CSNotificationCompressorReconfigured";
|
|
|
|
|
|
NSString *const CSNotificationInputAdded = @"CSNotificationInputAdded";
|
|
NSString *const CSNotificationInputDeleted = @"CSNotificationInputDeleted";
|
|
|
|
NSString *const CSNotificationInputSelected = @"CSNotificationInputSelected";
|
|
|
|
NSString *const CSNotificationInputAttached = @"CSNotificationInputAttached";
|
|
NSString *const CSNotificationInputDetached = @"CSNotificationInputDetached";
|
|
|
|
NSString *const CSNotificationLayoutModeChanged = @"CSNotificationLayoutModeChanged";
|
|
|
|
NSString *const CSNotificationThemeChanged = @"CSNotificationThemeChanged";
|
|
|
|
|
|
|
|
NSString *const CSNotificationStatisticsUpdate = @"CSNotificationStatisticsUpdate";
|
|
|
|
NSString *const CSNotificationAudioAdded = @"CSNotificationAudioAdded";
|
|
NSString *const CSNotificationAudioRemoved = @"CSNotificationAudioRemoved";
|
|
|