[FFmpeg-cvslog] vble: change variable to int, its slightly faster and int is preferable if no specific size is needed.
Michael Niedermayer
git at videolan.org
Sat Nov 12 03:23:42 CET 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Nov 12 01:39:05 2011 +0100| [c5e55e214cffc68641ec05fdf5a853df230ccfeb] | committer: Michael Niedermayer
vble: change variable to int, its slightly faster and int is preferable if no specific size is needed.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c5e55e214cffc68641ec05fdf5a853df230ccfeb
---
libavcodec/vble.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index f354faa..b758e23 100644
--- a/libavcodec/vble.c
+++ b/libavcodec/vble.c
@@ -41,7 +41,7 @@ typedef struct {
static uint8_t vble_read_reverse_unary(GetBitContext *gb)
{
/* At most we need to read 9 bits total to get indices up to 8 */
- uint8_t val = show_bits(gb, 8);
+ int val = show_bits(gb, 8);
if (val) {
val = 7 - av_log2_16bit(av_reverse[val]);
More information about the ffmpeg-cvslog
mailing list