1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

for #738, add mp4 demuxer to librtmp

This commit is contained in:
winlin 2017-01-30 17:19:07 +08:00
parent 3f3e98e9db
commit 011ac4f6a9
2 changed files with 36 additions and 0 deletions

View file

@ -501,6 +501,17 @@ extern srs_bool srs_h264_startswith_annexb(
char* h264_raw_data, int h264_raw_size,
int* pnb_start_code
);
/*************************************************************
*************************************************************
* MP4 muxer and demuxer.
* @example /trunk/research/librtmp/srs_ingest_mp4.c
*************************************************************
*************************************************************/
typedef void* srs_mp4_t;
/* Open mp4 file for muxer(write) or demuxer(read). */
extern srs_mp4_t srs_mp4_open_read(const char* file);
extern void srs_mp4_close(srs_mp4_t mp4);
/*************************************************************
**************************************************************