mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-02 21:12:12 +00:00
Add proper #idef to dlsymm call, also fixes an unresolved symbol on OS X 10.2.
patch by Patrice Bensoussan, patrice.bensoussan free fr Originally committed as revision 8200 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4926485d92
commit
43a498f205
@ -70,6 +70,7 @@ typedef struct AC3DecodeState {
|
|||||||
|
|
||||||
} AC3DecodeState;
|
} AC3DecodeState;
|
||||||
|
|
||||||
|
#ifdef CONFIG_LIBA52BIN
|
||||||
static void* dlsymm(void* handle, const char* symbol)
|
static void* dlsymm(void* handle, const char* symbol)
|
||||||
{
|
{
|
||||||
void* f = dlsym(handle, symbol);
|
void* f = dlsym(handle, symbol);
|
||||||
@ -77,6 +78,7 @@ static void* dlsymm(void* handle, const char* symbol)
|
|||||||
av_log( NULL, AV_LOG_ERROR, "A52 Decoder - function '%s' can't be resolved\n", symbol);
|
av_log( NULL, AV_LOG_ERROR, "A52 Decoder - function '%s' can't be resolved\n", symbol);
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static int a52_decode_init(AVCodecContext *avctx)
|
static int a52_decode_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user