diff options
author | Corey Hickey <bugfood-ml@fatooh.org> | 2006-03-30 04:33:05 +0000 |
---|---|---|
committer | Corey Hickey <bugfood-ml@fatooh.org> | 2006-03-30 04:33:05 +0000 |
commit | 1005f542b20cb152514c9496689148fc4456f438 (patch) | |
tree | ff65aadb3a063f6a1cd0f72c2bd4f3a38afc1bae /libavcodec/internal.h | |
parent | 06ab9cffb25518030a1434da5958a5c07f4a7cd3 (diff) | |
download | ffmpeg-1005f542b20cb152514c9496689148fc4456f438.tar.gz |
- 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
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r-- | libavcodec/internal.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h new file mode 100644 index 0000000000..189090eaad --- /dev/null +++ b/libavcodec/internal.h @@ -0,0 +1,12 @@ +#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 */ |