2006-05-07 13:19:23 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Stephen F. Booth <me@sbooth.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2021-02-23 04:48:23 +00:00
|
|
|
#include <AudioToolbox/AudioFile.h>
|
2021-10-02 03:22:26 +00:00
|
|
|
#include <AudioToolbox/AudioFormat.h>
|
2006-05-13 04:50:06 +00:00
|
|
|
#include <AudioToolbox/ExtendedAudioFile.h>
|
2006-05-07 13:19:23 +00:00
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
#import "Plugin.h"
|
|
|
|
|
2006-05-13 04:50:06 +00:00
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
@interface CoreAudioDecoder : NSObject <CogDecoder>
|
2006-05-07 13:19:23 +00:00
|
|
|
{
|
2020-03-09 03:05:03 +00:00
|
|
|
@public long _lastPosition;
|
2021-08-25 08:57:05 +00:00
|
|
|
@public long _fileSize;
|
2020-03-09 03:05:03 +00:00
|
|
|
id<CogSource> _audioSource;
|
|
|
|
AudioFileID _audioFile;
|
2006-05-13 04:50:06 +00:00
|
|
|
ExtAudioFileRef _in;
|
2020-03-09 07:23:58 +00:00
|
|
|
|
2021-05-07 22:33:20 +00:00
|
|
|
BOOL _audioFile_opened;
|
|
|
|
BOOL _in_opened;
|
|
|
|
|
2007-02-24 20:36:27 +00:00
|
|
|
int bitrate;
|
|
|
|
int bitsPerSample;
|
2013-10-05 21:15:09 +00:00
|
|
|
BOOL floatingPoint;
|
2007-02-24 20:36:27 +00:00
|
|
|
int channels;
|
|
|
|
float frequency;
|
2007-11-24 20:16:27 +00:00
|
|
|
long totalFrames;
|
2021-10-02 03:22:26 +00:00
|
|
|
|
|
|
|
NSString* codec;
|
2006-05-07 13:19:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|