fix should only write out the queue if we are starting a new event
This commit is contained in:
parent
55c6e5a6db
commit
9d19e2587c
|
@ -100,6 +100,7 @@ void FfmpegCamera::Initialise()
|
||||||
av_log_set_level( AV_LOG_QUIET );
|
av_log_set_level( AV_LOG_QUIET );
|
||||||
|
|
||||||
av_register_all();
|
av_register_all();
|
||||||
|
avformat_network_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
void FfmpegCamera::Terminate()
|
void FfmpegCamera::Terminate()
|
||||||
|
@ -145,31 +146,20 @@ int FfmpegCamera::Capture( Image &image )
|
||||||
}
|
}
|
||||||
|
|
||||||
AVPacket packet;
|
AVPacket packet;
|
||||||
uint8_t* directbuffer;
|
|
||||||
|
|
||||||
/* Request a writeable buffer of the target image */
|
|
||||||
directbuffer = image.WriteBuffer(width, height, colours, subpixelorder);
|
|
||||||
if(directbuffer == NULL) {
|
|
||||||
Error("Failed requesting writeable buffer for the captured image.");
|
|
||||||
return (-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
int frameComplete = false;
|
int frameComplete = false;
|
||||||
while ( !frameComplete )
|
while ( !frameComplete ) {
|
||||||
{
|
|
||||||
int avResult = av_read_frame( mFormatContext, &packet );
|
int avResult = av_read_frame( mFormatContext, &packet );
|
||||||
if ( avResult < 0 )
|
if ( avResult < 0 ) {
|
||||||
{
|
|
||||||
char errbuf[AV_ERROR_MAX_STRING_SIZE];
|
char errbuf[AV_ERROR_MAX_STRING_SIZE];
|
||||||
av_strerror(avResult, errbuf, AV_ERROR_MAX_STRING_SIZE);
|
av_strerror(avResult, errbuf, AV_ERROR_MAX_STRING_SIZE);
|
||||||
if (
|
if (
|
||||||
// Check if EOF.
|
// Check if EOF.
|
||||||
(avResult == AVERROR_EOF || (mFormatContext->pb && mFormatContext->pb->eof_reached)) ||
|
(avResult == AVERROR_EOF || (mFormatContext->pb && mFormatContext->pb->eof_reached)) ||
|
||||||
// Check for Connection failure.
|
// Check for Connection failure.
|
||||||
(avResult == -110)
|
(avResult == -110)
|
||||||
)
|
) {
|
||||||
{
|
Info( "av_read_frame returned \"%s\". Reopening stream.", errbuf );
|
||||||
Info( "av_read_frame returned \"%s\". Reopening stream.", errbuf);
|
|
||||||
ReopenFfmpeg();
|
ReopenFfmpeg();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -178,8 +168,7 @@ int FfmpegCamera::Capture( Image &image )
|
||||||
}
|
}
|
||||||
Debug( 5, "Got packet from stream %d", packet.stream_index );
|
Debug( 5, "Got packet from stream %d", packet.stream_index );
|
||||||
// What about audio stream? Maybe someday we could do sound detection...
|
// What about audio stream? Maybe someday we could do sound detection...
|
||||||
if ( packet.stream_index == mVideoStreamId )
|
if ( packet.stream_index == mVideoStreamId ) {
|
||||||
{
|
|
||||||
#if LIBAVCODEC_VERSION_CHECK(52, 23, 0, 23, 0)
|
#if LIBAVCODEC_VERSION_CHECK(52, 23, 0, 23, 0)
|
||||||
if ( avcodec_decode_video2( mCodecContext, mRawFrame, &frameComplete, &packet ) < 0 )
|
if ( avcodec_decode_video2( mCodecContext, mRawFrame, &frameComplete, &packet ) < 0 )
|
||||||
#else
|
#else
|
||||||
|
@ -189,36 +178,45 @@ int FfmpegCamera::Capture( Image &image )
|
||||||
|
|
||||||
Debug( 4, "Decoded video packet at frame %d", frameCount );
|
Debug( 4, "Decoded video packet at frame %d", frameCount );
|
||||||
|
|
||||||
if ( frameComplete )
|
if ( frameComplete ) {
|
||||||
{
|
Debug( 4, "Got frame %d", frameCount );
|
||||||
Debug( 3, "Got frame %d", frameCount );
|
|
||||||
|
uint8_t* directbuffer;
|
||||||
|
|
||||||
|
/* Request a writeable buffer of the target image */
|
||||||
|
directbuffer = image.WriteBuffer(width, height, colours, subpixelorder);
|
||||||
|
if(directbuffer == NULL) {
|
||||||
|
Error("Failed requesting writeable buffer for the captured image.");
|
||||||
|
return (-1);
|
||||||
|
}
|
||||||
|
|
||||||
#if LIBAVUTIL_VERSION_CHECK(54, 6, 0, 6, 0)
|
#if LIBAVUTIL_VERSION_CHECK(54, 6, 0, 6, 0)
|
||||||
av_image_fill_arrays(mFrame->data, mFrame->linesize,
|
av_image_fill_arrays(mFrame->data, mFrame->linesize,
|
||||||
directbuffer, imagePixFormat, width, height, 1);
|
directbuffer, imagePixFormat, width, height, 1);
|
||||||
#else
|
#else
|
||||||
avpicture_fill( (AVPicture *)mFrame, directbuffer,
|
avpicture_fill( (AVPicture *)mFrame, directbuffer,
|
||||||
imagePixFormat, width, height);
|
imagePixFormat, width, height);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAVE_LIBSWSCALE
|
#if HAVE_LIBSWSCALE
|
||||||
if(mConvertContext == NULL) {
|
if(mConvertContext == NULL) {
|
||||||
mConvertContext = sws_getContext( mCodecContext->width, mCodecContext->height, mCodecContext->pix_fmt, width, height, imagePixFormat, SWS_BICUBIC, NULL, NULL, NULL );
|
mConvertContext = sws_getContext( mCodecContext->width, mCodecContext->height, mCodecContext->pix_fmt, width, height, imagePixFormat, SWS_BICUBIC, NULL, NULL, NULL );
|
||||||
|
|
||||||
if(mConvertContext == NULL)
|
if(mConvertContext == NULL)
|
||||||
Fatal( "Unable to create conversion context for %s", mPath.c_str() );
|
Fatal( "Unable to create conversion context for %s", mPath.c_str() );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( sws_scale( mConvertContext, mRawFrame->data, mRawFrame->linesize, 0, mCodecContext->height, mFrame->data, mFrame->linesize ) < 0 )
|
if ( sws_scale( mConvertContext, mRawFrame->data, mRawFrame->linesize, 0, mCodecContext->height, mFrame->data, mFrame->linesize ) < 0 )
|
||||||
Fatal( "Unable to convert raw format %u to target format %u at frame %d", mCodecContext->pix_fmt, imagePixFormat, frameCount );
|
Fatal( "Unable to convert raw format %u to target format %u at frame %d", mCodecContext->pix_fmt, imagePixFormat, frameCount );
|
||||||
#else // HAVE_LIBSWSCALE
|
#else // HAVE_LIBSWSCALE
|
||||||
Fatal( "You must compile ffmpeg with the --enable-swscale option to use ffmpeg cameras" );
|
Fatal( "You must compile ffmpeg with the --enable-swscale option to use ffmpeg cameras" );
|
||||||
#endif // HAVE_LIBSWSCALE
|
#endif // HAVE_LIBSWSCALE
|
||||||
|
|
||||||
frameCount++;
|
frameCount++;
|
||||||
} // end if frameComplete
|
} // end if frameComplete
|
||||||
} else {
|
} else {
|
||||||
Debug( 4, "Different stream_index %d", packet.stream_index );
|
Debug( 4, "Different stream_index %d", packet.stream_index );
|
||||||
} // end if packet.stream_index == mVideoStreamId
|
} // end if packet.stream_index == mVideoStreamId
|
||||||
#if LIBAVCODEC_VERSION_CHECK(57, 8, 0, 12, 100)
|
#if LIBAVCODEC_VERSION_CHECK(57, 8, 0, 12, 100)
|
||||||
av_packet_unref( &packet);
|
av_packet_unref( &packet);
|
||||||
#else
|
#else
|
||||||
|
@ -301,7 +299,7 @@ int FfmpegCamera::OpenFfmpeg() {
|
||||||
Debug ( 1, "Calling av_find_stream_info" );
|
Debug ( 1, "Calling av_find_stream_info" );
|
||||||
if ( av_find_stream_info( mFormatContext ) < 0 )
|
if ( av_find_stream_info( mFormatContext ) < 0 )
|
||||||
#else
|
#else
|
||||||
Debug ( 1, "Calling avformat_find_stream_info" );
|
Debug ( 1, "Calling avformat_find_stream_info" );
|
||||||
if ( avformat_find_stream_info( mFormatContext, 0 ) < 0 )
|
if ( avformat_find_stream_info( mFormatContext, 0 ) < 0 )
|
||||||
#endif
|
#endif
|
||||||
Fatal( "Unable to find stream info from %s due to: %s", mPath.c_str(), strerror(errno) );
|
Fatal( "Unable to find stream info from %s due to: %s", mPath.c_str(), strerror(errno) );
|
||||||
|
@ -309,6 +307,7 @@ int FfmpegCamera::OpenFfmpeg() {
|
||||||
Debug ( 1, "Got stream info" );
|
Debug ( 1, "Got stream info" );
|
||||||
|
|
||||||
// Find first video stream present
|
// Find first video stream present
|
||||||
|
// The one we want Might not be the first
|
||||||
mVideoStreamId = -1;
|
mVideoStreamId = -1;
|
||||||
mAudioStreamId = -1;
|
mAudioStreamId = -1;
|
||||||
for (unsigned int i=0; i < mFormatContext->nb_streams; i++ )
|
for (unsigned int i=0; i < mFormatContext->nb_streams; i++ )
|
||||||
|
@ -316,37 +315,37 @@ int FfmpegCamera::OpenFfmpeg() {
|
||||||
#if (LIBAVCODEC_VERSION_CHECK(52, 64, 0, 64, 0) || LIBAVUTIL_VERSION_CHECK(50, 14, 0, 14, 0))
|
#if (LIBAVCODEC_VERSION_CHECK(52, 64, 0, 64, 0) || LIBAVUTIL_VERSION_CHECK(50, 14, 0, 14, 0))
|
||||||
if ( mFormatContext->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO )
|
if ( mFormatContext->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO )
|
||||||
#else
|
#else
|
||||||
if ( mFormatContext->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO )
|
if ( mFormatContext->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO )
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
if ( mVideoStreamId == -1 ) {
|
if ( mVideoStreamId == -1 ) {
|
||||||
mVideoStreamId = i;
|
mVideoStreamId = i;
|
||||||
// if we break, then we won't find the audio stream
|
// if we break, then we won't find the audio stream
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
Debug(2, "Have another video stream." );
|
Debug(2, "Have another video stream." );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#if (LIBAVCODEC_VERSION_CHECK(52, 64, 0, 64, 0) || LIBAVUTIL_VERSION_CHECK(50, 14, 0, 14, 0))
|
#if (LIBAVCODEC_VERSION_CHECK(52, 64, 0, 64, 0) || LIBAVUTIL_VERSION_CHECK(50, 14, 0, 14, 0))
|
||||||
if ( mFormatContext->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO )
|
if ( mFormatContext->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO )
|
||||||
#else
|
#else
|
||||||
if ( mFormatContext->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO )
|
if ( mFormatContext->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO )
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
if ( mAudioStreamId == -1 ) {
|
if ( mAudioStreamId == -1 ) {
|
||||||
mAudioStreamId = i;
|
mAudioStreamId = i;
|
||||||
} else {
|
} else {
|
||||||
Debug(2, "Have another audio stream." );
|
Debug(2, "Have another audio stream." );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if ( mVideoStreamId == -1 )
|
if ( mVideoStreamId == -1 )
|
||||||
Fatal( "Unable to locate video stream in %s", mPath.c_str() );
|
Fatal( "Unable to locate video stream in %s", mPath.c_str() );
|
||||||
if ( mAudioStreamId == -1 )
|
if ( mAudioStreamId == -1 )
|
||||||
Debug( 3, "Unable to locate audio stream in %s", mPath.c_str() );
|
Debug( 3, "Unable to locate audio stream in %s", mPath.c_str() );
|
||||||
|
|
||||||
Debug ( 1, "Found video stream" );
|
Debug ( 3, "Found video stream at index %d", mVideoStreamId );
|
||||||
|
Debug ( 3, "Found audio stream at index %d", mAudioStreamId );
|
||||||
|
|
||||||
mCodecContext = mFormatContext->streams[mVideoStreamId]->codec;
|
mCodecContext = mFormatContext->streams[mVideoStreamId]->codec;
|
||||||
|
|
||||||
|
@ -355,13 +354,15 @@ int FfmpegCamera::OpenFfmpeg() {
|
||||||
Fatal( "Can't find codec for video stream from %s", mPath.c_str() );
|
Fatal( "Can't find codec for video stream from %s", mPath.c_str() );
|
||||||
|
|
||||||
Debug ( 1, "Found decoder" );
|
Debug ( 1, "Found decoder" );
|
||||||
|
zm_dump_stream_format( mFormatContext, mVideoStreamId, 0, 0 );
|
||||||
|
zm_dump_stream_format( mFormatContext, mAudioStreamId, 0, 0 );
|
||||||
|
|
||||||
// Open the codec
|
// Open the codec
|
||||||
#if !LIBAVFORMAT_VERSION_CHECK(53, 8, 0, 8, 0)
|
#if !LIBAVFORMAT_VERSION_CHECK(53, 8, 0, 8, 0)
|
||||||
Debug ( 1, "Calling avcodec_open" );
|
Debug ( 1, "Calling avcodec_open" );
|
||||||
if ( avcodec_open( mCodecContext, mCodec ) < 0 )
|
if ( avcodec_open( mCodecContext, mCodec ) < 0 )
|
||||||
#else
|
#else
|
||||||
Debug ( 1, "Calling avcodec_open2" );
|
Debug ( 1, "Calling avcodec_open2" );
|
||||||
if ( avcodec_open2( mCodecContext, mCodec, 0 ) < 0 )
|
if ( avcodec_open2( mCodecContext, mCodec, 0 ) < 0 )
|
||||||
#endif
|
#endif
|
||||||
Fatal( "Unable to open codec for video stream from %s", mPath.c_str() );
|
Fatal( "Unable to open codec for video stream from %s", mPath.c_str() );
|
||||||
|
@ -455,8 +456,8 @@ int FfmpegCamera::CloseFfmpeg(){
|
||||||
|
|
||||||
if ( mCodecContext )
|
if ( mCodecContext )
|
||||||
{
|
{
|
||||||
avcodec_close( mCodecContext );
|
avcodec_close( mCodecContext );
|
||||||
mCodecContext = NULL; // Freed by av_close_input_file
|
mCodecContext = NULL; // Freed by av_close_input_file
|
||||||
}
|
}
|
||||||
if ( mFormatContext )
|
if ( mFormatContext )
|
||||||
{
|
{
|
||||||
|
@ -509,16 +510,15 @@ void *FfmpegCamera::ReopenFfmpegThreadCallback(void *ctx){
|
||||||
}
|
}
|
||||||
|
|
||||||
//Function to handle capture and store
|
//Function to handle capture and store
|
||||||
|
int FfmpegCamera::CaptureAndRecord( Image &image, bool recording, char* event_file ) {
|
||||||
int FfmpegCamera::CaptureAndRecord(Image &image, bool recording, char* event_file) {
|
|
||||||
if (!mCanCapture){
|
if (!mCanCapture){
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
int ret;
|
||||||
|
|
||||||
// If the reopen thread has a value, but mCanCapture != 0, then we have just reopened the connection to the ffmpeg device, and we can clean up the thread.
|
// If the reopen thread has a value, but mCanCapture != 0, then we have just reopened the connection to the ffmpeg device, and we can clean up the thread.
|
||||||
if (mReopenThread != 0) {
|
if (mReopenThread != 0) {
|
||||||
void *retval = 0;
|
void *retval = 0;
|
||||||
int ret;
|
|
||||||
|
|
||||||
ret = pthread_join(mReopenThread, &retval);
|
ret = pthread_join(mReopenThread, &retval);
|
||||||
if (ret != 0){
|
if (ret != 0){
|
||||||
|
@ -530,15 +530,7 @@ int FfmpegCamera::CaptureAndRecord(Image &image, bool recording, char* event_fil
|
||||||
}
|
}
|
||||||
|
|
||||||
AVPacket packet;
|
AVPacket packet;
|
||||||
AVPacket queuedpacket;
|
AVPacket queued_packet;
|
||||||
uint8_t* directbuffer;
|
|
||||||
|
|
||||||
/* Request a writeable buffer of the target image */
|
|
||||||
directbuffer = image.WriteBuffer(width, height, colours, subpixelorder);
|
|
||||||
if( directbuffer == NULL ) {
|
|
||||||
Error("Failed requesting writeable buffer for the captured image.");
|
|
||||||
return (-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( mCodecContext->codec_id != AV_CODEC_ID_H264 ) {
|
if ( mCodecContext->codec_id != AV_CODEC_ID_H264 ) {
|
||||||
Error( "Input stream is not h264. The stored event file may not be viewable in browser." );
|
Error( "Input stream is not h264. The stored event file may not be viewable in browser." );
|
||||||
|
@ -564,6 +556,85 @@ int FfmpegCamera::CaptureAndRecord(Image &image, bool recording, char* event_fil
|
||||||
return( -1 );
|
return( -1 );
|
||||||
}
|
}
|
||||||
Debug( 5, "Got packet from stream %d", packet.stream_index );
|
Debug( 5, "Got packet from stream %d", packet.stream_index );
|
||||||
|
|
||||||
|
//Video recording
|
||||||
|
if ( recording ) {
|
||||||
|
|
||||||
|
// The directory we are recording to is no longer tied to the current event.
|
||||||
|
// Need to re-init the videostore with the correct directory and start recording again
|
||||||
|
// for efficiency's sake, we should test for keyframe before we test for directory change...
|
||||||
|
if ( videoStore && (packet.flags & AV_PKT_FLAG_KEY) && (strcmp(oldDirectory, event_file) != 0 ) ) {
|
||||||
|
// don't open new videostore until we're on a key frame..would this require an offset adjustment for the event as a result?...
|
||||||
|
// if we store our key frame location with the event will that be enough?
|
||||||
|
Info("Re-starting video storage module");
|
||||||
|
delete videoStore;
|
||||||
|
videoStore = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! videoStore ) {
|
||||||
|
//Instantiate the video storage module
|
||||||
|
|
||||||
|
if (record_audio) {
|
||||||
|
if (mAudioStreamId == -1) {
|
||||||
|
Debug(3, "Record Audio on but no audio stream found");
|
||||||
|
videoStore = new VideoStore((const char *) event_file, "mp4",
|
||||||
|
mFormatContext->streams[mVideoStreamId],
|
||||||
|
NULL,
|
||||||
|
startTime,
|
||||||
|
this->getMonitor()->getOrientation());
|
||||||
|
|
||||||
|
} else {
|
||||||
|
Debug(3, "Video module initiated with audio stream");
|
||||||
|
videoStore = new VideoStore((const char *) event_file, "mp4",
|
||||||
|
mFormatContext->streams[mVideoStreamId],
|
||||||
|
mFormatContext->streams[mAudioStreamId],
|
||||||
|
startTime,
|
||||||
|
this->getMonitor()->getOrientation());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Debug(3, "Record_audio is false so exclude audio stream");
|
||||||
|
videoStore = new VideoStore((const char *) event_file, "mp4",
|
||||||
|
mFormatContext->streams[mVideoStreamId],
|
||||||
|
NULL,
|
||||||
|
startTime,
|
||||||
|
this->getMonitor()->getOrientation() );
|
||||||
|
}
|
||||||
|
strcpy(oldDirectory, event_file);
|
||||||
|
|
||||||
|
// Need to write out all the frames from the last keyframe?
|
||||||
|
unsigned int packet_count = 0;
|
||||||
|
while ( packetqueue.popPacket( &queued_packet ) ) {
|
||||||
|
packet_count += 1;
|
||||||
|
//Write the packet to our video store
|
||||||
|
if ( queued_packet.stream_index == mVideoStreamId ) {
|
||||||
|
ret = videoStore->writeVideoFramePacket(&queued_packet, mFormatContext->streams[mVideoStreamId]);
|
||||||
|
} else if ( queued_packet.stream_index == mAudioStreamId ) {
|
||||||
|
//ret = videoStore->writeAudioFramePacket(&queued_packet, mFormatContext->streams[mAudioStreamId]);
|
||||||
|
} else {
|
||||||
|
Warning("Unknown stream id in queued packet (%d)", queued_packet.stream_index );
|
||||||
|
ret = -1;
|
||||||
|
}
|
||||||
|
if ( ret < 0 ) {
|
||||||
|
//Less than zero and we skipped a frame
|
||||||
|
//av_free_packet( &queued_packet );
|
||||||
|
}
|
||||||
|
} // end while packets in the packetqueue
|
||||||
|
Debug(2, "Wrote %d queued packets", packet_count );
|
||||||
|
} // end if ! wasRecording
|
||||||
|
} else {
|
||||||
|
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
|
||||||
|
|
||||||
if ( packet.stream_index == mVideoStreamId ) {
|
if ( packet.stream_index == mVideoStreamId ) {
|
||||||
#if LIBAVCODEC_VERSION_CHECK(52, 23, 0, 23, 0)
|
#if LIBAVCODEC_VERSION_CHECK(52, 23, 0, 23, 0)
|
||||||
if ( avcodec_decode_video2( mCodecContext, mRawFrame, &frameComplete, &packet ) < 0 )
|
if ( avcodec_decode_video2( mCodecContext, mRawFrame, &frameComplete, &packet ) < 0 )
|
||||||
|
@ -572,123 +643,41 @@ int FfmpegCamera::CaptureAndRecord(Image &image, bool recording, char* event_fil
|
||||||
#endif
|
#endif
|
||||||
Fatal( "Unable to decode frame at frame %d", frameCount );
|
Fatal( "Unable to decode frame at frame %d", frameCount );
|
||||||
|
|
||||||
Debug( 4, "Decoded video packet at frame %d", frameCount );
|
Debug( 4, "Decoded video packet at frame %d", frameCount );
|
||||||
|
|
||||||
if ( frameComplete ) {
|
if ( frameComplete ) {
|
||||||
Debug( 3, "Got frame %d", frameCount );
|
Debug( 4, "Got frame %d", frameCount );
|
||||||
|
|
||||||
avpicture_fill( (AVPicture *)mFrame, directbuffer, imagePixFormat, width, height);
|
uint8_t* directbuffer;
|
||||||
|
|
||||||
//Buffer video packets
|
/* Request a writeable buffer of the target image */
|
||||||
if (!recording) {
|
directbuffer = image.WriteBuffer(width, height, colours, subpixelorder);
|
||||||
if(packet.flags & AV_PKT_FLAG_KEY) {
|
if( directbuffer == NULL ) {
|
||||||
// packetqueue->clearQueues();
|
Error("Failed requesting writeable buffer for the captured image.");
|
||||||
}
|
av_free_packet( &packet );
|
||||||
// packetqueue->queueVideoPacket(&packet);
|
return (-1);
|
||||||
}
|
}
|
||||||
|
avpicture_fill( (AVPicture *)mFrame, directbuffer, imagePixFormat, width, height);
|
||||||
//Video recording
|
|
||||||
if ( recording && !wasRecording ) {
|
if ( videoStore && recording ) {
|
||||||
//Instantiate the video storage module
|
//Write the packet to our video store
|
||||||
|
int ret = videoStore->writeVideoFramePacket(&packet, mFormatContext->streams[mVideoStreamId]);//, &lastKeyframePkt);
|
||||||
if (record_audio) {
|
if ( ret < 0 ) { //Less than zero and we skipped a frame
|
||||||
if (mAudioStreamId == -1) {
|
av_free_packet( &packet );
|
||||||
Debug(3, "Record Audio on but no audio stream found");
|
return 0;
|
||||||
videoStore = new VideoStore((const char *) event_file, "mp4",
|
|
||||||
mFormatContext->streams[mVideoStreamId],
|
|
||||||
NULL,
|
|
||||||
startTime,
|
|
||||||
this->getMonitor()->getOrientation());
|
|
||||||
|
|
||||||
} else {
|
|
||||||
Debug(3, "Video module initiated with audio stream");
|
|
||||||
videoStore = new VideoStore((const char *) event_file, "mp4",
|
|
||||||
mFormatContext->streams[mVideoStreamId],
|
|
||||||
mFormatContext->streams[mAudioStreamId],
|
|
||||||
startTime,
|
|
||||||
this->getMonitor()->getOrientation());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Debug(3, "Record_audio is false so exclude audio stream");
|
|
||||||
videoStore = new VideoStore((const char *) event_file, "mp4",
|
|
||||||
mFormatContext->streams[mVideoStreamId],
|
|
||||||
NULL,
|
|
||||||
startTime,
|
|
||||||
this->getMonitor()->getOrientation());
|
|
||||||
}
|
|
||||||
wasRecording = true;
|
|
||||||
strcpy(oldDirectory, event_file);
|
|
||||||
// while (packetqueue->popVideoPacket(&queuedpacket)) {
|
|
||||||
// int ret = videoStore->writeVideoFramePacket(&packet, mFormatContext->streams[mVideoStreamId]); //, &lastKeyframePkt);
|
|
||||||
// if (ret < 0) {//Less than zero and we skipped a frame
|
|
||||||
// av_free_packet(&packet);
|
|
||||||
// return 0;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
} else if ( ( ! recording ) && wasRecording && videoStore ) {
|
|
||||||
Info("Deleting videoStore instance");
|
|
||||||
delete videoStore;
|
|
||||||
videoStore = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// The directory we are recording to is no longer tied to the current
|
|
||||||
// event. Need to re-init the videostore with the correct directory and
|
|
||||||
// start recording again
|
|
||||||
if (recording && wasRecording && (strcmp(oldDirectory, event_file) != 0)
|
|
||||||
&& (packet.flags & AV_PKT_FLAG_KEY)) {
|
|
||||||
Info("Re-starting video storage module");
|
|
||||||
if(videoStore){
|
|
||||||
delete videoStore;
|
|
||||||
videoStore = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (record_audio) {
|
|
||||||
if (mAudioStreamId == -1) {
|
|
||||||
Debug(3, "Record Audio on but no audio stream found");
|
|
||||||
videoStore = new VideoStore((const char *) event_file, "mp4",
|
|
||||||
mFormatContext->streams[mVideoStreamId],
|
|
||||||
NULL,
|
|
||||||
startTime,
|
|
||||||
this->getMonitor()->getOrientation());
|
|
||||||
} else {
|
|
||||||
Debug(3, "Video module initiated with audio stream");
|
|
||||||
videoStore = new VideoStore((const char *) event_file, "mp4",
|
|
||||||
mFormatContext->streams[mVideoStreamId],
|
|
||||||
mFormatContext->streams[mAudioStreamId],
|
|
||||||
startTime,
|
|
||||||
this->getMonitor()->getOrientation());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Debug(3, "Record_audio is false so exclude audio stream");
|
|
||||||
videoStore = new VideoStore((const char *) event_file, "mp4",
|
|
||||||
mFormatContext->streams[mVideoStreamId],
|
|
||||||
NULL, startTime,
|
|
||||||
this->getMonitor()->getOrientation());
|
|
||||||
}
|
|
||||||
strcpy(oldDirectory, event_file);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( videoStore && recording ) {
|
|
||||||
//Write the packet to our video store
|
|
||||||
int ret = videoStore->writeVideoFramePacket(&packet,
|
|
||||||
mFormatContext->streams[mVideoStreamId]); //, &lastKeyframePkt);
|
|
||||||
if(ret<0){//Less than zero and we skipped a frame
|
|
||||||
av_free_packet( &packet );
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#if HAVE_LIBSWSCALE
|
#if HAVE_LIBSWSCALE
|
||||||
if ( mConvertContext == NULL ) {
|
if ( mConvertContext == NULL ) {
|
||||||
mConvertContext = sws_getContext(mCodecContext->width,
|
mConvertContext = sws_getContext(mCodecContext->width,
|
||||||
mCodecContext->height,
|
mCodecContext->height,
|
||||||
mCodecContext->pix_fmt,
|
mCodecContext->pix_fmt,
|
||||||
width, height,
|
width, height,
|
||||||
imagePixFormat, SWS_BICUBIC, NULL,
|
imagePixFormat, SWS_BICUBIC, NULL,
|
||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
if ( mConvertContext == NULL )
|
if ( mConvertContext == NULL )
|
||||||
Fatal( "Unable to create conversion context for %s", mPath.c_str() );
|
Fatal( "Unable to create conversion context for %s", mPath.c_str() );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sws_scale(mConvertContext, mRawFrame->data, mRawFrame->linesize,
|
if (sws_scale(mConvertContext, mRawFrame->data, mRawFrame->linesize,
|
||||||
|
@ -696,29 +685,39 @@ int FfmpegCamera::CaptureAndRecord(Image &image, bool recording, char* event_fil
|
||||||
Fatal("Unable to convert raw format %u to target format %u at frame %d",
|
Fatal("Unable to convert raw format %u to target format %u at frame %d",
|
||||||
mCodecContext->pix_fmt, imagePixFormat, frameCount);
|
mCodecContext->pix_fmt, imagePixFormat, frameCount);
|
||||||
#else // HAVE_LIBSWSCALE
|
#else // HAVE_LIBSWSCALE
|
||||||
Fatal( "You must compile ffmpeg with the --enable-swscale option to use ffmpeg cameras" );
|
Fatal( "You must compile ffmpeg with the --enable-swscale option to use ffmpeg cameras" );
|
||||||
#endif // HAVE_LIBSWSCALE
|
#endif // HAVE_LIBSWSCALE
|
||||||
|
|
||||||
frameCount++;
|
frameCount++;
|
||||||
} // end if frameComplete
|
} else {
|
||||||
} else if ( packet.stream_index == mAudioStreamId ) { //FIXME best way to copy all other streams
|
Debug( 3, "Not framecomplete after av_read_frame" );
|
||||||
if ( videoStore && recording ) {
|
} // end if frameComplete
|
||||||
if ( record_audio ) {
|
} else if ( packet.stream_index == mAudioStreamId ) { //FIXME best way to copy all other streams
|
||||||
Debug(4, "Recording audio packet" );
|
Debug( 4, "Audio stream index %d", packet.stream_index );
|
||||||
//Write the packet to our video store
|
if ( videoStore ) {
|
||||||
int ret = videoStore->writeAudioFramePacket(&packet,
|
if ( record_audio ) {
|
||||||
mFormatContext->streams[packet.stream_index]); //FIXME no relevance of last key frame
|
Debug(3, "Recording audio packet streamindex(%d) packetstreamindex(%d)", mAudioStreamId, packet.stream_index );
|
||||||
if ( ret < 0 ) {//Less than zero and we skipped a frame
|
//Write the packet to our video store
|
||||||
av_free_packet( &packet );
|
//FIXME no relevance of last key frame
|
||||||
|
int ret = videoStore->writeAudioFramePacket( &packet, mFormatContext->streams[packet.stream_index] );
|
||||||
|
if ( ret < 0 ) {//Less than zero and we skipped a frame
|
||||||
|
av_free_packet( &packet );
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Debug(4, "Not recording audio packet" );
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
Debug(4, "Not recording audio packet" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
av_free_packet( &packet );
|
} else {
|
||||||
} // end while ! frameComplete
|
#if LIBAVUTIL_VERSION_CHECK(54, 23, 0, 23, 0)
|
||||||
return (frameCount);
|
Debug( 3, "Some other stream index %d, %s", packet.stream_index, av_get_media_type_string( mFormatContext->streams[packet.stream_index]->codec->codec_type) );
|
||||||
|
#else
|
||||||
|
Debug( 3, "Some other stream index %d", packet.stream_index );
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
av_free_packet( &packet );
|
||||||
|
} // end while ! frameComplete
|
||||||
|
return (frameCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // HAVE_LIBAVFORMAT
|
#endif // HAVE_LIBAVFORMAT
|
||||||
|
|
Loading…
Reference in New Issue