Blame view

trunk/src/kernel/srs_kernel_codec.hpp 6.6 KB
winlin authored
1 2 3
/*
The MIT License (MIT)
4
Copyright (c) 2013-2014 winlin
winlin authored
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
winlin authored
24 25
#ifndef SRS_KERNEL_CODEC_HPP
#define SRS_KERNEL_CODEC_HPP
winlin authored
26 27

/*
winlin authored
28
#include <srs_kernel_codec.hpp>
winlin authored
29 30 31 32
*/

#include <srs_core.hpp>
33 34 35 36 37
// AACPacketType IF SoundFormat == 10 UI8
// The following values are defined:
//     0 = AAC sequence header
//     1 = AAC raw
enum SrsCodecAudioType
38
{
39 40 41
    // set to the max value to reserved, for array map.
    SrsCodecAudioTypeReserved                        = 2,
    
42 43
    SrsCodecAudioTypeSequenceHeader                 = 0,
    SrsCodecAudioTypeRawData                         = 1,
44 45 46 47 48
};

// E.4.3.1 VIDEODATA
// Frame Type UB [4]
// Type of video frame. The following values are defined:
49 50 51 52 53
//     1 = key frame (for AVC, a seekable frame)
//     2 = inter frame (for AVC, a non-seekable frame)
//     3 = disposable inter frame (H.263 only)
//     4 = generated key frame (reserved for server use only)
//     5 = video info/command frame
54 55
enum SrsCodecVideoAVCFrame
{
56
    // set to the max value to reserved, for array map.
57
    SrsCodecVideoAVCFrameReserved                    = 0,
58
    SrsCodecVideoAVCFrameReserved1                    = 6,
59 60 61 62 63 64
    
    SrsCodecVideoAVCFrameKeyFrame                     = 1,
    SrsCodecVideoAVCFrameInterFrame                 = 2,
    SrsCodecVideoAVCFrameDisposableInterFrame         = 3,
    SrsCodecVideoAVCFrameGeneratedKeyFrame            = 4,
    SrsCodecVideoAVCFrameVideoInfoFrame                = 5,
65 66 67 68
};

// AVCPacketType IF CodecID == 7 UI8
// The following values are defined:
69 70 71 72
//     0 = AVC sequence header
//     1 = AVC NALU
//     2 = AVC end of sequence (lower level NALU sequence ender is
//         not required or supported)
73 74
enum SrsCodecVideoAVCType
{
75 76
    // set to the max value to reserved, for array map.
    SrsCodecVideoAVCTypeReserved                    = 3,
77 78 79 80
    
    SrsCodecVideoAVCTypeSequenceHeader                 = 0,
    SrsCodecVideoAVCTypeNALU                         = 1,
    SrsCodecVideoAVCTypeSequenceHeaderEOF             = 2,
81 82
};
83 84 85 86 87 88 89 90 91 92 93
// E.4.3.1 VIDEODATA
// CodecID UB [4]
// Codec Identifier. The following values are defined:
//     2 = Sorenson H.263
//     3 = Screen video
//     4 = On2 VP6
//     5 = On2 VP6 with alpha channel
//     6 = Screen video version 2
//     7 = AVC
enum SrsCodecVideo
{
94
    // set to the max value to reserved, for array map.
95
    SrsCodecVideoReserved                = 0,
96 97
    SrsCodecVideoReserved1                = 1,
    SrsCodecVideoReserved2                = 8,
98 99 100 101 102 103 104 105 106
    
    SrsCodecVideoSorensonH263             = 2,
    SrsCodecVideoScreenVideo             = 3,
    SrsCodecVideoOn2VP6                 = 4,
    SrsCodecVideoOn2VP6WithAlphaChannel = 5,
    SrsCodecVideoScreenVideoVersion2     = 6,
    SrsCodecVideoAVC                     = 7,
};
107 108
// SoundFormat UB [4] 
// Format of SoundData. The following values are defined:
109 110 111 112 113 114 115 116 117 118 119 120 121 122
//     0 = Linear PCM, platform endian
//     1 = ADPCM
//     2 = MP3
//     3 = Linear PCM, little endian
//     4 = Nellymoser 16 kHz mono
//     5 = Nellymoser 8 kHz mono
//     6 = Nellymoser
//     7 = G.711 A-law logarithmic PCM
//     8 = G.711 mu-law logarithmic PCM
//     9 = reserved
//     10 = AAC
//     11 = Speex
//     14 = MP3 8 kHz
//     15 = Device-specific sound
123 124 125 126 127
// Formats 7, 8, 14, and 15 are reserved.
// AAC is supported in Flash Player 9,0,115,0 and higher.
// Speex is supported in Flash Player 10 and higher.
enum SrsCodecAudio
{
128 129 130
    // set to the max value to reserved, for array map.
    SrsCodecAudioReserved1                = 16,
    
131 132 133 134 135 136 137 138 139 140 141 142 143 144
    SrsCodecAudioLinearPCMPlatformEndian             = 0,
    SrsCodecAudioADPCM                                 = 1,
    SrsCodecAudioMP3                                 = 2,
    SrsCodecAudioLinearPCMLittleEndian                 = 3,
    SrsCodecAudioNellymoser16kHzMono                 = 4,
    SrsCodecAudioNellymoser8kHzMono                 = 5,
    SrsCodecAudioNellymoser                         = 6,
    SrsCodecAudioReservedG711AlawLogarithmicPCM        = 7,
    SrsCodecAudioReservedG711MuLawLogarithmicPCM    = 8,
    SrsCodecAudioReserved                             = 9,
    SrsCodecAudioAAC                                 = 10,
    SrsCodecAudioSpeex                                 = 11,
    SrsCodecAudioReservedMP3_8kHz                     = 14,
    SrsCodecAudioReservedDeviceSpecificSound         = 15,
145 146
};
147
/**
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
* the FLV/RTMP supported audio sample rate.
* Sampling rate. The following values are defined:
* 0 = 5.5 kHz = 5512 Hz
* 1 = 11 kHz = 11025 Hz
* 2 = 22 kHz = 22050 Hz
* 3 = 44 kHz = 44100 Hz
*/
enum SrsCodecAudioSampleRate
{
    // set to the max value to reserved, for array map.
    SrsCodecAudioSampleRateReserved                 = 4,
    
    SrsCodecAudioSampleRate5512                     = 0,
    SrsCodecAudioSampleRate11025                    = 1,
    SrsCodecAudioSampleRate22050                    = 2,
    SrsCodecAudioSampleRate44100                    = 3,
};

/**
winlin authored
167
* Annex E. The FLV File Format
168
* @see SrsAvcAacCodec for the media stream codec.
winlin authored
169
*/
170
class SrsFlvCodec
winlin authored
171
{
172
public:
173 174
    SrsFlvCodec();
    virtual ~SrsFlvCodec();
175
// the following function used to finger out the flv/rtmp packet detail.
winlin authored
176
public:
177 178 179
    /**
    * only check the frame_type, not check the codec type.
    */
180
    static bool video_is_keyframe(char* data, int size);
181 182 183
    /**
    * check codec h264, keyframe, sequence header
    */
184
    static bool video_is_sequence_header(char* data, int size);
185 186 187
    /**
    * check codec aac, sequence header
    */
188
    static bool audio_is_sequence_header(char* data, int size);
189 190 191
    /**
    * check codec h264.
    */
192
    static bool video_is_h264(char* data, int size);
193 194 195
    /**
    * check codec aac.
    */
196
    static bool audio_is_aac(char* data, int size);
winlin authored
197 198
};
199
#endif