summaryrefslogtreecommitdiff
path: root/contrib/ffmpeg/libavcodec/loco.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ffmpeg/libavcodec/loco.c')
-rw-r--r--contrib/ffmpeg/libavcodec/loco.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/ffmpeg/libavcodec/loco.c b/contrib/ffmpeg/libavcodec/loco.c
index 760699d45..14be6f019 100644
--- a/contrib/ffmpeg/libavcodec/loco.c
+++ b/contrib/ffmpeg/libavcodec/loco.c
@@ -17,7 +17,6 @@
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
*/
/**
@@ -26,7 +25,6 @@
*/
#include "avcodec.h"
-#include "common.h"
#include "bitstream.h"
#include "golomb.h"
@@ -118,7 +116,7 @@ static inline int loco_predict(uint8_t* data, int stride, int step)
}
static int loco_decode_plane(LOCOContext *l, uint8_t *data, int width, int height,
- int stride, uint8_t *buf, int buf_size, int step)
+ int stride, const uint8_t *buf, int buf_size, int step)
{
RICEContext rc;
int val;
@@ -159,7 +157,7 @@ static int loco_decode_plane(LOCOContext *l, uint8_t *data, int width, int heigh
static int decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- uint8_t *buf, int buf_size)
+ const uint8_t *buf, int buf_size)
{
LOCOContext * const l = avctx->priv_data;
AVFrame * const p= (AVFrame*)&l->pic;