Stabiliteitsfixes en in theorie werkende H.264 en AAC, maar je weet maar nooit...
This commit is contained in:
parent
a34a9b69cc
commit
94f587563c
10 changed files with 144 additions and 54 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,7 +1,7 @@
|
||||||
#ignore object files and nonsense like that
|
#ignore object files and nonsense like that
|
||||||
*.[oa]
|
*.[oa]
|
||||||
Client_PLS
|
Client/Client_PLS
|
||||||
Server_PLS
|
Server/Server_PLS
|
||||||
Connector_RTMP
|
Connector_RTMP/Connector_RTMP
|
||||||
*~
|
*~
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,5 @@ clean:
|
||||||
run-test: $(OUT)
|
run-test: $(OUT)
|
||||||
rm -rf ./meh
|
rm -rf ./meh
|
||||||
mkfifo ./meh
|
mkfifo ./meh
|
||||||
|
cat ./meh &
|
||||||
nc -l -p 1935 -e './Connector_RTMP 2>./meh'
|
nc -l -p 1935 -e './Connector_RTMP 2>./meh'
|
||||||
run-cat:
|
|
||||||
cat < ./meh
|
|
||||||
|
|
|
@ -10,19 +10,21 @@ void FLV_Readheader(SWUnixSocket & ss){
|
||||||
}
|
}
|
||||||
}//FLV_Readheader
|
}//FLV_Readheader
|
||||||
|
|
||||||
|
void FLV_Dump(){FLV_len = 0;}
|
||||||
|
|
||||||
bool FLV_GetPacket(SWUnixSocket & ss){
|
bool FLV_GetPacket(SWUnixSocket & ss){
|
||||||
if (FLVbs < 15){FLVbuffer = (char*)realloc(FLVbuffer, 15); FLVbs = 15;}
|
if (FLVbs < 15){FLVbuffer = (char*)realloc(FLVbuffer, 15); FLVbs = 15;}
|
||||||
//if received a whole header, receive a whole packet
|
//if received a whole header, receive a whole packet
|
||||||
//if not, retry header next pass
|
//if not, retry header next pass
|
||||||
if (ss.frecv(FLVbuffer, 11, &SWBerr) == 11){
|
if (FLV_len == 0){
|
||||||
FLV_len = FLVbuffer[3] + 15;
|
if (ss.frecv(FLVbuffer, 11, &SWBerr) == 11){
|
||||||
FLV_len += (FLVbuffer[2] << 8);
|
FLV_len = FLVbuffer[3] + 15;
|
||||||
FLV_len += (FLVbuffer[1] << 16);
|
FLV_len += (FLVbuffer[2] << 8);
|
||||||
if (FLVbs < FLV_len){FLVbuffer = (char*)realloc(FLVbuffer, FLV_len);FLVbs = FLV_len;}
|
FLV_len += (FLVbuffer[1] << 16);
|
||||||
while (ss.frecv(FLVbuffer+11, FLV_len-11, &SWBerr) != FLV_len-11){
|
if (FLVbs < FLV_len){FLVbuffer = (char*)realloc(FLVbuffer, FLV_len);FLVbs = FLV_len;}
|
||||||
//wait
|
|
||||||
}
|
}
|
||||||
return true;
|
}else{
|
||||||
|
if (ss.frecv(FLVbuffer+11, FLV_len-11, &SWBerr) == FLV_len-11){return true;}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}//FLV_GetPacket
|
}//FLV_GetPacket
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include "../sockets/SocketW.h"
|
#include "../sockets/SocketW.h"
|
||||||
bool ready4data = false;//set to true when streaming starts
|
bool ready4data = false;//set to true when streaming starts
|
||||||
bool inited = false;
|
bool inited = false;
|
||||||
|
bool stopparsing = false;
|
||||||
timeval lastrec;
|
timeval lastrec;
|
||||||
|
|
||||||
#include "parsechunks.cpp" //chunkstream parsing
|
#include "parsechunks.cpp" //chunkstream parsing
|
||||||
|
@ -44,9 +45,10 @@ int main(){
|
||||||
fprintf(stderr, "Starting processing...\n");
|
fprintf(stderr, "Starting processing...\n");
|
||||||
#endif
|
#endif
|
||||||
while (!feof(stdin)){
|
while (!feof(stdin)){
|
||||||
select(1, &pollset, 0, 0, &timeout);
|
//select(1, &pollset, 0, 0, &timeout);
|
||||||
//only parse input from stdin if available or not yet init'ed
|
//only parse input from stdin if available or not yet init'ed
|
||||||
if (FD_ISSET(0, &pollset) || !ready4data || (snd_cnt - snd_window_at >= snd_window_size)){parseChunk();fflush(stdout);}// || !ready4data?
|
//FD_ISSET(0, &pollset) || //NOTE: Polling does not work? WHY?!? WHY DAMN IT?!?
|
||||||
|
if ((!ready4data || (snd_cnt - snd_window_at >= snd_window_size)) && !stopparsing){parseChunk();fflush(stdout);}
|
||||||
if (ready4data){
|
if (ready4data){
|
||||||
if (!inited){
|
if (!inited){
|
||||||
//we are ready, connect the socket!
|
//we are ready, connect the socket!
|
||||||
|
@ -54,7 +56,7 @@ int main(){
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
fprintf(stderr, "Could not connect to server!\n");
|
fprintf(stderr, "Could not connect to server!\n");
|
||||||
#endif
|
#endif
|
||||||
return 1;
|
return 0;
|
||||||
}
|
}
|
||||||
FLV_Readheader(ss);//read the header, we don't want it
|
FLV_Readheader(ss);//read the header, we don't want it
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
@ -69,17 +71,29 @@ int main(){
|
||||||
ts += FLVbuffer[4] * 256*256;
|
ts += FLVbuffer[4] * 256*256;
|
||||||
ts += FLVbuffer[5] * 256;
|
ts += FLVbuffer[5] * 256;
|
||||||
ts += FLVbuffer[6];
|
ts += FLVbuffer[6];
|
||||||
if (fts == 0){fts = ts;ftst = getNowMS();}
|
if (ts != 0){
|
||||||
ts -= fts;
|
if (fts == 0){fts = ts;ftst = getNowMS();}
|
||||||
FLVbuffer[7] = ts / (256*256*256);
|
ts -= fts;
|
||||||
FLVbuffer[4] = ts / (256*256);
|
FLVbuffer[7] = ts / (256*256*256);
|
||||||
FLVbuffer[5] = ts / 256;
|
FLVbuffer[4] = ts / (256*256);
|
||||||
FLVbuffer[6] = ts % 256;
|
FLVbuffer[5] = ts / 256;
|
||||||
ts += ftst;
|
FLVbuffer[6] = ts % 256;
|
||||||
|
ts += ftst;
|
||||||
|
}else{
|
||||||
|
ftst = getNowMS();
|
||||||
|
FLVbuffer[7] = ftst / (256*256*256);
|
||||||
|
FLVbuffer[4] = ftst / (256*256);
|
||||||
|
FLVbuffer[5] = ftst / 256;
|
||||||
|
FLVbuffer[6] = ftst % 256;
|
||||||
|
}
|
||||||
SendMedia((unsigned char)FLVbuffer[0], (unsigned char *)FLVbuffer+11, FLV_len-15, ts);
|
SendMedia((unsigned char)FLVbuffer[0], (unsigned char *)FLVbuffer+11, FLV_len-15, ts);
|
||||||
//if (FLVbuffer[0] == 9){
|
FLV_Dump();//dump packet and get ready for next
|
||||||
// fprintf(stderr, "first 2 bytes: 0x%hhx 0x%hhx\n", FLVbuffer[11], FLVbuffer[12]);
|
}
|
||||||
//}
|
if ((SWBerr != SWBaseSocket::ok) && (SWBerr != SWBaseSocket::notReady)){
|
||||||
|
#ifdef DEBUG
|
||||||
|
fprintf(stderr, "No more data! :-( (%s)\n", SWBerr.get_error().c_str());
|
||||||
|
#endif
|
||||||
|
return 0;//no more input possible! Fail immediately.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -89,5 +103,8 @@ int main(){
|
||||||
SendCTL(3, rec_cnt);//send ack (msg 3)
|
SendCTL(3, rec_cnt);//send ack (msg 3)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifdef DEBUG
|
||||||
|
fprintf(stderr, "User disconnected.\n");
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}//main
|
}//main
|
||||||
|
|
|
@ -28,7 +28,7 @@ void parseChunk(){
|
||||||
fprintf(stderr, "CTRL: Acknowledgement\n");
|
fprintf(stderr, "CTRL: Acknowledgement\n");
|
||||||
#endif
|
#endif
|
||||||
snd_window_at = ntohl(*(int*)next.data);
|
snd_window_at = ntohl(*(int*)next.data);
|
||||||
//maybe better? snd_window_at = snd_cnt;
|
snd_window_at = snd_cnt;
|
||||||
break;
|
break;
|
||||||
case 4:{
|
case 4:{
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
@ -205,6 +205,11 @@ void parseChunk(){
|
||||||
amfreply.getContentP(3)->addContent(AMFType("details", "PLS"));
|
amfreply.getContentP(3)->addContent(AMFType("details", "PLS"));
|
||||||
amfreply.getContentP(3)->addContent(AMFType("clientid", (double)1));
|
amfreply.getContentP(3)->addContent(AMFType("clientid", (double)1));
|
||||||
SendChunk(4, 20, 1, amfreply.Pack());
|
SendChunk(4, 20, 1, amfreply.Pack());
|
||||||
|
amfreply = AMFType("container", (unsigned char)0xFF);
|
||||||
|
amfreply.addContent(AMFType("", "|RtmpSampleAccess"));//status reply
|
||||||
|
amfreply.addContent(AMFType("", (double)1, 0x01));//bool true - audioaccess
|
||||||
|
amfreply.addContent(AMFType("", (double)1, 0x01));//bool true - videoaccess
|
||||||
|
SendChunk(4, 20, next.msg_stream_id, amfreply.Pack());
|
||||||
chunk_snd_max = 1024*1024;
|
chunk_snd_max = 1024*1024;
|
||||||
SendCTL(1, chunk_snd_max);//send chunk size max (msg 1)
|
SendCTL(1, chunk_snd_max);//send chunk size max (msg 1)
|
||||||
ready4data = true;//start sending video data!
|
ready4data = true;//start sending video data!
|
||||||
|
@ -226,8 +231,9 @@ void parseChunk(){
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
fprintf(stderr, "Unknown chunk received!\n");
|
fprintf(stderr, "Unknown chunk received! Probably protocol corruption, stopping parsing of incoming data.\n", next.msg_type_id);
|
||||||
#endif
|
#endif
|
||||||
|
stopparsing = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}//parseChunk
|
}//parseChunk
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
|
|
||||||
struct buffer{
|
struct buffer{
|
||||||
int number;
|
int number;
|
||||||
|
bool iskeyframe;
|
||||||
FLV_Pack * FLV;
|
FLV_Pack * FLV;
|
||||||
};//buffer
|
};//buffer
|
||||||
|
|
|
@ -37,9 +37,11 @@ int main( int argc, char * argv[] ) {
|
||||||
|
|
||||||
unlink("/tmp/shared_socket");
|
unlink("/tmp/shared_socket");
|
||||||
listener.bind("/tmp/shared_socket");
|
listener.bind("/tmp/shared_socket");
|
||||||
listener.listen();
|
listener.listen(50);
|
||||||
listener.set_timeout(0,50000);
|
listener.set_timeout(0,50000);
|
||||||
|
unsigned char packtype;
|
||||||
|
bool gotVideoInfo = false;
|
||||||
|
bool gotAudioInfo = false;
|
||||||
while(std::cin.good()) {
|
while(std::cin.good()) {
|
||||||
loopcount ++;
|
loopcount ++;
|
||||||
//invalidate the current buffer
|
//invalidate the current buffer
|
||||||
|
@ -49,25 +51,62 @@ int main( int argc, char * argv[] ) {
|
||||||
FLV_Readheader();
|
FLV_Readheader();
|
||||||
} else {
|
} else {
|
||||||
FLV_GetPacket(ringbuf[current_buffer]->FLV);
|
FLV_GetPacket(ringbuf[current_buffer]->FLV);
|
||||||
//if video frame? (id 9) check for incoming connections
|
packtype = ringbuf[current_buffer]->FLV->data[0];
|
||||||
if (ringbuf[current_buffer]->FLV->data[0] == 0x12){
|
//store metadata, if available
|
||||||
|
if (packtype == 0x12){
|
||||||
metabuflen = ringbuf[current_buffer]->FLV->len;
|
metabuflen = ringbuf[current_buffer]->FLV->len;
|
||||||
metabuffer = (char*)realloc(metabuffer, metabuflen);
|
metabuffer = (char*)realloc(metabuffer, metabuflen);
|
||||||
memcpy(metabuffer, ringbuf[current_buffer]->FLV->data, metabuflen);
|
memcpy(metabuffer, ringbuf[current_buffer]->FLV->data, metabuflen);
|
||||||
|
std::cout << "Received metadata!" << std::endl;
|
||||||
|
gotVideoInfo = false;
|
||||||
|
gotAudioInfo = false;
|
||||||
|
}
|
||||||
|
if (!gotVideoInfo && ringbuf[current_buffer]->FLV->isKeyframe){
|
||||||
|
if ((ringbuf[current_buffer]->FLV->data[11] & 0x0f) == 7){//avc packet
|
||||||
|
if (ringbuf[current_buffer]->FLV->data[12] == 0){
|
||||||
|
ringbuf[current_buffer]->FLV->data[4] = 0;//timestamp to zero
|
||||||
|
ringbuf[current_buffer]->FLV->data[5] = 0;//timestamp to zero
|
||||||
|
ringbuf[current_buffer]->FLV->data[6] = 0;//timestamp to zero
|
||||||
|
metabuffer = (char*)realloc(metabuffer, metabuflen + ringbuf[current_buffer]->FLV->len);
|
||||||
|
memcpy(metabuffer+metabuflen, ringbuf[current_buffer]->FLV->data, ringbuf[current_buffer]->FLV->len);
|
||||||
|
metabuflen += ringbuf[current_buffer]->FLV->len;
|
||||||
|
gotVideoInfo = true;
|
||||||
|
std::cout << "Received video configuration!" << std::endl;
|
||||||
|
}
|
||||||
|
}else{gotVideoInfo = true;}//non-avc = no config...
|
||||||
|
}
|
||||||
|
if (!gotAudioInfo && (packtype == 0x08)){
|
||||||
|
if (((ringbuf[current_buffer]->FLV->data[11] & 0xf0) >> 4) == 10){//aac packet
|
||||||
|
ringbuf[current_buffer]->FLV->data[4] = 0;//timestamp to zero
|
||||||
|
ringbuf[current_buffer]->FLV->data[5] = 0;//timestamp to zero
|
||||||
|
ringbuf[current_buffer]->FLV->data[6] = 0;//timestamp to zero
|
||||||
|
metabuffer = (char*)realloc(metabuffer, metabuflen + ringbuf[current_buffer]->FLV->len);
|
||||||
|
memcpy(metabuffer+metabuflen, ringbuf[current_buffer]->FLV->data, ringbuf[current_buffer]->FLV->len);
|
||||||
|
metabuflen += ringbuf[current_buffer]->FLV->len;
|
||||||
|
gotAudioInfo = true;
|
||||||
|
std::cout << "Received audio configuration!" << std::endl;
|
||||||
|
}else{gotAudioInfo = true;}//no aac = no config...
|
||||||
|
}
|
||||||
|
//on keyframe set start point
|
||||||
|
if (packtype == 0x09){
|
||||||
|
if (((ringbuf[current_buffer]->FLV->data[11] & 0xf0) >> 4) == 1){lastproper = current_buffer;}
|
||||||
}
|
}
|
||||||
incoming = listener.accept(&BError);
|
incoming = listener.accept(&BError);
|
||||||
if (incoming){
|
if (incoming){
|
||||||
connectionList.push_back(user(incoming));
|
connectionList.push_back(user(incoming));
|
||||||
//send the FLV header
|
//send the FLV header
|
||||||
std::cout << "Client connected." << std::endl;
|
|
||||||
connectionList.back().MyBuffer = lastproper;
|
connectionList.back().MyBuffer = lastproper;
|
||||||
connectionList.back().MyBuffer_num = ringbuf[lastproper]->number;
|
connectionList.back().MyBuffer_num = -1;
|
||||||
//TODO: Do this more nicely?
|
//TODO: Do this more nicely?
|
||||||
if (connectionList.back().Conn->send(FLVHeader,13,0) != 13){
|
if (connectionList.back().Conn->send(FLVHeader,13,&BError) != 13){
|
||||||
connectionList.back().disconnect("failed to receive the header!");
|
connectionList.back().disconnect("failed to receive the header!");
|
||||||
|
}else{
|
||||||
|
if (connectionList.back().Conn->send(metabuffer,metabuflen,&BError) != metabuflen){
|
||||||
|
connectionList.back().disconnect("failed to receive metadata!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (connectionList.back().Conn->send(metabuffer,metabuflen,0) != metabuflen){
|
if (BError != SWBaseSocket::ok){
|
||||||
connectionList.back().disconnect("failed to receive metadata!");
|
connectionList.back().disconnect("Socket error: " + BError.get_error());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ringbuf[current_buffer]->number = loopcount;
|
ringbuf[current_buffer]->number = loopcount;
|
||||||
|
@ -77,7 +116,6 @@ int main( int argc, char * argv[] ) {
|
||||||
(*connIt).Send(ringbuf, buffers);
|
(*connIt).Send(ringbuf, buffers);
|
||||||
}
|
}
|
||||||
//keep track of buffers
|
//keep track of buffers
|
||||||
lastproper = current_buffer;
|
|
||||||
current_buffer++;
|
current_buffer++;
|
||||||
current_buffer %= buffers;
|
current_buffer %= buffers;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
ffmpeg -re -i "$1" -b 1024000 -ar 11025 -f flv - | ./Server_PLS 5000 5
|
ffmpeg -re -i "$1" -b 1024000 -ar 11025 -f flv - 2> /dev/null | ./Server_PLS 500
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,19 +11,28 @@ class user{
|
||||||
SWUnixSocket * Conn;
|
SWUnixSocket * Conn;
|
||||||
int MyBuffer;
|
int MyBuffer;
|
||||||
int MyBuffer_num;
|
int MyBuffer_num;
|
||||||
|
int MyBuffer_len;
|
||||||
|
int MyNum;
|
||||||
|
void * lastpointer;
|
||||||
|
static int UserCount;
|
||||||
|
static SWBaseSocket::SWBaseError err;
|
||||||
};//user
|
};//user
|
||||||
|
|
||||||
|
int user::UserCount = 0;
|
||||||
|
SWBaseSocket::SWBaseError user::err;
|
||||||
|
|
||||||
user::user(SWBaseSocket * newConn) {
|
user::user(SWBaseSocket * newConn) {
|
||||||
Conn = (SWUnixSocket*)newConn;
|
Conn = (SWUnixSocket*)newConn;
|
||||||
is_connected = (Conn != 0);
|
is_connected = (Conn != 0);
|
||||||
|
MyNum = UserCount++;
|
||||||
|
std::cout << "User " << MyNum << " connected" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void user::disconnect(std::string reason) {
|
void user::disconnect(std::string reason) {
|
||||||
if (Conn) {
|
if (Conn) {
|
||||||
Conn->disconnect();
|
Conn->disconnect(&err);
|
||||||
Conn = NULL;
|
Conn = NULL;
|
||||||
std::cout << "Disconnected user: " << reason << std::endl;
|
std::cout << "Disconnected user " << MyNum << ": " << reason << std::endl;
|
||||||
}
|
}
|
||||||
is_connected = false;
|
is_connected = false;
|
||||||
}
|
}
|
||||||
|
@ -32,24 +41,38 @@ void user::Send(buffer ** ringbuf, int buffers){
|
||||||
//not connected? cancel
|
//not connected? cancel
|
||||||
if (!is_connected){return;}
|
if (!is_connected){return;}
|
||||||
//still waiting for next buffer? check it
|
//still waiting for next buffer? check it
|
||||||
if (MyBuffer_num < 0){MyBuffer_num = ringbuf[MyBuffer]->number;}
|
if (MyBuffer_num < 0){
|
||||||
//still waiting? don't crash - wait longer.
|
MyBuffer_num = ringbuf[MyBuffer]->number;
|
||||||
if (MyBuffer_num < 0){return;}
|
//still waiting? don't crash - wait longer.
|
||||||
//buffer number changed? disconnect
|
if (MyBuffer_num < 0){
|
||||||
if ((ringbuf[MyBuffer]->number != MyBuffer_num)){
|
return;
|
||||||
disconnect("Buffer number changed (connection too slow)");
|
}else{
|
||||||
|
MyBuffer_len = ringbuf[MyBuffer]->FLV->len;
|
||||||
|
lastpointer = ringbuf[MyBuffer]->FLV->data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (lastpointer != ringbuf[MyBuffer]->FLV->data){
|
||||||
|
disconnect("Buffer resize at wrong time... had to disconnect");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SWBaseSocket::SWBaseError err;
|
int ret = Conn->fsend(ringbuf[MyBuffer]->FLV->data, MyBuffer_len, &err);
|
||||||
int ret = Conn->fsend(ringbuf[MyBuffer]->FLV->data, ringbuf[MyBuffer]->FLV->len, &err);
|
|
||||||
if ((err != SWBaseSocket::ok) && (err != SWBaseSocket::notReady)){
|
if ((err != SWBaseSocket::ok) && (err != SWBaseSocket::notReady)){
|
||||||
disconnect("Socket error");
|
disconnect("Socket error: " + err.get_error());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (ret == ringbuf[MyBuffer]->FLV->len){
|
if (ret == MyBuffer_len){
|
||||||
//completed a send - switch to next buffer
|
//completed a send - switch to next buffer
|
||||||
MyBuffer++;
|
if ((ringbuf[MyBuffer]->number != MyBuffer_num)){
|
||||||
MyBuffer %= buffers;
|
std::cout << "Warning: User " << MyNum << " was send corrupt video data and send to the next keyframe!" << std::endl;
|
||||||
|
do{
|
||||||
|
MyBuffer++;
|
||||||
|
MyBuffer %= buffers;
|
||||||
|
}while(!ringbuf[MyBuffer]->FLV->isKeyframe);
|
||||||
|
}else{
|
||||||
|
MyBuffer++;
|
||||||
|
MyBuffer %= buffers;
|
||||||
|
}
|
||||||
MyBuffer_num = -1;
|
MyBuffer_num = -1;
|
||||||
|
lastpointer = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
struct FLV_Pack {
|
struct FLV_Pack {
|
||||||
int len;
|
int len;
|
||||||
int buf;
|
int buf;
|
||||||
|
bool isKeyframe;
|
||||||
char * data;
|
char * data;
|
||||||
};//FLV_Pack
|
};//FLV_Pack
|
||||||
|
|
||||||
|
@ -43,4 +44,6 @@ void FLV_GetPacket(FLV_Pack *& p){
|
||||||
p->len += (p->data[1] << 16);
|
p->len += (p->data[1] << 16);
|
||||||
if (p->buf < p->len){p->data = (char*)realloc(p->data, p->len);p->buf = p->len;}
|
if (p->buf < p->len){p->data = (char*)realloc(p->data, p->len);p->buf = p->len;}
|
||||||
fread(p->data+11,1,p->len-11,stdin);
|
fread(p->data+11,1,p->len-11,stdin);
|
||||||
|
p->isKeyframe = false;
|
||||||
|
if ((p->data[0] == 0x09) && (((p->data[11] & 0xf0) >> 4) == 1)){p->isKeyframe = true;}
|
||||||
}//FLV_GetPacket
|
}//FLV_GetPacket
|
||||||
|
|
Loading…
Add table
Reference in a new issue