Commit 8194c42f authored by diego's avatar diego

Add multiple inclusion guards.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12255 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 72925813
...@@ -19,6 +19,11 @@ ...@@ -19,6 +19,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * 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(DCTELEM block[64]);
void ff_faanidct_add(uint8_t *dest, int line_size, 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]); 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