0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

ad_faad: include neaacdec.h instead of faad.h

The faad.h header printed a warning that this header is outdated.
The header neaacdec.h is probably the proper header, so use that.
This commit is contained in:
wm4 2012-07-28 23:50:26 +02:00
parent 08caadb9c0
commit 806461c5b6
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -4770,7 +4770,7 @@ echocheck "FAAD2 support"
if test "$_faad" = auto ; then
_faad=no
cat > $TMPC << EOF
#include <faad.h>
#include <neaacdec.h>
#ifndef FAAD_MIN_STREAMSIZE
#error Too old version
#endif

View File

@ -23,7 +23,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <faad.h>
#include <neaacdec.h>
#include "config.h"
#include "options.h"