Mercurial > libavcodec.hg
annotate internal.h @ 3789:730ad999e379 libavcodec
Move the ratecontrol related code from mpegvideo.h to a separate header file.
author | takis |
---|---|
date | Fri, 29 Sep 2006 19:39:19 +0000 |
parents | c537a97eec66 |
children | c8c591fe26f8 |
rev | line source |
---|---|
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
1 /* |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
2 * copyright (C) 2006 Corey Hickey |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
3 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
4 * This library is free software; you can redistribute it and/or |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
5 * modify it under the terms of the GNU Lesser General Public |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
6 * License as published by the Free Software Foundation; either |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
7 * version 2 of the License, or (at your option) any later version. |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
8 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
9 * This library is distributed in the hope that it will be useful, |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
12 * Lesser General Public License for more details. |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
13 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
14 * You should have received a copy of the GNU Lesser General Public |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
15 * License along with this library; if not, write to the Free Software |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
17 */ |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
3233
diff
changeset
|
18 |
3233
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
19 #ifndef INTERNAL_H |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
20 #define INTERNAL_H |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
21 |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
22 /** |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
23 * @file internal.h |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
24 * common functions for internal libavcodec use |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
25 */ |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
26 |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
27 |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
28 int av_tempfile(char *prefix, char **filename); |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
29 |
18af2f7788c6
- Add new file internal.h for common internal-use-only functions.
corey
parents:
diff
changeset
|
30 #endif /* INTERNAL_H */ |