diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:35:48 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-02-11 16:35:48 +0000 |
commit | 0c1a9edad463bd6e22b30c19b700b099c7093fc1 (patch) | |
tree | d16ccbe29c8dbfc2cdc4e92cac31b22c181ed940 /libavcodec/ps2 | |
parent | 4596673c062e3834b6d31d1e8e210b64d74ce26b (diff) | |
download | ffmpeg-0c1a9edad463bd6e22b30c19b700b099c7093fc1.tar.gz |
* UINTX -> uintx_t INTX -> intx_t
Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ps2')
-rw-r--r-- | libavcodec/ps2/dsputil_mmi.c | 2 | ||||
-rw-r--r-- | libavcodec/ps2/idct_mmi.c | 4 | ||||
-rw-r--r-- | libavcodec/ps2/mpegvideo_mmi.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/ps2/dsputil_mmi.c b/libavcodec/ps2/dsputil_mmi.c index c9be68de3e..cb15a79e0f 100644 --- a/libavcodec/ps2/dsputil_mmi.c +++ b/libavcodec/ps2/dsputil_mmi.c @@ -41,7 +41,7 @@ static void clear_blocks_mmi(DCTELEM * blocks) } -static void get_pixels_mmi(DCTELEM *block, const UINT8 *pixels, int line_size) +static void get_pixels_mmi(DCTELEM *block, const uint8_t *pixels, int line_size) { int i; for(i=0;i<8;i++) { diff --git a/libavcodec/ps2/idct_mmi.c b/libavcodec/ps2/idct_mmi.c index 62bb6c4a11..b3b4e91af7 100644 --- a/libavcodec/ps2/idct_mmi.c +++ b/libavcodec/ps2/idct_mmi.c @@ -299,7 +299,7 @@ void ff_mmi_idct(int16_t * block) } -void ff_mmi_idct_put(UINT8 *dest, int line_size, DCTELEM *block) +void ff_mmi_idct_put(uint8_t *dest, int line_size, DCTELEM *block) { /* $4 = dest, $5 = line_size, $6 = block */ __asm__ __volatile__("la $24, %0"::"m"(consttable[0])); @@ -323,7 +323,7 @@ void ff_mmi_idct_put(UINT8 *dest, int line_size, DCTELEM *block) } -void ff_mmi_idct_add(UINT8 *dest, int line_size, DCTELEM *block) +void ff_mmi_idct_add(uint8_t *dest, int line_size, DCTELEM *block) { /* $4 = dest, $5 = line_size, $6 = block */ __asm__ __volatile__("la $24, %0"::"m"(consttable[0])); diff --git a/libavcodec/ps2/mpegvideo_mmi.c b/libavcodec/ps2/mpegvideo_mmi.c index 322ac2c7b1..b8b8964ce7 100644 --- a/libavcodec/ps2/mpegvideo_mmi.c +++ b/libavcodec/ps2/mpegvideo_mmi.c @@ -22,8 +22,8 @@ #include "../mpegvideo.h" #include "../avcodec.h" -void ff_mmi_idct_put(UINT8 *dest, int line_size, DCTELEM *block); -void ff_mmi_idct_add(UINT8 *dest, int line_size, DCTELEM *block); +void ff_mmi_idct_put(uint8_t *dest, int line_size, DCTELEM *block); +void ff_mmi_idct_add(uint8_t *dest, int line_size, DCTELEM *block); static void dct_unquantize_h263_mmi(MpegEncContext *s, |