we should be queueing packets regardless of recording state
This commit is contained in:
parent
fbc0729c83
commit
d4645cd94a
|
@ -650,19 +650,20 @@ Debug(5, "After av_read_frame (%d)", ret );
|
|||
return 0;
|
||||
}
|
||||
} else {
|
||||
// Not recording
|
||||
if ( videoStore ) {
|
||||
Info("Deleting videoStore instance");
|
||||
delete videoStore;
|
||||
videoStore = NULL;
|
||||
}
|
||||
|
||||
//Buffer video packets
|
||||
if ( packet->flags & AV_PKT_FLAG_KEY ) {
|
||||
packetqueue.clearQueue();
|
||||
}
|
||||
packetqueue.queuePacket(packet);
|
||||
} // end if
|
||||
|
||||
//Buffer video packets
|
||||
if ( packet->flags & AV_PKT_FLAG_KEY ) {
|
||||
packetqueue.clearQueue();
|
||||
}
|
||||
packetqueue.queuePacket(packet);
|
||||
|
||||
if ( packet->stream_index == mVideoStreamId ) {
|
||||
ret = zm_avcodec_decode_video( mVideoCodecContext, mRawFrame, &frameComplete, packet );
|
||||
if ( ret < 0 ) {
|
||||
|
|
Loading…
Reference in New Issue