comparison libmpcodecs/vd_dmo.c @ 30636:93379281129d

Add malloc.h #include for memalign(), fixes the warning: libmpcodecs/vd_dmo.c:81: warning: implicit declaration of function 'memalign'
author diego
date Sun, 21 Feb 2010 12:48:56 +0000
parents caaa73737ef1
children 1c38d10731ab
comparison
equal deleted inserted replaced
30635:9f184c7776f1 30636:93379281129d
14 * You should have received a copy of the GNU General Public License along 14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., 15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */ 17 */
18 18
19 #include "config.h"
20
21 #if HAVE_MALLOC_H
22 #include <malloc.h>
23 #endif
19 #include <stdio.h> 24 #include <stdio.h>
20 #include <stdlib.h> 25 #include <stdlib.h>
21 #include <stdarg.h> 26 #include <stdarg.h>
22
23 #include "config.h"
24 27
25 #include "mp_msg.h" 28 #include "mp_msg.h"
26 #include "help_mp.h" 29 #include "help_mp.h"
27 30
28 #include "vd_internal.h" 31 #include "vd_internal.h"