demux: mkv: handle WAVE_FORMAT_MPEG_ADTS_AAC
[vlc.git] / modules / gui / macosx / VLCInputManager.h
blobf1d4a1dc41b6bfc5918b1a1a59b4abfc5616faa2
1 /*****************************************************************************
2 * VLCInputManager.h: MacOS X interface module
3 *****************************************************************************
4 * Copyright (C) 2015 VLC authors and VideoLAN
5 * $Id$
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20 *****************************************************************************/
22 #import <Cocoa/Cocoa.h>
24 #include <vlc_common.h>
25 #import <vlc_interface.h>
27 #import <IOKit/pwr_mgt/IOPMLib.h> /* for sleep prevention */
30 @class VLCMain;
32 @interface VLCInputManager : NSObject
34 - (id)initWithMain:(VLCMain *)o_mainObj;
36 - (void)inputThreadChanged;
38 - (void)playbackStatusUpdated;
39 - (void)playbackPositionUpdated;
41 - (void)resumeItunesPlayback:(id)sender;
43 - (BOOL)hasInput;
45 @end