comparison faanidct.h @ 6419:8d510925c2e5 libavcodec

Add multiple inclusion guards.
author diego
date Tue, 26 Feb 2008 23:17:08 +0000
parents 9cd577ad9c0b
children 95dc96b1e4f4
comparison
equal deleted inserted replaced
6418:eb740c8e9212 6419:8d510925c2e5
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #ifndef FFMPEG_FAANIDCT_H
23 #define FFMPEG_FAANIDCT_H
24
22 void ff_faanidct(DCTELEM block[64]); 25 void ff_faanidct(DCTELEM block[64]);
23 void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]); 26 void ff_faanidct_add(uint8_t *dest, int line_size, DCTELEM block[64]);
24 void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]); 27 void ff_faanidct_put(uint8_t *dest, int line_size, DCTELEM block[64]);
28
29 #endif /* FFMPEG_FAANIDCT_H */