Mercurial > libavcodec.hg
comparison libpostproc/postprocess.c @ 1067:54aa0bb40e97 libavcodec
avoid #include "../
| author | michael |
|---|---|
| date | Tue, 11 Feb 2003 21:13:30 +0000 |
| parents | 804cc05a3f61 |
| children | 8528d0b9e508 |
comparison
equal
deleted
inserted
replaced
| 1066:6ce55cd04783 | 1067:54aa0bb40e97 |
|---|---|
| 1 /* | 1 /* |
| 2 Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at) | 2 Copyright (C) 2001-2003 Michael Niedermayer (michaelni@gmx.at) |
| 3 | 3 |
| 4 This program is free software; you can redistribute it and/or modify | 4 This program is free software; you can redistribute it and/or modify |
| 5 it under the terms of the GNU General Public License as published by | 5 it under the terms of the GNU General Public License as published by |
| 6 the Free Software Foundation; either version 2 of the License, or | 6 the Free Software Foundation; either version 2 of the License, or |
| 7 (at your option) any later version. | 7 (at your option) any later version. |
| 60 ... | 60 ... |
| 61 */ | 61 */ |
| 62 | 62 |
| 63 //Changelog: use the CVS log | 63 //Changelog: use the CVS log |
| 64 | 64 |
| 65 #include "../config.h" | 65 #include "config.h" |
| 66 #include <inttypes.h> | 66 #include <inttypes.h> |
| 67 #include <stdio.h> | 67 #include <stdio.h> |
| 68 #include <stdlib.h> | 68 #include <stdlib.h> |
| 69 #include <string.h> | 69 #include <string.h> |
| 70 #ifdef HAVE_MALLOC_H | 70 #ifdef HAVE_MALLOC_H |
| 78 #ifndef PIC | 78 #ifndef PIC |
| 79 #include "../libvo/fastmemcpy.h" | 79 #include "../libvo/fastmemcpy.h" |
| 80 #endif | 80 #endif |
| 81 #include "postprocess.h" | 81 #include "postprocess.h" |
| 82 #include "postprocess_internal.h" | 82 #include "postprocess_internal.h" |
| 83 #include "../mangle.h" | 83 #include "mangle.h" |
| 84 | 84 |
| 85 #define MIN(a,b) ((a) > (b) ? (b) : (a)) | 85 #define MIN(a,b) ((a) > (b) ? (b) : (a)) |
| 86 #define MAX(a,b) ((a) < (b) ? (b) : (a)) | 86 #define MAX(a,b) ((a) < (b) ? (b) : (a)) |
| 87 #define ABS(a) ((a) > 0 ? (a) : (-(a))) | 87 #define ABS(a) ((a) > 0 ? (a) : (-(a))) |
| 88 #define SIGN(a) ((a) > 0 ? 1 : -1) | 88 #define SIGN(a) ((a) > 0 ? 1 : -1) |
