Changeset 61
- Timestamp:
- 11/30/07 09:37:46 (1 year ago)
- Files:
-
- trunk/A52/ACShepA52DecoderPublic.r (modified) (4 diffs)
- trunk/A52Codec.xcodeproj/project.pbxproj (modified) (1 diff)
- trunk/AC3MovieImport/AC3MovieImport.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/A52/ACShepA52DecoderPublic.r
r1 r61 12 12 #define COMP_MANUF 'shep' 13 13 #define VERSION 0x00010000 14 #define NAME "A TSC A/52 and AC-3 Decoder"14 #define NAME "AC3" 15 15 #define DESCRIPTION "An AudioCodec that decodes A/52 and AC-3 into linear PCM data" 16 16 #define ENTRY_POINT "ACShepA52DecoderEntry" … … 22 22 #define kComponentFlags 0 23 23 #define kComponentVersion 0x00010000 24 #define kComponentName "A TSC A/52 and AC-3 Decoder"24 #define kComponentName "AC3" 25 25 #define kComponentInfo "An AudioCodec that decodes A/52 and AC-3 into linear PCM data" 26 26 #define kComponentEntryPoint "ACShepA52DecoderEntry" … … 35 35 #define COMP_MANUF 'shep' 36 36 #define VERSION 0x00010000 37 #define NAME "A TSC A/52 and AC-3 Decoder"37 #define NAME "AC3" 38 38 #define DESCRIPTION "An AudioCodec that decodes A/52 and AC-3 into linear PCM data" 39 39 #define ENTRY_POINT "ACShepA52DecoderEntry" … … 45 45 #define kComponentFlags 0 46 46 #define kComponentVersion 0x00010000 47 #define kComponentName "A TSC A/52 and AC-3 Decoder"47 #define kComponentName "AC3" 48 48 #define kComponentInfo "An AudioCodec that decodes A/52 and AC-3 into linear PCM data" 49 49 #define kComponentEntryPoint "ACShepA52DecoderEntry" trunk/A52Codec.xcodeproj/project.pbxproj
r55 r61 548 548 isa = PBXProject; 549 549 buildConfigurationList = F5BDACAF0A20A00100FF4884 /* Build configuration list for PBXProject "A52Codec" */; 550 compatibilityVersion = "Xcode 2.4"; 550 551 hasScannedForEncodings = 1; 551 552 mainGroup = F5A548DA02879EB701000102; 552 553 productRefGroup = F5A548E802879F3901000102 /* Products */; 553 554 projectDirPath = ""; 555 projectRoot = ""; 554 556 targets = ( 555 557 F5DA8EE20A54C702004A41D0 /* Build All */, trunk/AC3MovieImport/AC3MovieImport.c
r35 r61 41 41 * 42 42 */ 43 44 #define kAudioFormatAVIAC3 0x6D732000 43 45 44 46 #include <QuickTime/QuickTime.h> … … 463 465 AudioStreamBasicDescription absd; 464 466 memset(&absd, 0, sizeof(absd)); 465 absd.mFormatID = kAudioFormatA C3;467 absd.mFormatID = kAudioFormatAVIAC3; 466 468 absd.mSampleRate = sample_rate; 467 469 if(flags & A52_LFE)
