houxiao
2017-03-23 d1452b28907abdb5247c0584ba2e1fcc9bd14410
VisitFace/RtspNativeCodec/app/src/main/cpp/FaceCache.h
@@ -6,25 +6,20 @@
class FaceCache
{
public:
   FaceCache()
   {
   }
   FaceCache();
   ~FaceCache();
   
   // returns count of face
   int cachePm(const PipeMaterial& pm)
   {
      return 0;
   }
   int cachePm(const PipeMaterial& pm);
   
   bool getFaceListPb(uint8_t* buffer, size_t& buffSize)
   {
      return false;
   }
   bool getFaceListPb(uint8_t* buffer, size_t& buffSize);
   
   bool getFaceListImage(int* buffIdx, size_t& count, uint8_t* buffImg, size_t& buffImgSize)
   {
      return false;
   }
   bool getFaceListImage(int* buffIdx, size_t& count, uint8_t* buffImg, size_t& buffImgSize);
private:
   bool extractFace();
   void* _ctx;
};
#endif