sunplusApp
Results
2
comments of
sunplusApp
#define MD_GET_SP(_t) ((_t)->context[0].__jmpbuf[13]) 看了下这行大概的意思是获取获取SP指针?编译报错是context[0]是个long类型变量,遂将上面代码改成 #define MD_GET_SP(_t) ((_t)->context[JB_RSP] 这样就编过了,而且测试好用。
Thank you. I need to read H264 data from RTP to achieve two functions. The first function is to store H264 as an mp4 file, and the second function is...