Blame src/liboggz/oggz_macros.h

Packit a38265
/*
Packit a38265
   Copyright (C) 2003 Commonwealth Scientific and Industrial Research
Packit a38265
   Organisation (CSIRO) Australia
Packit a38265
Packit a38265
   Redistribution and use in source and binary forms, with or without
Packit a38265
   modification, are permitted provided that the following conditions
Packit a38265
   are met:
Packit a38265
Packit a38265
   - Redistributions of source code must retain the above copyright
Packit a38265
   notice, this list of conditions and the following disclaimer.
Packit a38265
Packit a38265
   - Redistributions in binary form must reproduce the above copyright
Packit a38265
   notice, this list of conditions and the following disclaimer in the
Packit a38265
   documentation and/or other materials provided with the distribution.
Packit a38265
Packit a38265
   - Neither the name of CSIRO Australia nor the names of its
Packit a38265
   contributors may be used to endorse or promote products derived from
Packit a38265
   this software without specific prior written permission.
Packit a38265
Packit a38265
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit a38265
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit a38265
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
Packit a38265
   PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR
Packit a38265
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Packit a38265
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Packit a38265
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Packit a38265
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Packit a38265
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Packit a38265
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit a38265
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit a38265
*/
Packit a38265
Packit a38265
#ifndef __OGGZ_MACROS_H__
Packit a38265
#define __OGGZ_MACROS_H__
Packit a38265
Packit a38265
#include <stdlib.h>
Packit a38265
#include <ogg/ogg.h>
Packit a38265
Packit a38265
/* Use the malloc and free used by ogg; defaults are those from stdlib */
Packit a38265
#define oggz_malloc _ogg_malloc
Packit a38265
#define oggz_realloc _ogg_realloc
Packit a38265
#define oggz_free _ogg_free
Packit a38265
Packit a38265
#undef MIN
Packit a38265
#define MIN(a,b) ((a)<(b)?(a):(b))
Packit a38265
Packit a38265
#undef MAX
Packit a38265
#define MAX(a,b) ((a)>(b)?(a):(b))
Packit a38265
Packit a38265
/*
Packit a38265
** Inspiration : http://sourcefrog.net/weblog/software/languages/C/unused.html
Packit a38265
*/
Packit a38265
#ifdef UNUSED
Packit a38265
#elif defined (__GNUC__)
Packit a38265
#       define UNUSED(x) UNUSED_ ## x __attribute__ ((unused))
Packit a38265
#elif defined (__LCLINT__)
Packit a38265
#       define UNUSED(x) /*@unused@*/ x
Packit a38265
#else
Packit a38265
#       define UNUSED(x) x
Packit a38265
#endif
Packit a38265
Packit a38265
#ifdef __GNUC__
Packit a38265
#       define WARN_UNUSED      __attribute__ ((warn_unused_result))
Packit a38265
#else
Packit a38265
#       define WARN_UNUSED
Packit a38265
#endif
Packit a38265
Packit a38265
#endif /* __OGGZ_MACROS_H__ */