[FFmpeg-cvslog] r9795 - trunk/libavcodec/vp56.h

aurel subversion
Wed Jul 25 21:34:31 CEST 2007


Author: aurel
Date: Wed Jul 25 21:34:31 2007
New Revision: 9795

Log:
remove wrong const qualifier

Modified:
   trunk/libavcodec/vp56.h

Modified: trunk/libavcodec/vp56.h
==============================================================================
--- trunk/libavcodec/vp56.h	(original)
+++ trunk/libavcodec/vp56.h	Wed Jul 25 21:34:31 2007
@@ -49,7 +49,7 @@ typedef int (*vp56_parse_header_t)(vp56_
 typedef struct {
     int high;
     int bits;
-    const uint8_t *buffer;
+    uint8_t *buffer;
     unsigned long code_word;
 } vp56_range_coder_t;
 
@@ -165,7 +165,7 @@ int vp56_decode_frame(AVCodecContext *av
  */
 
 static inline void vp56_init_range_decoder(vp56_range_coder_t *c,
-                                           const uint8_t *buf, int buf_size)
+                                           uint8_t *buf, int buf_size)
 {
     c->high = 255;
     c->bits = 8;




More information about the ffmpeg-cvslog mailing list