comparison intrax8.h @ 5902:36a80fc5d25c libavcodec

add multiple inclusion guards
author aurel
date Fri, 09 Nov 2007 23:12:31 +0000
parents d0bfc0b00d6c
children 5bfa6df53349
comparison
equal deleted inserted replaced
5901:35c91d1b84c0 5902:36a80fc5d25c
13 * 13 *
14 * You should have received a copy of the GNU Lesser General Public 14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software 15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */ 17 */
18
19 #ifndef FFMPEG_INTRAX8_H
20 #define FFMPEG_INTRAX8_H
18 21
19 typedef struct{ 22 typedef struct{
20 VLC * j_ac_vlc[4];//they point to the static j_mb_vlc 23 VLC * j_ac_vlc[4];//they point to the static j_mb_vlc
21 VLC * j_orient_vlc; 24 VLC * j_orient_vlc;
22 VLC * j_dc_vlc[3]; 25 VLC * j_dc_vlc[3];
44 int est_run; 47 int est_run;
45 } IntraX8Context; 48 } IntraX8Context;
46 49
47 void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s); 50 void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s);
48 int ff_intrax8_decode_picture(IntraX8Context * w, int quant, int halfpq); 51 int ff_intrax8_decode_picture(IntraX8Context * w, int quant, int halfpq);
52
53 #endif /* FFMPEG_INTRAX8_H */