mirror of https://github.com/mpv-player/mpv
Reduce QuickTime binary decoder verbosity.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28340 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
84784a5094
commit
cc52547ece
|
@ -3328,7 +3328,7 @@ static WIN_BOOL WINAPI expFindNextFileA(HANDLE h,LPWIN32_FIND_DATAA lpfd)
|
|||
strcpy(lpfd->cFileName,d->d_name);
|
||||
// sprintf(lpfd->cAlternateFileName,"%-8s.qtx",d->d_name);
|
||||
strcpy(lpfd->cAlternateFileName,"foobar.qtx");
|
||||
printf("### FindNext: %s\n",lpfd->cFileName);
|
||||
dbgprintf("### FindNext: %s\n",lpfd->cFileName);
|
||||
return 1;
|
||||
}
|
||||
closedir(qtx_dir); qtx_dir=NULL;
|
||||
|
@ -3345,7 +3345,7 @@ static HANDLE WINAPI expFindFirstFileA(LPCSTR s, LPWIN32_FIND_DATAA lpfd)
|
|||
#ifdef QTX
|
||||
if(strstr(s, "quicktime\\*.QTX")){
|
||||
dbgprintf("FindFirstFileA(0x%x='%s', 0x%x) => QTX\n", s, s, lpfd);
|
||||
printf("\n### Searching for QuickTime plugins (*.qtx) at %s...\n",def_path);
|
||||
dbgprintf("\n### Searching for QuickTime plugins (*.qtx) at %s...\n",def_path);
|
||||
qtx_dir=opendir(def_path);
|
||||
if(!qtx_dir) return (HANDLE)-1;
|
||||
memset(lpfd,0,sizeof(*lpfd));
|
||||
|
|
Loading…
Reference in New Issue