Home
last modified time | relevance | path

Searched refs:mimeType (Results 1 – 25 of 29) sorted by relevance

12

/hardware/intel/common/libmix/videodecoder/
DVideoDecoderHost.cpp33 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 …]
DVideoDecoderHost.h24 IVideoDecoder* createVideoDecoder(const char* mimeType);
DVideoDecoderMPEG2.h29 VideoDecoderMPEG2(const char *mimeType);
DVideoDecoderMPEG4.h25 VideoDecoderMPEG4(const char *mimeType);
DVideoDecoderVP8.h25 VideoDecoderVP8(const char *mimeType);
DVideoDecoderWMV.h25 VideoDecoderWMV(const char *mimeType);
DVideoDecoderAVC.h25 VideoDecoderAVC(const char *mimeType);
DVideoDecoderMPEG2.cpp21 VideoDecoderMPEG2::VideoDecoderMPEG2(const char *mimeType) in VideoDecoderMPEG2() argument
22 : VideoDecoderBase(mimeType, VBP_MPEG2), in VideoDecoderMPEG2()
DVideoDecoderDefs.h204 char *mimeType; member
DVideoDecoderVP8.cpp21 VideoDecoderVP8::VideoDecoderVP8(const char *mimeType) in VideoDecoderVP8() argument
22 : VideoDecoderBase(mimeType, VBP_VP8) { in VideoDecoderVP8()
DVideoDecoderBase.h65 VideoDecoderBase(const char *mimeType, _vbp_parser_type type);
DVideoDecoderWMV.cpp21 VideoDecoderWMV::VideoDecoderWMV(const char *mimeType) in VideoDecoderWMV() argument
22 : VideoDecoderBase(mimeType, VBP_VC1), in VideoDecoderWMV()
DVideoDecoderMPEG4.cpp21 VideoDecoderMPEG4::VideoDecoderMPEG4(const char *mimeType) in VideoDecoderMPEG4() argument
22 : VideoDecoderBase(mimeType, VBP_MPEG4), in VideoDecoderMPEG4()
/hardware/intel/common/libmix/videoencoder/
DVideoEncoderHost.cpp31 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()
DVideoEncoderHost.h22 IVideoEncoder *createVideoEncoder(const char *mimeType);
/hardware/intel/common/libmix/videodecoder/securevideo/cherrytrail/
DVideoDecoderAVCSecure.h25 VideoDecoderAVCSecure(const char *mimeType);
DVideoDecoderAVCSecure.cpp27 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument
28 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
/hardware/intel/common/libmix/videodecoder/securevideo/baytrail/
DVideoDecoderAVCSecure.h25 VideoDecoderAVCSecure(const char *mimeType);
DVideoDecoderAVCSecure.cpp27 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument
28 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
/hardware/intel/common/libmix/videodecoder/securevideo/clovertrail/
DVideoDecoderAVCSecure.h25 VideoDecoderAVCSecure(const char *mimeType);
DVideoDecoderAVCSecure.cpp69 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument
70 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
/hardware/intel/common/libmix/videodecoder/securevideo/merrplus/
DVideoDecoderAVCSecure.h25 VideoDecoderAVCSecure(const char *mimeType);
DVideoDecoderAVCSecure.cpp69 VideoDecoderAVCSecure::VideoDecoderAVCSecure(const char *mimeType) in VideoDecoderAVCSecure() argument
70 : VideoDecoderAVC(mimeType), in VideoDecoderAVCSecure()
/hardware/intel/common/libmix/videodecoder/securevideo/moorefield/
DVideoDecoderAVCSecure.h26 VideoDecoderAVCSecure(const char *mimeType);
/hardware/intel/common/libmix/videodecoder/securevideo/merrifield/
DVideoDecoderAVCSecure.h26 VideoDecoderAVCSecure(const char *mimeType);

12