1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-12 15:40:50 +02:00
ffmpeg/libavcodec/internal.h
Corey Hickey 1005f542b2 - Add new file internal.h for common internal-use-only functions.
- Add new function av_tempfile() for creating temporary files; contains
  workaround for MinGW.
- Make XviD stuff use av_tempfile().

Originally committed as revision 5245 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-03-30 04:33:05 +00:00

13 lines
190 B
C

#ifndef INTERNAL_H
#define INTERNAL_H
/**
* @file internal.h
* common functions for internal libavcodec use
*/
int av_tempfile(char *prefix, char **filename);
#endif /* INTERNAL_H */