Home
last modified time | relevance | path

Searched refs:tmpStr (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/videoio/src/
Dcap_dshow.cpp2181 char tmpStr[8];
2182 if( type == MEDIASUBTYPE_RGB24) sprintf(tmpStr, "RGB24");
2183 else if(type == MEDIASUBTYPE_RGB32) sprintf(tmpStr, "RGB32");
2184 else if(type == MEDIASUBTYPE_RGB555)sprintf(tmpStr, "RGB555");
2185 else if(type == MEDIASUBTYPE_RGB565)sprintf(tmpStr, "RGB565");
2186 else if(type == MEDIASUBTYPE_YUY2) sprintf(tmpStr, "YUY2");
2187 else if(type == MEDIASUBTYPE_YVYU) sprintf(tmpStr, "YVYU");
2188 else if(type == MEDIASUBTYPE_YUYV) sprintf(tmpStr, "YUYV");
2189 else if(type == MEDIASUBTYPE_IYUV) sprintf(tmpStr, "IYUV");
2190 else if(type == MEDIASUBTYPE_UYVY) sprintf(tmpStr, "UYVY");
[all …]
/external/webrtc/webrtc/modules/media_file/
Dmedia_file_utility.cc80 char tmpStr[6] = "FOUR"; in ReadWavHeader() local
99 tmpStr[i] = RIFFheaderObj.ckID[i]; in ReadWavHeader()
101 if(strcmp(tmpStr, "RIFF") != 0) in ReadWavHeader()
109 tmpStr[i] = RIFFheaderObj.wave_ckID[i]; in ReadWavHeader()
111 if(strcmp(tmpStr, "WAVE") != 0) in ReadWavHeader()
129 memcpy(tmpStr, CHUNKheaderObj.fmt_ckID, 4); in ReadWavHeader()
134 if(strcmp(tmpStr, "fmt ") == 0) in ReadWavHeader()
186 else if(strcmp(tmpStr, "data") == 0) in ReadWavHeader()
213 memcpy(tmpStr, CHUNKheaderObj.fmt_ckID, 4); in ReadWavHeader()
/external/skia/src/ports/
DSkFontHost_mac.cpp2052 SkString tmpStr; in onGetFontDescriptor() local
2054 desc->setFamilyName(get_str(CTFontCopyFamilyName(fFontRef), &tmpStr)); in onGetFontDescriptor()
2055 desc->setFullName(get_str(CTFontCopyFullName(fFontRef), &tmpStr)); in onGetFontDescriptor()
2056 desc->setPostscriptName(get_str(CTFontCopyPostScriptName(fFontRef), &tmpStr)); in onGetFontDescriptor()
/external/skia/tools/debugger/
DSkDrawCommand.cpp2481 SkAutoTDelete<SkString> tmpStr(new SkString); in SkDrawTextBlobCommand() local
2482 tmpStr->printf("==== Run [%d] ====", runs++); in SkDrawTextBlobCommand()
2483 fInfo.push(tmpStr.release()); in SkDrawTextBlobCommand()
2486 tmpStr.reset(new SkString("GlyphPositioning: ")); in SkDrawTextBlobCommand()
2487 tmpStr->append(gPositioningLabels[iter.positioning()]); in SkDrawTextBlobCommand()
2488 fInfo.push(tmpStr.release()); in SkDrawTextBlobCommand()