diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-08-11 19:00:43 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-08-11 19:00:43 +0000 |
commit | 0cfa9713f78837542895769919c915d54aaf705a (patch) | |
tree | 5a5da9610790b68a620d68a7aff5446730190e36 /libavcodec | |
parent | 219b06c66bd63ed5e8ec2956aba5e0a6bf62b622 (diff) | |
download | ffmpeg-0cfa9713f78837542895769919c915d54aaf705a.tar.gz |
export for imgconvert usage
Originally committed as revision 67 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dsputil.c | 2 | ||||
-rw-r--r-- | libavcodec/dsputil.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index b0de4d359f..4cb781a82d 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -31,7 +31,7 @@ op_pixels_abs_func pix_abs16x16_x2; op_pixels_abs_func pix_abs16x16_y2; op_pixels_abs_func pix_abs16x16_xy2; -static UINT8 cropTbl[256 + 2 * MAX_NEG_CROP]; +UINT8 cropTbl[256 + 2 * MAX_NEG_CROP]; UINT32 squareTbl[512]; extern UINT16 default_intra_matrix[64]; diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index ebb4d8446c..14613adba2 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -25,6 +25,7 @@ extern UINT8 zigzag_direct[64]; /* temporary */ extern UINT32 squareTbl[512]; +extern UINT8 cropTbl[256 + 2 * MAX_NEG_CROP]; void dsputil_init(void); |