]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - bitstream.h
remove pointless cast
[paraslash.git] / bitstream.h
index 4f94f692b37c97b0f83baac551efc3f7305619c1..d052337c1a1825d29bc700c8a918177220dc4f74 100644 (file)
@@ -47,7 +47,7 @@ struct vlc {
  * Refill the internal cache from the bitstream.
  */
 #define UPDATE_CACHE(name, gb)\
-       name##_cache= AV_RB32( ((const uint8_t *)(gb)->buffer) \
+       name##_cache= AV_RB32( ((gb)->buffer) \
                + (name##_index >> 3) ) << (name##_index & 0x07);\
 
 /**