comparison lzo.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 5ad447ede15c
children 1b2867913935
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #ifndef LZO_H 22 #ifndef FFMPEG_LZO_H
23 #define LZO_H 23 #define FFMPEG_LZO_H
24 24
25 #define LZO_INPUT_DEPLETED 1 25 #define LZO_INPUT_DEPLETED 1
26 #define LZO_OUTPUT_FULL 2 26 #define LZO_OUTPUT_FULL 2
27 #define LZO_INVALID_BACKPTR 4 27 #define LZO_INVALID_BACKPTR 4
28 #define LZO_ERROR 8 28 #define LZO_ERROR 8
30 #define LZO_INPUT_PADDING 8 30 #define LZO_INPUT_PADDING 8
31 #define LZO_OUTPUT_PADDING 12 31 #define LZO_OUTPUT_PADDING 12
32 32
33 int lzo1x_decode(void *out, int *outlen, void *in, int *inlen); 33 int lzo1x_decode(void *out, int *outlen, void *in, int *inlen);
34 34
35 #endif 35 #endif /* FFMPEG_LZO_H */