impl_f263decoder.h 297 B

123456789101112131415
  1. #pragma once
  2. #include "obj_f263decoder.h"
  3. class F263Decoder : public obj_f263decoder
  4. {
  5. public:
  6. F263Decoder();
  7. ~F263Decoder();
  8. int DecodeFrame(void *frameData, size_t frameSize, YV12_PLANES *yv12, int *width, int *height, int *keyframe);
  9. protected:
  10. RECVS_DISPATCH;
  11. private:
  12. void *context;
  13. };