ref: c0641f40d91b8cb47f287bf26dc48d51a476c325
dir: /codec/build/windowsphone/all/CodecRTComponent.h/
#pragma once
namespace CodecRTComponent {
// public ref class WindowsPhoneRuntimeComponent sealed
public ref class CodecRunTimeComponent sealed {
public:
CodecRunTimeComponent();
int Encode();
int Decode();
//Get encoder info
float GetEncFPS();
double GetEncTime();
int GetEncodedFrameNum();
//get decoder info
float GetDecFPS();
double GetDecTime();
int GetDecodedFrameNum();
};
}