annotate internal.h @ 3968:c86c7a54ba92 libavcodec

add_bytes passes tests
author lu_zero
date Mon, 09 Oct 2006 13:37:43 +0000
parents c8c591fe26f8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
4 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
5 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3233
diff changeset
7 * 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
8 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3233
diff changeset
10 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3233
diff changeset
12 * 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
13 * 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
14 * 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
15 *
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3233
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3699
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
3699
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3233
diff changeset
18 * 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
19 */
c537a97eec66 Add official LGPL license headers to the files that were missing them.
diego
parents: 3233
diff changeset
20
3233
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
21 #ifndef INTERNAL_H
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
22 #define INTERNAL_H
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
23
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
24 /**
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
25 * @file internal.h
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
26 * common functions for internal libavcodec use
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
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 int av_tempfile(char *prefix, char **filename);
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
31
18af2f7788c6 - Add new file internal.h for common internal-use-only functions.
corey
parents:
diff changeset
32 #endif /* INTERNAL_H */