/hardware/intel/common/libmix/videodecoder/ |
D | VideoDecoderHost.cpp | 33 IVideoDecoder* createVideoDecoder(const char* mimeType) { in createVideoDecoder() argument 34 if (mimeType == NULL) { in createVideoDecoder() 39 if (strcasecmp(mimeType, "video/wmv") == 0 || in createVideoDecoder() 40 strcasecmp(mimeType, "video/vc1") == 0 || in createVideoDecoder() 41 strcasecmp(mimeType, "video/x-ms-wmv") == 0) { in createVideoDecoder() 42 VideoDecoderWMV *p = new VideoDecoderWMV(mimeType); in createVideoDecoder() 44 } else if (strcasecmp(mimeType, "video/avc") == 0 || in createVideoDecoder() 45 strcasecmp(mimeType, "video/h264") == 0) { in createVideoDecoder() 46 VideoDecoderAVC *p = new VideoDecoderAVC(mimeType); in createVideoDecoder() 48 } else if (strcasecmp(mimeType, "video/mp4v-es") == 0 || in createVideoDecoder() [all …]
|
D | VideoDecoderHost.h | 24 IVideoDecoder* createVideoDecoder(const char* mimeType);
|
D | VideoDecoderMPEG2.h | 29 VideoDecoderMPEG2(const char *mimeType);
|
D | VideoDecoderMPEG4.h | 25 VideoDecoderMPEG4(const char *mimeType);
|
D | VideoDecoderVP8.h | 25 VideoDecoderVP8(const char *mimeType);
|
D | VideoDecoderWMV.h | 25 VideoDecoderWMV(const char *mimeType);
|
D | VideoDecoderAVC.h | 25 VideoDecoderAVC(const char *mimeType);
|
D | VideoDecoderMPEG2.cpp | 21 VideoDecoderMPEG2::VideoDecoderMPEG2(const char *mimeType) in VideoDecoderMPEG2() argument 22 : VideoDecoderBase(mimeType, VBP_MPEG2), in VideoDecoderMPEG2()
|
D | VideoDecoderDefs.h | 204 char *mimeType; member
|
D | VideoDecoderVP8.cpp | 21 VideoDecoderVP8::VideoDecoderVP8(const char *mimeType) in VideoDecoderVP8() argument 22 : VideoDecoderBase(mimeType, VBP_VP8) { in VideoDecoderVP8()
|
D | VideoDecoderBase.h | 65 VideoDecoderBase(const char *mimeType, _vbp_parser_type type);
|
D | VideoDecoderWMV.cpp | 21 VideoDecoderWMV::VideoDecoderWMV(const char *mimeType) in VideoDecoderWMV() argument 22 : VideoDecoderBase(mimeType, VBP_VC1), in VideoDecoderWMV()
|
D | VideoDecoderMPEG4.cpp | 21 VideoDecoderMPEG4::VideoDecoderMPEG4(const char *mimeType) in VideoDecoderMPEG4() argument 22 : VideoDecoderBase(mimeType, VBP_MPEG4), in VideoDecoderMPEG4()
|
/hardware/intel/common/libmix/videoencoder/ |
D | VideoEncoderHost.cpp | 31 IVideoEncoder *createVideoEncoder(const char *mimeType) { in createVideoEncoder() argument 40 if (mimeType == NULL) { in createVideoEncoder() 45 if (strcasecmp(mimeType, "video/avc") == 0 || in createVideoEncoder() 46 strcasecmp(mimeType, "video/h264") == 0) { in createVideoEncoder() 49 } else if (strcasecmp(mimeType, "video/h263") == 0) { in createVideoEncoder() 56 } else if (strcasecmp(mimeType, "video/mpeg4") == 0 || in createVideoEncoder() 57 strcasecmp(mimeType, "video/mp4v-es") == 0) { in createVideoEncoder() 64 } else if (strcasecmp(mimeType, "video/x-vnd.on2.vp8") == 0) { in createVideoEncoder() 68 LOGE ("Unknown mime type: %s", mimeType); in createVideoEncoder()
|
D | VideoEncoderHost.h | 22 IVideoEncoder *createVideoEncoder(const char *mimeType);
|
/hardware/intel/common/libmix/videodecoder/securevideo/cherrytrail/ |
D | VideoDecoderAVCSecure.h | 25 VideoDecoderAVCSecure(const char *mimeType);
|
D | VideoDecoderAVCSecure.cpp | 27 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument 28 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
|
/hardware/intel/common/libmix/videodecoder/securevideo/baytrail/ |
D | VideoDecoderAVCSecure.h | 25 VideoDecoderAVCSecure(const char *mimeType);
|
D | VideoDecoderAVCSecure.cpp | 27 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument 28 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
|
/hardware/intel/common/libmix/videodecoder/securevideo/clovertrail/ |
D | VideoDecoderAVCSecure.h | 25 VideoDecoderAVCSecure(const char *mimeType);
|
D | VideoDecoderAVCSecure.cpp | 69 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument 70 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
|
/hardware/intel/common/libmix/videodecoder/securevideo/merrplus/ |
D | VideoDecoderAVCSecure.h | 25 VideoDecoderAVCSecure(const char *mimeType);
|
D | VideoDecoderAVCSecure.cpp | 69 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument 70 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
|
/hardware/intel/common/libmix/videodecoder/securevideo/moorefield/ |
D | VideoDecoderAVCSecure.h | 26 VideoDecoderAVCSecure(const char *mimeType);
|
/hardware/intel/common/libmix/videodecoder/securevideo/merrifield/ |
D | VideoDecoderAVCSecure.h | 26 VideoDecoderAVCSecure(const char *mimeType);
|