我正在尝试将托管函数指针传递void (*)(void *)
给我的非托管库。我的非托管库使用指向受关键部分保护的数据帧的指针调用此回调。当托管回调正在运行时,由于临界区,没有其他东西可以修改数据帧。但是,仅通过输入回调,我就会遇到访问冲突和堆损坏。
编辑:我忘了提。窃取它管理的StartStreaming()
线程。此外,它创建了一个单独的线程,用于将新数据分派给给定的回调。在这个单独的线程中调用回调。
到目前为止,我已经完成了以下操作:
//Start Streaming
streaming_thread_ = gcnew Thread(gcnew ThreadStart(&Form1::WorkerThreadFunc));
streaming_thread_->Start();
在哪里:
extern "C" {
#include "libavcodec\avcodec.h"
#include "libavutil\avutil.h"
}
namespace TEST_OCU {
delegate void myCallbackDelegate(void * usr_data); //Declare a delegate for my unmanaged code
public ref class Form1 : public System::Windows::Forms::Form
{
public:
static void WorkerThreadFunc()
{
myCallbackDelegate^ del = gcnew myCallbackDelegate(&Form1::frame_callback);
MessageBox::Show("Starting to Streaming", "Streaming Info");
if(rtsp_connection_ != NULL)
rtsp_connection_->StartStreaming();
//rtsp_connection_->StartStreaming((void (*)(void *)) System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate(del).ToPointer() );
MessageBox::Show("Done Streaming", "Streaming Info");
}
static void __cdecl frame_callback(void * frame)
{
AVFrame * casted_frame = (AVFrame *)frame;
}
private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e)
{
if(rtsp_connection_ == NULL)
rtsp_connection_ = new NeyaSystems::RTSPConnection("rtsp://url");
}
private: static RTSPConnection * rtsp_connection_ = NULL;
}
}
- 我省略了很多无意义的代码......
StartStreaming
默认为 NULL 指针,在这种情况下我没有损坏StartStreaming
使用委托函数指针会导致堆损坏RTSPConnection
在本机 C++ 中实现并且还包含 C 调用(libavcodec)RTSPConnection
包含两个线程,通信和帧调度线程(调用托管回调)
谁能给我一个面包屑?非常感谢你。