changeset 4816:ef2cf8f41c08 libavcodec

general purpose var should be int
author michael
date Sat, 07 Apr 2007 23:27:11 +0000
parents 1a4c48de8166
children a2bb53af16d1
files bethsoftvideo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bethsoftvideo.c	Sat Apr 07 23:18:34 2007 +0000
+++ b/bethsoftvideo.c	Sat Apr 07 23:27:11 2007 +0000
@@ -66,7 +66,7 @@
     uint8_t * frame_end;
     int line_remaining = avctx->width;          // number of bytes remaining on a line
     const int wrap_to_next_line = vid->frame.linesize[0] - avctx->width;
-    uint8_t rle_num_bytes;
+    int rle_num_bytes;
     int yoffset;
 
     if (avctx->reget_buffer(avctx, &vid->frame)) {