57 lines
1.6 KiB
C
57 lines
1.6 KiB
C
|
|
/***************************************************************************************
|
||
|
|
*
|
||
|
|
* IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
|
||
|
|
*
|
||
|
|
* By downloading, copying, installing or using the software you agree to this license.
|
||
|
|
* If you do not agree to this license, do not download, install,
|
||
|
|
* copy or use the software.
|
||
|
|
*
|
||
|
|
* Copyright (C) 2014-2024, Happytimesoft Corporation, all rights reserved.
|
||
|
|
*
|
||
|
|
* Redistribution and use in binary forms, with or without modification, are permitted.
|
||
|
|
*
|
||
|
|
* Unless required by applicable law or agreed to in writing, software distributed
|
||
|
|
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||
|
|
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
|
||
|
|
* language governing permissions and limitations under the License.
|
||
|
|
*
|
||
|
|
****************************************************************************************/
|
||
|
|
|
||
|
|
#ifndef H264_H
|
||
|
|
#define H264_H
|
||
|
|
|
||
|
|
|
||
|
|
/* NAL unit types */
|
||
|
|
enum
|
||
|
|
{
|
||
|
|
H264_NAL_SLICE = 1,
|
||
|
|
H264_NAL_DPA = 2,
|
||
|
|
H264_NAL_DPB = 3,
|
||
|
|
H264_NAL_DPC = 4,
|
||
|
|
H264_NAL_IDR = 5,
|
||
|
|
H264_NAL_SEI = 6,
|
||
|
|
H264_NAL_SPS = 7,
|
||
|
|
H264_NAL_PPS = 8,
|
||
|
|
H264_NAL_AUD = 9,
|
||
|
|
H264_NAL_END_SEQUENCE = 10,
|
||
|
|
H264_NAL_END_STREAM = 11,
|
||
|
|
H264_NAL_FILLER_DATA = 12,
|
||
|
|
H264_NAL_SPS_EXT = 13,
|
||
|
|
H264_NAL_AUXILIARY_SLICE = 19,
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
typedef struct
|
||
|
|
{
|
||
|
|
uint8 sps[256];
|
||
|
|
int sps_len;
|
||
|
|
|
||
|
|
uint8 pps[256];
|
||
|
|
int pps_len;
|
||
|
|
} H264ParamSets;
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
|