Mercurial > mplayer.hg
view osdep/glob-win.c @ 16429:84174804804b
Updates to NUT spec:
1. remove average_bitrate
2. add other_stream_header, for subtitles and metadata
3. add max_pts to index
4. index_ptr - a 64 bit integer to say the total length of all index packets
5. specify how to write "multiple" indexes
6. change forward_ptr behavior, starts right after forward_ptr, ends after
checksum
7. remove stream_id <-> stream_class limitation.
8. time_base_nom must also be non zero.
9. rename time_base_nom and time_base_denom, now timebase means the length
of a tick, not amounts of ticks
10. remove (old?) sample_rate_mul stuff.
11. specify what exactly the checksum covers.
12. specify that stream classes which have multiple streams must have an
info packet.. (in new Semantic requirements section)
13. Rename 'timestamp' to pts.
14. Change date of draft...
15. Add myself to authors...
author | ods15 |
---|---|
date | Fri, 09 Sep 2005 10:26:21 +0000 |
parents | 7b0bc557987b |
children | 08cac43f1e38 |
line wrap: on
line source
#include <sys/types.h> #include <stdio.h> #include "../config.h" #ifndef HAVE_GLOB #ifdef __MINGW32__ #include <windows.h> #include "glob.h" int glob(const char *pattern, int flags, int (*errfunc)(const char *epath, int eerrno), glob_t *pglob) { HANDLE searchhndl; WIN32_FIND_DATA found_file; if(errfunc)printf("glob():ERROR:Sorry errfunc not supported by this implementation\n"); if(flags)printf("glob():ERROR:Sorry no flags supported by this globimplementation\n"); //printf("PATTERN \"%s\"\n",pattern); pglob->gl_pathc = 0; searchhndl = FindFirstFile( pattern,&found_file); if(searchhndl == INVALID_HANDLE_VALUE) { if(GetLastError() == ERROR_FILE_NOT_FOUND) { pglob->gl_pathc = 0; //printf("could not find a file matching your search criteria\n"); return 1; } else { //printf("glob():ERROR:FindFirstFile: %i\n",GetLastError()); return 1; } } pglob->gl_pathv = malloc(sizeof(char*)); pglob->gl_pathv[0] = strdup(found_file.cFileName); pglob->gl_pathc++; while(1) { if(!FindNextFile(searchhndl,&found_file)) { if(GetLastError()==ERROR_NO_MORE_FILES) { //printf("glob(): no more files found\n"); break; } else { //printf("glob():ERROR:FindNextFile:%i\n",GetLastError()); return 1; } } else { //printf("glob: found file %s\n",found_file.cFileName); pglob->gl_pathc++; pglob->gl_pathv = realloc(pglob->gl_pathv,pglob->gl_pathc * sizeof(char*)); pglob->gl_pathv[pglob->gl_pathc-1] = strdup(found_file.cFileName); } } FindClose(searchhndl); return 0; } void globfree(glob_t *pglob) { int i; for(i=0; i <pglob->gl_pathc ;i++) { free(pglob->gl_pathv[i]); } free(pglob->gl_pathv); } #endif /*__MINGW32__*/ #endif /*HAVE_GLOB*/ #if 0 int main(){ glob_t gg; printf("globtest\n"); glob( "*.jpeg",0,NULL,&gg ); { int i; for(i=0;i<gg.gl_pathc;i++)printf("GLOBED:%i %s\n",i,gg.gl_pathv[i]); } globfree(&gg); return 0; } #endif