Home | History | Annotate | Download | only in common
      1 /*
      2 // Copyright(c)2014 IntelCorporation
      3 //
      4 // LicensedundertheApacheLicense,Version2.0(the"License");
      5 // youmaynotusethisfileexceptincompliancewiththeLicense.
      6 // YoumayobtainacopyoftheLicenseat
      7 //
      8 // http://www.apache.org/licenses/LICENSE-2.0
      9 //
     10 // Unlessrequiredbyapplicablelaworagreedtoinwriting,software
     11 // distributedundertheLicenseisdistributedonan"ASIS"BASIS,
     12 // WITHOUTWARRANTIESORCONDITIONSOFANYKIND,eitherexpressorimplied.
     13 // SeetheLicenseforthespecificlanguagegoverningpermissionsand
     14 // limitationsundertheLicense.
     15 */
     16 #ifndef VIDEO_PAYLOAD_MANAGER_H
     17 #define VIDEO_PAYLOAD_MANAGER_H
     18 
     19 #include <IVideoPayloadManager.h>
     20 
     21 namespace android {
     22 namespace intel {
     23 
     24 class BufferMapper;
     25 
     26 class VideoPayloadManager : public IVideoPayloadManager {
     27 
     28 public:
     29     VideoPayloadManager();
     30     virtual ~VideoPayloadManager();
     31 
     32     // IVideoPayloadManager
     33 public:
     34     virtual bool getMetaData(BufferMapper *mapper, MetaData *metadata);
     35     virtual bool setRenderStatus(BufferMapper *mapper, bool renderStatus);
     36 
     37 }; // class VideoPayloadManager
     38 
     39 } // namespace intel
     40 } // namespace android
     41 
     42 #endif /* VIDEO_PAYLOAD_MANAGER_H */
     43