summaryrefslogtreecommitdiff
path: root/vhook/fish.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2003-02-11 16:35:48 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2003-02-11 16:35:48 +0000
commit0c1a9edad463bd6e22b30c19b700b099c7093fc1 (patch)
treed16ccbe29c8dbfc2cdc4e92cac31b22c181ed940 /vhook/fish.c
parent4596673c062e3834b6d31d1e8e210b64d74ce26b (diff)
* UINTX -> uintx_t INTX -> intx_t
Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/fish.c')
-rw-r--r--vhook/fish.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vhook/fish.c b/vhook/fish.c
index 1e75e9c658..15486d79a9 100644
--- a/vhook/fish.c
+++ b/vhook/fish.c
@@ -68,7 +68,7 @@ typedef struct {
int file_limit;
int debug;
int min_interval;
- INT64 next_pts;
+ int64_t next_pts;
int inset;
int min_width;
} ContextInfo;
@@ -193,10 +193,10 @@ static void get_hsv(HSV *hsv, int r, int g, int b)
return;
}
-void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int height, INT64 pts)
+void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int height, int64_t pts)
{
ContextInfo *ci = (ContextInfo *) ctx;
- UINT8 *cm = cropTbl + MAX_NEG_CROP;
+ uint8_t *cm = cropTbl + MAX_NEG_CROP;
int rowsize = picture->linesize[0];
if (pts < ci->next_pts)
@@ -208,7 +208,7 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width,
ci->next_pts = pts + 1000000;
if (pix_fmt == PIX_FMT_YUV420P) {
- UINT8 *y, *u, *v;
+ uint8_t *y, *u, *v;
int width2 = width >> 1;
int inrange = 0;
int pixcnt;