fftools/ffprobe: Add const to AVPacket data pointers

These packets need not be writable (and are not modified by us),
so it is best to access them via const uint8_t*.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-07-04 18:50:14 +02:00
parent 4ad686269d
commit dc977f94d5

View File

@ -901,7 +901,7 @@ static void writer_print_ts(WriterContext *wctx, const char *key, int64_t ts, in
} }
static void writer_print_data(WriterContext *wctx, const char *name, static void writer_print_data(WriterContext *wctx, const char *name,
uint8_t *data, int size) const uint8_t *data, int size)
{ {
AVBPrint bp; AVBPrint bp;
int offset = 0, l, i; int offset = 0, l, i;
@ -929,7 +929,7 @@ static void writer_print_data(WriterContext *wctx, const char *name,
} }
static void writer_print_data_hash(WriterContext *wctx, const char *name, static void writer_print_data_hash(WriterContext *wctx, const char *name,
uint8_t *data, int size) const uint8_t *data, int size)
{ {
char *p, buf[AV_HASH_MAX_SIZE * 2 + 64] = { 0 }; char *p, buf[AV_HASH_MAX_SIZE * 2 + 64] = { 0 };