mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
1005f542b2
- 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
13 lines
190 B
C
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 */
|