comparison mathops.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 7ffc96c9ab1a
children 4e37a1156d72
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
17 * 17 *
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software 19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */ 21 */
22 #ifndef MATHOPS_H 22 #ifndef FFMPEG_MATHOPS_H
23 #define MATHOPS_H 23 #define FFMPEG_MATHOPS_H
24 24
25 #include "common.h" 25 #include "common.h"
26 26
27 #ifdef ARCH_X86_32 27 #ifdef ARCH_X86_32
28 28
69 /* signed 16x16 -> 32 multiply */ 69 /* signed 16x16 -> 32 multiply */
70 #ifndef MUL16 70 #ifndef MUL16
71 # define MUL16(ra, rb) ((ra) * (rb)) 71 # define MUL16(ra, rb) ((ra) * (rb))
72 #endif 72 #endif
73 73
74 #endif //MATHOPS_H 74 #endif /* FFMPEG_MATHOPS_H */
75 75