aboutsummaryrefslogtreecommitdiff
path: root/pvmi/pvmf/src/pvmf_format_type.cpp
diff options
context:
space:
mode:
authorGarret Pick <pickgr@pv.com>2009-08-13 11:09:55 -0700
committerGarret Pick <pickgr@pv.com>2009-08-13 11:32:20 -0700
commita6a9a96a4ddadb1ea941288c51b0e9746495d6e2 (patch)
tree5c24a20ecbe07a00fe5aa6642f2dcd82a0f681ad /pvmi/pvmf/src/pvmf_format_type.cpp
parentf3bf1506fdbdeaf1471923bf512c4fe2a18eb174 (diff)
downloadopencore-a6a9a96a4ddadb1ea941288c51b0e9746495d6e2.tar.gz
OpenCORE 2.05 Update. Refer to ChangeLog for detailsv2.05
Diffstat (limited to 'pvmi/pvmf/src/pvmf_format_type.cpp')
-rw-r--r--pvmi/pvmf/src/pvmf_format_type.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/pvmi/pvmf/src/pvmf_format_type.cpp b/pvmi/pvmf/src/pvmf_format_type.cpp
index a2d4b8ec3..3ea3f5688 100644
--- a/pvmi/pvmf/src/pvmf_format_type.cpp
+++ b/pvmi/pvmf/src/pvmf_format_type.cpp
@@ -36,6 +36,8 @@ OSCL_EXPORT_REF bool PVMFFormatType::isCompressed() const
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_ALAW) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV420) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV422) == 0) ||
+ (pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV422_INTERLEAVED_UYVY) == 0) ||
+ (pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV422_INTERLEAVED_YUYV) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_RGB8) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_RGB12) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_RGB16) == 0) ||
@@ -92,6 +94,8 @@ OSCL_EXPORT_REF bool PVMFFormatType::isVideo() const
//PV internal video media types
if ((pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV420) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV422) == 0) ||
+ (pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV422_INTERLEAVED_UYVY) == 0) ||
+ (pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_YUV422_INTERLEAVED_YUYV) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_RGB8) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_RGB12) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_RGB16) == 0) ||
@@ -146,6 +150,7 @@ OSCL_EXPORT_REF bool PVMFFormatType::isFile() const
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_RMFF) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_DIVXFF) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_MIDIFF) == 0) ||
+ (pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_FLVFF) == 0) ||
(pv_mime_strcmp(iMimeStr.c_str(), PVMF_MIME_AVIFF) == 0))
return true;