From d3c40a7d1d9e4a90edec540a6acfe060dc829273 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 1 Oct 2012 12:48:23 +0200 Subject: avformat: const correctness for av_hex_dump / av_hex_dump_log --- libavformat/utils.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'libavformat/utils.c') diff --git a/libavformat/utils.c b/libavformat/utils.c index 2682e97..32cf580 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3566,7 +3566,8 @@ int av_get_frame_filename(char *buf, int buf_size, return -1; } -static void hex_dump_internal(void *avcl, FILE *f, int level, uint8_t *buf, int size) +static void hex_dump_internal(void *avcl, FILE *f, int level, + const uint8_t *buf, int size) { int len, i, j, c; #undef fprintf @@ -3595,12 +3596,12 @@ static void hex_dump_internal(void *avcl, FILE *f, int level, uint8_t *buf, int #undef PRINT } -void av_hex_dump(FILE *f, uint8_t *buf, int size) +void av_hex_dump(FILE *f, const uint8_t *buf, int size) { hex_dump_internal(NULL, f, 0, buf, size); } -void av_hex_dump_log(void *avcl, int level, uint8_t *buf, int size) +void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size) { hex_dump_internal(avcl, NULL, level, buf, size); } -- cgit v1.1