shithub: openh264

ref: 894d1a23b9b2a0358c36803e324e39d2e5e868e4
dir: /codec/build/windowsphone/all/CodecRTComponent.h/

View raw version
#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();

};
}