projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc3f320
)
Add multiple inclusion guards.
author
Diego Biurrun
<diego@biurrun.de>
Tue, 26 Feb 2008 23:17:08 +0000
(23:17 +0000)
committer
Diego Biurrun
<diego@biurrun.de>
Tue, 26 Feb 2008 23:17:08 +0000
(23:17 +0000)
Originally committed as revision 12255 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/faanidct.h
patch
|
blob
|
history
diff --git
a/libavcodec/faanidct.h
b/libavcodec/faanidct.h
index bd59e2d12fe129552cc89e5047689a5b21cfc0d0..6b013bdba6c6b43a5f8611541018d43eb723512a 100644
(file)
--- a/
libavcodec/faanidct.h
+++ b/
libavcodec/faanidct.h
@@
-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 */