我从相机编写Windows服务巫术decodig视频流。 我用FFMPEG.Autogen包装器在c#上编写它。
当我将其作为服务运行时,我的问题是“ AccessViolationException”。 如果我将应用程序作为控制台应用程序运行,我也不例外。
在Stacktrace中,我看到了:
в FFmpeg.AutoGen.ffmpeg+<>c.<.cctor>b__5_572(FFmpeg.AutoGen.AVFrame*, FFmpeg.AutoGen.AVFrame*, Int32)
в FFmpeg.AutoGen.ffmpeg.av_hwframe_transfer_data(FFmpeg.AutoGen.AVFrame*, FFmpeg.AutoGen.AVFrame*,Int32)
в VideoProviderService.VideoSources.RTSPVideoSource.TryDecodeNextFrame(Boolean ByRef)
TryDecodeNextFrame方法的代码:
public IntPtr TryDecodeNextFrame(out bool state)
{
try
{
ffmpeg.av_frame_unref(pFrame);
ffmpeg.av_frame_unref(cpuFrame);
int error;
do
{
try
{
do
{
timeout = DateTime.Now.AddSeconds(2);
error = ffmpeg.av_read_frame(_pFormatContext, pPacket);
if (error == ffmpeg.AVERROR_EOF)
{
state = false;
return IntPtr.Zero;
}
error.ThrowExceptionIfError();
} while (pPacket->stream_index != _streamIndex);
ffmpeg.avcodec_send_packet(pCodecContext, pPacket).ThrowExceptionIfError();
}
finally
{
ffmpeg.av_packet_unref(pPacket);
}
error = ffmpeg.avcodec_receive_frame(pCodecContext, pFrame);
} while (error == ffmpeg.AVERROR(ffmpeg.EAGAIN));
error.ThrowExceptionIfError();
ffmpeg.av_hwframe_transfer_data(cpuFrame, pFrame, 0).ThrowExceptionIfError();
ptrToFrame = (IntPtr)vfc.Convert(*cpuFrame).data[0];
}
catch
{
state = false;
return IntPtr.Zero;
}
state = true;
return ptrToFrame;
}
我想做什么:
av_hwframe_transfer_data
的参数。 我不知道该如何解决。 有人有什么想法吗?
答案 0 :(得分:0)
似乎您没有正确处理帧(pFrame / cpuFrame)。特别是,对于cpuFrame,您应该在每次运行中分配它,并在每次运行结束时释放它。此外,对于pFrame,您应该在av_hw_frame_transfer_data之后直接取消引用。例如:-
cpuFrame = ffmpeg.av_frame_alloc();
....
ffmpeg.av_hwframe_transfer_data(cpuFrame, pFrame, 0).ThrowExceptionIfError();
ffmpeg.av_frame_unref(pFrame);
.... Process your cpuFrame ...
ffmpeg.av_frame_free(&cpuFrame);
....