Searched refs:srcType (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libmediahelper/include/media/ |
D | convert.h | 53 template <typename srcType, typename dstType> 54 static inline bool convertTo(const srcType &input, dstType &result); 160 template <typename srcType, typename dstType> 173 template <typename srcType> 174 class Converter<srcType, std::string> 177 static inline bool run(const srcType &str, std::string &result) 179 return toString<srcType>(str, result); 213 template <typename srcType, typename dstType> 214 static inline bool convertTo(const srcType &input, dstType &result) 216 return details::Converter<srcType, dstType>::run(input, result);
|
/frameworks/av/media/libstagefright/httplive/ |
D | PlaylistFetcher.cpp | 1488 ATSParser::SourceType srcType = srcTypes[i]; in onDownloadNext() local 1493 mTSParser->getSource(srcType).get()); in onDownloadNext() 1495 if (!mTSParser->hasSource(srcType)) { in onDownloadNext() 1497 srcType == ATSParser::VIDEO ? "video" : "audio"); in onDownloadNext()
|