mirror of
https://github.com/pvvx/RTL00MP3.git
synced 2025-07-31 12:41:06 +00:00
add and update
This commit is contained in:
parent
03ed2886cb
commit
bda4d33012
109 changed files with 73065 additions and 85 deletions
42
RTL00_SDKV35a/component/common/media/codec/aac/aac.h
Normal file
42
RTL00_SDKV35a/component/common/media/codec/aac/aac.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
#ifndef _AAC_H
|
||||
#define _AAC_H
|
||||
|
||||
#include "dlist.h" //list management
|
||||
#include "basic_types.h"
|
||||
#include "osdep_service.h"
|
||||
//#include "osdep_api.h"
|
||||
|
||||
#define AAC_DEBUG 1
|
||||
|
||||
#if AAC_DEBUG
|
||||
#define AAC_PRINTF(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#define AAC_ERROR(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#else
|
||||
#define AAC_PRINTF(fmt, args...)
|
||||
#define AAC_ERROR(fmt, args...)
|
||||
#endif
|
||||
|
||||
struct rtp_au_hdr
|
||||
{
|
||||
u32 au_size; //contain AU size in octets(header length included)
|
||||
#if 0
|
||||
u16 au_index;
|
||||
u16 au_index_delta;
|
||||
u16 cts_flag;
|
||||
u16 cts_delta;
|
||||
u16 dts_flag;
|
||||
u16 dts_delta;
|
||||
u16 rap_flag;
|
||||
u16 stream_state;
|
||||
#endif
|
||||
u32 au_header_len; //record AU header size in octets
|
||||
};
|
||||
|
||||
struct rtp_aac_obj
|
||||
{
|
||||
u16 au_headers_len; //contain AU header size in octet (we will translate it into bit-wise count before sending)
|
||||
u8 au_header_num; //contain AU header number
|
||||
// struct rtp_au_hdr *au_hdr;
|
||||
};
|
||||
|
||||
#endif /*_AAC_H*/
|
||||
139
RTL00_SDKV35a/component/common/media/codec/avcodec.h
Normal file
139
RTL00_SDKV35a/component/common/media/codec/avcodec.h
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
#ifndef _AV_CODEC_H_
|
||||
#define _AV_CODEC_H_
|
||||
|
||||
/* Is this the place to include different codec header for rtp usage?*/
|
||||
|
||||
|
||||
struct codec_info
|
||||
{
|
||||
int codec_id;
|
||||
const char codec_name[8];
|
||||
u8 pt;
|
||||
u32 clock_rate;
|
||||
u8 audio_channels;
|
||||
void *priv;
|
||||
};
|
||||
|
||||
/* media type list -- range from 0-255 stored in 1 BYTE*/
|
||||
#define AVMEDIA_TYPE_VIDEO 0
|
||||
#define AVMEDIA_TYPE_AUDIO 1
|
||||
#define AVMEDIA_TYPE_SUBTITLE 2
|
||||
#define AVMEDIA_TYPE_UNKNOWN 255
|
||||
|
||||
/*codec id list -- id must match its placing order (starting from 0) in av_codec_tables*/
|
||||
|
||||
#define AV_CODEC_ID_MJPEG 0
|
||||
#define AV_CODEC_ID_H264 1
|
||||
#define AV_CODEC_ID_PCMU 2
|
||||
#define AV_CODEC_ID_PCMA 3
|
||||
#define AV_CODEC_ID_MP4A_LATM 4
|
||||
#define AV_CODEC_ID_MP4V_ES 5
|
||||
#define AV_CODEC_ID_UNKNOWN -1
|
||||
|
||||
/*rtp payload type mapping and standard rtp payload type table -- range from 0-255 in 1 BYTE*/
|
||||
#define RTP_PT_PCMU 0
|
||||
#define RTP_PT_GSM 3
|
||||
#define RTP_PT_G723 4
|
||||
#define RTP_PT_DVI4_R8000 5
|
||||
#define RTP_PT_DVI4_R16000 6
|
||||
#define RTP_PT_LPC 7
|
||||
#define RTP_PT_PCMA 8
|
||||
#define RTP_PT_G722 9
|
||||
#define RTP_PT_L16_C2 10
|
||||
#define RTP_PT_L16_C1 11
|
||||
#define RTP_PT_QCELP 12
|
||||
#define RTP_PT_CN 13
|
||||
#define RTP_PT_MPA 14
|
||||
#define RTP_PT_G728 15
|
||||
#define RTP_PT_DVI4_R11025 16
|
||||
#define RTP_PT_DVI4_R22050 17
|
||||
#define RTP_PT_G719 18
|
||||
#define RTP_PT_CELB 25
|
||||
#define RTP_PT_JPEG 26
|
||||
#define RTP_PT_NV 28
|
||||
#define RTP_PT_H261 31
|
||||
#define RTP_PT_MPV 32
|
||||
#define RTP_PT_MP2T 33
|
||||
#define RTP_PT_H263 34
|
||||
#define RTP_PT_RTCP_BASE 72
|
||||
#define RTP_PT_DYN_BASE 96
|
||||
#define RTP_PT_UNKNOWN 255
|
||||
/* AAC PROFILE */
|
||||
#define AV_PROFILE_AAC_MAIN 0
|
||||
#define AV_PROFILE_AAC_LOW 1
|
||||
#define AV_PROFILE_AAC_SSR 2
|
||||
#define AV_PROFILE_AAC_LTP 3
|
||||
#define AV_PROFILE_AAC_HE 4
|
||||
#define AV_PROFILE_AAC_HE_V2 28
|
||||
#define AV_PROFILE_AAC_LD 22
|
||||
#define AV_PROFILE_AAC_ELD 38
|
||||
#define AV_PROFILE_MPEG2_AAC_LOW 128
|
||||
#define AV_PROFILE_MPEG2_AAC_HE 131
|
||||
|
||||
#if 0
|
||||
/* MPEG4 VIDEO PROFILE */
|
||||
#define AV_PROFILE_MPEG4_SIMPLE 0
|
||||
#define AV_PROFILE_MPEG4_SIMPLE_SCALABLE 1
|
||||
#define AV_PROFILE_MPEG4_CORE 2
|
||||
#define AV_PROFILE_MPEG4_MAIN 3
|
||||
#define AV_PROFILE_MPEG4_N_BIT 4
|
||||
#define AV_PROFILE_MPEG4_SCALABLE_TEXTURE 5
|
||||
#define AV_PROFILE_MPEG4_SIMPLE_FACE_ANIMATION 6
|
||||
#define AV_PROFILE_MPEG4_BASIC_ANIMATED_TEXTURE 7
|
||||
#define AV_PROFILE_MPEG4_HYBRID 8
|
||||
#define AV_PROFILE_MPEG4_ADVANCED_REAL_TIME 9
|
||||
#define AV_PROFILE_MPEG4_CORE_SCALABLE 10
|
||||
#define AV_PROFILE_MPEG4_ADVANCED_CODING 11
|
||||
#define AV_PROFILE_MPEG4_ADVANCED_CORE 12
|
||||
#define AV_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE 13
|
||||
#define AV_PROFILE_MPEG4_SIMPLE_STUDIO 14
|
||||
#define AV_PROFILE_MPEG4_ADVANCED_SIMPLE 15
|
||||
/* DTS */
|
||||
#define AV_PROFILE_DTS 20
|
||||
#define AV_PROFILE_DTS_ES 30
|
||||
#define AV_PROFILE_DTS_96_24 40
|
||||
#define AV_PROFILE_DTS_HD_HRA 50
|
||||
#define AV_PROFILE_DTS_HD_MA 60
|
||||
#define AV_PROFILE_DTS_EXPRESS 70
|
||||
/* MPEG2 */
|
||||
#define AV_PROFILE_MPEG2_422 0
|
||||
#define AV_PROFILE_MPEG2_HIGH 1
|
||||
#define AV_PROFILE_MPEG2_SS 2
|
||||
#define AV_PROFILE_MPEG2_SNR_SCALABLE 3
|
||||
#define AV_PROFILE_MPEG2_MAIN 4
|
||||
#define AV_PROFILE_MPEG2_SIMPLE 5
|
||||
/* H264 */
|
||||
#define AV_PROFILE_H264_CONSTRAINED (1<<9) // 8+1; constraint_set1_flag
|
||||
#define AV_PROFILE_H264_INTRA (1<<11) // 8+3; constraint_set3_flag
|
||||
|
||||
#define AV_PROFILE_H264_BASELINE 66
|
||||
#define AV_PROFILE_H264_CONSTRAINED_BASELINE (66|FF_PROFILE_H264_CONSTRAINED)
|
||||
#define AV_PROFILE_H264_MAIN 77
|
||||
#define AV_PROFILE_H264_EXTENDED 88
|
||||
#define AV_PROFILE_H264_HIGH 100
|
||||
#define AV_PROFILE_H264_HIGH_10 110
|
||||
#define AV_PROFILE_H264_HIGH_10_INTRA (110|FF_PROFILE_H264_INTRA)
|
||||
#define AV_PROFILE_H264_HIGH_422 122
|
||||
#define AV_PROFILE_H264_HIGH_422_INTRA (122|FF_PROFILE_H264_INTRA)
|
||||
#define AV_PROFILE_H264_HIGH_444 144
|
||||
#define AV_PROFILE_H264_HIGH_444_PREDICTIVE 244
|
||||
#define AV_PROFILE_H264_HIGH_444_INTRA (244|FF_PROFILE_H264_INTRA)
|
||||
#define AV_PROFILE_H264_CAVLC_444 44
|
||||
#endif
|
||||
|
||||
/*av codec tables*/
|
||||
//#include "section_config.h"
|
||||
//SDRAM_DATA_SECTION
|
||||
static const struct codec_info av_codec_tables[] = {
|
||||
{AV_CODEC_ID_MJPEG, "MJPEG", RTP_PT_JPEG, 90000, 0, 0},
|
||||
{AV_CODEC_ID_H264, "H264", RTP_PT_DYN_BASE, 90000, 0, 0},
|
||||
{AV_CODEC_ID_PCMU, "PCMU", RTP_PT_PCMU, 8000, 1, 0},
|
||||
{AV_CODEC_ID_PCMA, "PCMA", RTP_PT_PCMA, 8000, 1, 0},
|
||||
{AV_CODEC_ID_MP4A_LATM, "MP4A", RTP_PT_DYN_BASE, 16000, 2, 0},
|
||||
{AV_CODEC_ID_MP4V_ES, "MP4V", RTP_PT_DYN_BASE, 90000, 0, 0},
|
||||
};
|
||||
#define AVCODEC_SIZE 6
|
||||
|
||||
void get_codec_by_id(struct codec_info *c, int id);
|
||||
|
||||
#endif //_AV_CODEC_H_
|
||||
27
RTL00_SDKV35a/component/common/media/codec/g711/g711.h
Normal file
27
RTL00_SDKV35a/component/common/media/codec/g711/g711.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
|
||||
#ifndef _G711_H
|
||||
#define _G711_H
|
||||
|
||||
#include "dlist.h" //list management
|
||||
#include "basic_types.h"
|
||||
#include "osdep_service.h"
|
||||
//#include "osdep_api.h"
|
||||
|
||||
#define G711_DEBUG 1
|
||||
|
||||
#if G711_DEBUG
|
||||
#define G711_PRINTF(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#define G711_ERROR(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#else
|
||||
#define G711_PRINTF(fmt, args...)
|
||||
#define G711_ERROR(fmt, args...)
|
||||
#endif
|
||||
|
||||
|
||||
//struct rtp_g711_obj {
|
||||
//};
|
||||
|
||||
|
||||
/*for debug purpose*/
|
||||
|
||||
#endif /*_G711_H*/
|
||||
75
RTL00_SDKV35a/component/common/media/codec/h264/h264.h
Normal file
75
RTL00_SDKV35a/component/common/media/codec/h264/h264.h
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
#ifndef _H264_H
|
||||
#define _H264_H
|
||||
|
||||
#include "dlist.h" //list management
|
||||
#include "basic_types.h"
|
||||
#include "osdep_service.h"
|
||||
//#include "osdep_api.h"
|
||||
|
||||
#define H264_DEBUG 0
|
||||
|
||||
#if H264_DEBUG
|
||||
#define H264_PRINTF(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#define H264_ERROR(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#else
|
||||
#define H264_PRINTF(fmt, args...)
|
||||
#define H264_ERROR(fmt, args...)
|
||||
#endif
|
||||
|
||||
#define MAX_NUM_NAL_PER_FRM 4
|
||||
|
||||
struct rtp_nal_obj
|
||||
{
|
||||
u8 start_code_len;
|
||||
unsigned char nal_header;
|
||||
u8 is_fu_start;
|
||||
u8 is_fu_end;
|
||||
u8 must_not_drop;
|
||||
u8 do_not_send;
|
||||
int offset;
|
||||
};
|
||||
|
||||
struct rtp_h264_obj
|
||||
{
|
||||
int num_nal;
|
||||
struct rtp_nal_obj nal_obj[MAX_NUM_NAL_PER_FRM];
|
||||
};
|
||||
|
||||
#endif /*_H264_H*/
|
||||
|
||||
#if 0
|
||||
|
||||
#ifndef _H264_H
|
||||
#define _H264_H
|
||||
|
||||
#include "dlist.h" //list management
|
||||
#include "basic_types.h"
|
||||
#include "osdep_service.h"
|
||||
//#include "osdep_api.h"
|
||||
|
||||
#define H264_DEBUG 0
|
||||
|
||||
#if H264_DEBUG
|
||||
#define H264_PRINTF(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#define H264_ERROR(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#else
|
||||
#define H264_PRINTF(fmt, args...)
|
||||
#define H264_ERROR(fmt, args...)
|
||||
#endif
|
||||
|
||||
/* in favor of rtp fragmentation */
|
||||
struct rtp_h264_obj
|
||||
{
|
||||
u8 start_code_len;
|
||||
unsigned char nal_header;
|
||||
u8 is_fu_start;
|
||||
u8 is_fu_end;
|
||||
u8 must_not_drop;
|
||||
};
|
||||
|
||||
|
||||
/********************************h264 over rtp******************************/
|
||||
|
||||
|
||||
#endif /*_H264_H*/
|
||||
#endif
|
||||
62
RTL00_SDKV35a/component/common/media/codec/mjpeg/mjpeg.h
Normal file
62
RTL00_SDKV35a/component/common/media/codec/mjpeg/mjpeg.h
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
|
||||
#ifndef _MJPEG_H
|
||||
#define _MJPEG_H
|
||||
|
||||
#include "dlist.h" //list management
|
||||
#include "basic_types.h"
|
||||
#include "osdep_service.h"
|
||||
//#include "osdep_api.h"
|
||||
|
||||
#define MJPEG_DEBUG 0
|
||||
|
||||
#if MJPEG_DEBUG
|
||||
#define MJPEG_PRINTF(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#define MJPEG_ERROR(fmt, args...) printf("\n\r%s: " fmt, __FUNCTION__, ## args)
|
||||
#else
|
||||
#define MJPEG_PRINTF(fmt, args...)
|
||||
#define MJPEG_ERROR(fmt, args...)
|
||||
#endif
|
||||
|
||||
struct jpeghdr {
|
||||
unsigned int tspec:8; /* type-specific field */
|
||||
unsigned int off:24; /* fragment byte offset */
|
||||
u8 type; /* id of jpeg decoder params */
|
||||
u8 q; /* quantization factor (or table id) */
|
||||
u8 width; /* frame width in 8 pixel blocks */
|
||||
u8 height; /* frame height in 8 pixel blocks */
|
||||
};
|
||||
|
||||
struct jpeghdr_rst {
|
||||
u16 dri; /*restart interval*/
|
||||
unsigned int f:1; /*restart first bit flag*/
|
||||
unsigned int l:1; /*restart last bit flag*/
|
||||
unsigned int count:14; /*restart count*/
|
||||
};
|
||||
|
||||
|
||||
struct jpeghdr_qtable {
|
||||
u8 mbz;
|
||||
u8 precision;
|
||||
u16 length;
|
||||
};
|
||||
|
||||
#define RTP_JPEG_RESTART 0x40
|
||||
#define USE_EXPLICIT_DQT 128
|
||||
#define USE_IMPLICIT_DQT 0
|
||||
|
||||
struct rtp_jpeg_obj
|
||||
{
|
||||
struct jpeghdr jpghdr;
|
||||
struct jpeghdr_rst rsthdr;
|
||||
struct jpeghdr_qtable qtable;
|
||||
u8 lqt[64*2]; /* Luma Quantizer table */
|
||||
u8 cqt[64*2]; /* Croma Quantizer table */
|
||||
int hdr_len;
|
||||
int frame_offset;
|
||||
};
|
||||
|
||||
/*for debug purpose*/
|
||||
void dumpJpegHeader(struct jpeghdr *jpghdr);
|
||||
void dumpRstDeader(struct jpeghdr_rst *rsthdr);
|
||||
|
||||
#endif /*_MJPEG_H*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue