2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2006-07-16 16:32:48 +00:00
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2009-01-28 00:16:05 +00:00
|
|
|
* common internal API header
|
2006-07-16 16:32:48 +00:00
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVUTIL_INTERNAL_H
|
|
|
|
#define AVUTIL_INTERNAL_H
|
2006-07-16 16:32:48 +00:00
|
|
|
|
2007-07-14 14:34:40 +00:00
|
|
|
#if !defined(DEBUG) && !defined(NDEBUG)
|
|
|
|
# define NDEBUG
|
|
|
|
#endif
|
|
|
|
|
2009-01-25 21:54:05 +00:00
|
|
|
#include <limits.h>
|
2007-06-16 22:59:13 +00:00
|
|
|
#include <stdint.h>
|
2007-07-14 14:34:40 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <assert.h>
|
2009-01-30 18:46:39 +00:00
|
|
|
#include "config.h"
|
2010-03-09 17:39:19 +00:00
|
|
|
#include "attributes.h"
|
2009-01-15 22:58:35 +00:00
|
|
|
#include "timer.h"
|
2011-05-22 10:45:00 +00:00
|
|
|
#include "dict.h"
|
|
|
|
|
|
|
|
struct AVDictionary {
|
|
|
|
int count;
|
|
|
|
AVDictionaryEntry *elems;
|
|
|
|
};
|
2007-06-16 22:59:13 +00:00
|
|
|
|
2007-08-13 15:28:29 +00:00
|
|
|
#ifndef attribute_align_arg
|
2011-03-23 11:30:44 +00:00
|
|
|
#if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
|
2007-08-13 15:28:29 +00:00
|
|
|
# define attribute_align_arg __attribute__((force_align_arg_pointer))
|
|
|
|
#else
|
|
|
|
# define attribute_align_arg
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2006-12-06 23:23:20 +00:00
|
|
|
#ifndef INT16_MIN
|
2009-09-01 16:00:45 +00:00
|
|
|
#define INT16_MIN (-0x7fff - 1)
|
2006-12-06 23:23:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INT16_MAX
|
|
|
|
#define INT16_MAX 0x7fff
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INT32_MIN
|
2009-09-01 16:00:45 +00:00
|
|
|
#define INT32_MIN (-0x7fffffff - 1)
|
2006-12-06 23:23:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INT32_MAX
|
|
|
|
#define INT32_MAX 0x7fffffff
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UINT32_MAX
|
|
|
|
#define UINT32_MAX 0xffffffff
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INT64_MIN
|
2009-09-01 16:00:45 +00:00
|
|
|
#define INT64_MIN (-0x7fffffffffffffffLL - 1)
|
2006-12-06 23:23:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INT64_MAX
|
2006-12-06 23:46:11 +00:00
|
|
|
#define INT64_MAX INT64_C(9223372036854775807)
|
2006-12-06 23:23:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UINT64_MAX
|
2006-12-06 23:46:11 +00:00
|
|
|
#define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
|
2006-12-06 23:23:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INT_BIT
|
2009-02-21 16:03:30 +00:00
|
|
|
# define INT_BIT (CHAR_BIT * sizeof(int))
|
2006-12-06 23:23:20 +00:00
|
|
|
#endif
|
|
|
|
|
2006-07-16 16:32:48 +00:00
|
|
|
#ifndef offsetof
|
2009-09-01 16:00:45 +00:00
|
|
|
# define offsetof(T, F) ((unsigned int)((char *)&((T *)0)->F))
|
2006-07-16 16:32:48 +00:00
|
|
|
#endif
|
|
|
|
|
2009-05-25 01:50:37 +00:00
|
|
|
/* Use to export labels from asm. */
|
|
|
|
#define LABEL_MANGLE(a) EXTERN_PREFIX #a
|
|
|
|
|
2006-07-16 16:32:48 +00:00
|
|
|
// Use rip-relative addressing if compiling PIC code on x86-64.
|
2009-01-13 23:44:16 +00:00
|
|
|
#if ARCH_X86_64 && defined(PIC)
|
2008-03-22 18:15:12 +00:00
|
|
|
# define LOCAL_MANGLE(a) #a "(%%rip)"
|
2008-03-17 09:22:11 +00:00
|
|
|
#else
|
2008-03-22 18:15:12 +00:00
|
|
|
# define LOCAL_MANGLE(a) #a
|
2006-11-14 03:35:50 +00:00
|
|
|
#endif
|
2006-07-16 16:32:48 +00:00
|
|
|
|
2008-03-22 18:15:12 +00:00
|
|
|
#define MANGLE(a) EXTERN_PREFIX LOCAL_MANGLE(a)
|
|
|
|
|
2006-07-16 16:32:48 +00:00
|
|
|
/* debug stuff */
|
|
|
|
|
2006-11-14 03:35:50 +00:00
|
|
|
#define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
|
2006-07-16 16:32:48 +00:00
|
|
|
|
2006-11-14 21:57:27 +00:00
|
|
|
/* math */
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if ARCH_X86
|
2006-07-16 16:32:48 +00:00
|
|
|
#define MASK_ABS(mask, level)\
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(\
|
2008-02-28 17:01:35 +00:00
|
|
|
"cltd \n\t"\
|
2006-07-16 16:32:48 +00:00
|
|
|
"xorl %1, %0 \n\t"\
|
|
|
|
"subl %1, %0 \n\t"\
|
|
|
|
: "+a" (level), "=&d" (mask)\
|
|
|
|
);
|
|
|
|
#else
|
|
|
|
#define MASK_ABS(mask, level)\
|
2009-09-01 16:00:45 +00:00
|
|
|
mask = level >> 31;\
|
|
|
|
level = (level ^ mask) - mask;
|
2006-07-16 16:32:48 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-28 23:16:49 +00:00
|
|
|
/* avoid usage of dangerous/inappropriate system functions */
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef malloc
|
2006-07-16 16:32:48 +00:00
|
|
|
#define malloc please_use_av_malloc
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef free
|
2006-07-16 16:32:48 +00:00
|
|
|
#define free please_use_av_free
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef realloc
|
2006-07-16 16:32:48 +00:00
|
|
|
#define realloc please_use_av_realloc
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef time
|
2006-07-16 16:32:48 +00:00
|
|
|
#define time time_is_forbidden_due_to_security_issues
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef rand
|
2009-03-21 16:16:04 +00:00
|
|
|
#define rand rand_is_forbidden_due_to_state_trashing_use_av_lfg_get
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef srand
|
2009-03-21 16:16:04 +00:00
|
|
|
#define srand srand_is_forbidden_due_to_state_trashing_use_av_lfg_init
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef random
|
2009-03-21 16:16:04 +00:00
|
|
|
#define random random_is_forbidden_due_to_state_trashing_use_av_lfg_get
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef sprintf
|
2006-07-16 16:32:48 +00:00
|
|
|
#define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef strcat
|
2007-06-24 12:23:34 +00:00
|
|
|
#define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
|
2011-05-03 18:21:49 +00:00
|
|
|
#undef strncpy
|
|
|
|
#define strncpy strncpy_is_forbidden_due_to_security_issues_use_av_strlcpy
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef exit
|
2007-03-27 21:47:03 +00:00
|
|
|
#define exit exit_is_forbidden
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef printf
|
2009-01-25 22:05:26 +00:00
|
|
|
#define printf please_use_av_log_instead_of_printf
|
2007-07-08 15:56:31 +00:00
|
|
|
#undef fprintf
|
2009-01-25 22:05:26 +00:00
|
|
|
#define fprintf please_use_av_log_instead_of_fprintf
|
2008-01-17 08:32:31 +00:00
|
|
|
#undef puts
|
2009-01-25 22:05:26 +00:00
|
|
|
#define puts please_use_av_log_instead_of_puts
|
2007-11-19 10:40:11 +00:00
|
|
|
#undef perror
|
|
|
|
#define perror please_use_av_log_instead_of_perror
|
2006-07-16 16:32:48 +00:00
|
|
|
|
2009-09-06 00:08:19 +00:00
|
|
|
#define FF_ALLOC_OR_GOTO(ctx, p, size, label)\
|
2009-08-29 22:38:48 +00:00
|
|
|
{\
|
2009-09-01 16:00:45 +00:00
|
|
|
p = av_malloc(size);\
|
|
|
|
if (p == NULL && (size) != 0) {\
|
2009-09-06 00:08:19 +00:00
|
|
|
av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
|
|
|
|
goto label;\
|
2009-08-29 22:38:48 +00:00
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
2009-09-06 00:08:19 +00:00
|
|
|
#define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)\
|
2006-07-16 16:32:48 +00:00
|
|
|
{\
|
2009-09-01 16:00:45 +00:00
|
|
|
p = av_mallocz(size);\
|
|
|
|
if (p == NULL && (size) != 0) {\
|
2009-09-06 00:08:19 +00:00
|
|
|
av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
|
|
|
|
goto label;\
|
2006-07-16 16:32:48 +00:00
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
2010-03-09 15:10:23 +00:00
|
|
|
#include "libm.h"
|
2009-01-11 22:10:04 +00:00
|
|
|
|
2009-01-15 23:01:26 +00:00
|
|
|
/**
|
2010-06-30 15:38:06 +00:00
|
|
|
* Return NULL if CONFIG_SMALL is true, otherwise the argument
|
2009-01-28 23:03:17 +00:00
|
|
|
* without modification. Used to disable the definition of strings
|
2009-01-15 23:01:26 +00:00
|
|
|
* (for example AVCodec long_names).
|
|
|
|
*/
|
|
|
|
#if CONFIG_SMALL
|
|
|
|
# define NULL_IF_CONFIG_SMALL(x) NULL
|
|
|
|
#else
|
|
|
|
# define NULL_IF_CONFIG_SMALL(x) x
|
|
|
|
#endif
|
|
|
|
|
2010-06-16 04:53:09 +00:00
|
|
|
|
|
|
|
/**
|
2010-06-30 20:09:55 +00:00
|
|
|
* Define a function with only the non-default version specified.
|
|
|
|
*
|
|
|
|
* On systems with ELF shared libraries, all symbols exported from
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav libraries are tagged with the name and major version of the
|
2010-06-30 20:09:55 +00:00
|
|
|
* library to which they belong. If a function is moved from one
|
|
|
|
* library to another, a wrapper must be retained in the original
|
|
|
|
* location to preserve binary compatibility.
|
|
|
|
*
|
|
|
|
* Functions defined with this macro will never be used to resolve
|
|
|
|
* symbols by the build-time linker.
|
|
|
|
*
|
|
|
|
* @param type return type of function
|
|
|
|
* @param name name of function
|
|
|
|
* @param args argument list of function
|
|
|
|
* @param ver version tag to assign function
|
2010-06-16 04:53:09 +00:00
|
|
|
*/
|
2010-06-15 13:26:52 +00:00
|
|
|
#if HAVE_SYMVER_ASM_LABEL
|
2010-06-15 15:24:28 +00:00
|
|
|
# define FF_SYMVER(type, name, args, ver) \
|
|
|
|
type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver); \
|
2010-06-15 13:26:52 +00:00
|
|
|
type ff_##name args
|
|
|
|
#elif HAVE_SYMVER_GNU_ASM
|
2010-06-15 15:24:28 +00:00
|
|
|
# define FF_SYMVER(type, name, args, ver) \
|
|
|
|
__asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver); \
|
|
|
|
type ff_##name args; \
|
2010-06-15 13:26:52 +00:00
|
|
|
type ff_##name args
|
|
|
|
#endif
|
|
|
|
|
2011-02-08 02:15:44 +00:00
|
|
|
/**
|
|
|
|
* Returns NULL if a threading library has not been enabled.
|
|
|
|
* Used to disable threading functions in AVCodec definitions
|
|
|
|
* when not needed.
|
|
|
|
*/
|
|
|
|
#if HAVE_THREADS
|
|
|
|
# define ONLY_IF_THREADS_ENABLED(x) x
|
|
|
|
#else
|
|
|
|
# define ONLY_IF_THREADS_ENABLED(x) NULL
|
|
|
|
#endif
|
|
|
|
|
2011-05-24 17:04:38 +00:00
|
|
|
#if HAVE_MMX
|
|
|
|
/**
|
|
|
|
* Empty mmx state.
|
|
|
|
* this must be called between any dsp function and float/double code.
|
|
|
|
* for example sin(); dsp->idct_put(); emms_c(); cos()
|
|
|
|
*/
|
|
|
|
static av_always_inline void emms_c(void)
|
|
|
|
{
|
|
|
|
__asm__ volatile ("emms" ::: "memory");
|
|
|
|
}
|
|
|
|
#else /* HAVE_MMX */
|
|
|
|
#define emms_c()
|
|
|
|
#endif /* HAVE_MMX */
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVUTIL_INTERNAL_H */
|