comparison roqvideo.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents b8e8aa53f613
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * 19 *
20 */ 20 */
21
22 #ifndef AVCODEC_ROQVIDEO_H
23 #define AVCODEC_ROQVIDEO_H
21 24
22 #include "avcodec.h" 25 #include "avcodec.h"
23 #include "dsputil.h" 26 #include "dsputil.h"
24 27
25 typedef struct { 28 typedef struct {
64 void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell); 67 void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell);
65 68
66 void ff_apply_motion_4x4(RoqContext *ri, int x, int y, int deltax, int deltay); 69 void ff_apply_motion_4x4(RoqContext *ri, int x, int y, int deltax, int deltay);
67 70
68 void ff_apply_motion_8x8(RoqContext *ri, int x, int y, int deltax, int deltay); 71 void ff_apply_motion_8x8(RoqContext *ri, int x, int y, int deltax, int deltay);
72
73 #endif