diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-06 00:14:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-06 00:14:18 +0000 |
commit | 6f1af73557824b1872732b7823e881a14f870077 (patch) | |
tree | 3d22e9a9585b538bd4295898f1e2f5a89d36619b /libavcodec/libxvid_internal.h | |
parent | 6f74b71ef0f5457b8cc736cb8f828ec1b75a217c (diff) | |
download | ffmpeg-6f1af73557824b1872732b7823e881a14f870077.tar.gz |
Give all wrappers for external libraries names starting with lib.
Originally committed as revision 9226 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libxvid_internal.h')
-rw-r--r-- | libavcodec/libxvid_internal.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libavcodec/libxvid_internal.h b/libavcodec/libxvid_internal.h new file mode 100644 index 0000000000..a86ee565f5 --- /dev/null +++ b/libavcodec/libxvid_internal.h @@ -0,0 +1,32 @@ +/* + * copyright (C) 2006 Corey Hickey + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef XVID_INTERNAL_H +#define XVID_INTERNAL_H + +/** + * @file libxvid_internal.h + * common functions for use with the XviD wrappers + */ + + +int av_tempfile(char *prefix, char **filename); + +#endif /* XVID_INTERNAL_H */ |