Commit 75f11901 authored by Diego Biurrun's avatar Diego Biurrun

mips: Move MMI function declarations to a header.

This fixes compilation with -Werror=missing-prototypes.
parent d1c4ec7f
...@@ -25,10 +25,6 @@ ...@@ -25,10 +25,6 @@
#include "libavcodec/dsputil.h" #include "libavcodec/dsputil.h"
#include "mmi.h" #include "mmi.h"
void ff_mmi_idct_put(uint8_t *dest, int line_size, DCTELEM *block);
void ff_mmi_idct_add(uint8_t *dest, int line_size, DCTELEM *block);
void ff_mmi_idct(DCTELEM *block);
static void clear_blocks_mmi(DCTELEM * blocks) static void clear_blocks_mmi(DCTELEM * blocks)
{ {
__asm__ volatile( __asm__ volatile(
......
...@@ -21,6 +21,14 @@ ...@@ -21,6 +21,14 @@
#ifndef AVCODEC_PS2_MMI_H #ifndef AVCODEC_PS2_MMI_H
#define AVCODEC_PS2_MMI_H #define AVCODEC_PS2_MMI_H
#include <stdint.h>
#include "libavcodec/dsputil.h"
void ff_mmi_idct_put(uint8_t *dest, int line_size, DCTELEM *block);
void ff_mmi_idct_add(uint8_t *dest, int line_size, DCTELEM *block);
void ff_mmi_idct(DCTELEM *block);
#define align16 __attribute__ ((aligned (16))) #define align16 __attribute__ ((aligned (16)))
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment