]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/8svx.c
sparc: fix a few pages of cast warnings
[ffmpeg] / libavcodec / 8svx.c
index e4a5d84effe4d1a9a6f0920e7ce02e383d9e62ea..c139e5d40b3aa1e403230b6811c1bb0cbe7d4819 100644 (file)
@@ -20,7 +20,7 @@
  */
 
 /**
- * @file 8svx.c
+ * @file libavcodec/8svx.c
  * 8svx audio decoder
  * @author Jaikrishnan Menon
  * supports: fibonacci delta encoding
@@ -32,7 +32,7 @@
 /** decoder context */
 typedef struct EightSvxContext {
     int16_t fib_acc;
-    int16_t *table;
+    const int16_t *table;
 } EightSvxContext;
 
 static const int16_t fibonacci[16]   = { -34<<8, -21<<8, -13<<8,  -8<<8, -5<<8, -3<<8, -2<<8, -1<<8,
@@ -42,8 +42,10 @@ static const int16_t exponential[16] = { -128<<8, -64<<8, -32<<8, -16<<8, -8<<8,
 
 /** decode a frame */
 static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
-                                 const uint8_t *buf, int buf_size)
+                                 AVPacket *avpkt)
 {
+    const uint8_t *buf = avpkt->data;
+    int buf_size = avpkt->size;
     EightSvxContext *esc = avctx->priv_data;
     int16_t *out_data = data;
     int consumed = buf_size;