-
Notifications
You must be signed in to change notification settings - Fork 1
/
CompressCodecUtils.c
71 lines (66 loc) · 1.85 KB
/
CompressCodecUtils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* CompressCodecUtils.c
* Created by Graham Booker on 8/14/10.
* This file is part of Perian.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "CompressCodecUtils.h"
#include <QuickTime/QuickTime.h>
#include "CodecIDs.h"
OSType compressStreamFourCC(OSType original)
{
switch (original) {
case kH264CodecType:
return kCompressedAVC1;
case kMPEG4VisualCodecType:
return kCompressedMP4V;
case kAudioFormatMPEGLayer3:
return kCompressedMP3;
case kAudioFormatMPEGLayer2:
return kCompressedMP2;
case kAudioFormatMPEGLayer1:
return kCompressedMP1;
case kAudioFormatAC3:
return kCompressedAC3;
case kAudioFormatDTS:
return kCompressedDTS;
default:
break;
}
return 0;
}
OSType originalStreamFourCC(OSType compress)
{
switch (compress) {
case kCompressedAVC1:
return kH264CodecType;
case kCompressedMP4V:
return kMPEG4VisualCodecType;
case kCompressedMP1:
return kAudioFormatMPEGLayer1;
case kCompressedMP2:
return kAudioFormatMPEGLayer2;
case kCompressedMP3:
return kAudioFormatMPEGLayer3;
case kCompressedAC3:
return kAudioFormatAC3;
case kCompressedDTS:
return kAudioFormatDTS;
default:
break;
}
return 0;
}