Changeset 3797 for pjproject/trunk
- Timestamp:
- Oct 6, 2011 7:11:15 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia-videodev/dshow_dev.c
r3715 r3797 258 258 static void enum_dev_cap(IBaseFilter *filter, 259 259 pjmedia_dir dir, 260 const GUID *dshow_f ormat,260 const GUID *dshow_fmt, 261 261 AM_MEDIA_TYPE **pMediatype, 262 262 IPin **pSrcpin, … … 306 306 continue; 307 307 308 nformat = (dshow_f ormat? 1:308 nformat = (dshow_fmt? 1: 309 309 sizeof(dshow_fmts)/sizeof(dshow_fmts[0])); 310 310 for (j = 0; j < nformat; j++) { 311 if (!dshow_format || j > 0) 311 const GUID *dshow_format = dshow_fmt; 312 313 if (!dshow_format) 312 314 dshow_format = dshow_fmts[j].dshow_format; 313 315 if (UuidCompare(&mediatype->subtype,
Note: See TracChangeset
for help on using the changeset viewer.