Commit 910ca50c authored by michael's avatar michael

const


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11723 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d2f7987a
...@@ -84,7 +84,7 @@ static int dnxhd_init_vlc(DNXHDContext *ctx, int cid) ...@@ -84,7 +84,7 @@ static int dnxhd_init_vlc(DNXHDContext *ctx, int cid)
return 0; return 0;
} }
static int dnxhd_decode_header(DNXHDContext *ctx, uint8_t *buf, int buf_size, int first_field) static int dnxhd_decode_header(DNXHDContext *ctx, const uint8_t *buf, int buf_size, int first_field)
{ {
static const uint8_t header_prefix[] = { 0x00, 0x00, 0x02, 0x80, 0x01 }; static const uint8_t header_prefix[] = { 0x00, 0x00, 0x02, 0x80, 0x01 };
int i; int i;
...@@ -263,7 +263,7 @@ static int dnxhd_decode_macroblock(DNXHDContext *ctx, int x, int y) ...@@ -263,7 +263,7 @@ static int dnxhd_decode_macroblock(DNXHDContext *ctx, int x, int y)
return 0; return 0;
} }
static int dnxhd_decode_macroblocks(DNXHDContext *ctx, uint8_t *buf, int buf_size) static int dnxhd_decode_macroblocks(DNXHDContext *ctx, const uint8_t *buf, int buf_size)
{ {
int x, y; int x, y;
for (y = 0; y < ctx->mb_height; y++) { for (y = 0; y < ctx->mb_height; y++) {
...@@ -281,7 +281,7 @@ static int dnxhd_decode_macroblocks(DNXHDContext *ctx, uint8_t *buf, int buf_siz ...@@ -281,7 +281,7 @@ static int dnxhd_decode_macroblocks(DNXHDContext *ctx, uint8_t *buf, int buf_siz
} }
static int dnxhd_decode_frame(AVCodecContext *avctx, void *data, int *data_size, static int dnxhd_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
uint8_t *buf, int buf_size) const uint8_t *buf, int buf_size)
{ {
DNXHDContext *ctx = avctx->priv_data; DNXHDContext *ctx = avctx->priv_data;
AVFrame *picture = data; AVFrame *picture = data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment