Commit c91d512b authored by Diego Biurrun's avatar Diego Biurrun

Add multiple inclusion guards.

Originally committed as revision 12255 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent dc3f320d
......@@ -19,6 +19,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef FFMPEG_FAANIDCT_H
#define FFMPEG_FAANIDCT_H
void ff_faanidct(DCTELEM block[64]);
void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]);
void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]);
#endif /* FFMPEG_FAANIDCT_H */
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