]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/8svx.c
Remove 2 unneeded variables from common_init() found by CSA.
[ffmpeg] / libavcodec / 8svx.c
index 3a69f3d74739fdad94afe69542d149234ac1186d..c139e5d40b3aa1e403230b6811c1bb0cbe7d4819 100644 (file)
@@ -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;