diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-04-22 20:41:34 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-04-22 20:44:31 +0200 |
commit | ab14bcb10420137bfd85ae5c2b04f5924fac1509 (patch) | |
tree | fe37f4d26c7145b57044ba9b4c43b91c6124e0a9 | |
parent | 3bd7a7149fbcf1f8ab3bcab8e2751320d9b267cb (diff) | |
download | ffmpeg-ab14bcb10420137bfd85ae5c2b04f5924fac1509.tar.gz |
Add "const" to avoid compiler warning.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rw-r--r-- | libavcodec/hevc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 4a6620f67b..0512721e34 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -843,7 +843,7 @@ typedef struct HEVCContext { int **skipped_bytes_pos_nal; int *skipped_bytes_pos_size_nal; - uint8_t *data; + const uint8_t *data; HEVCNAL *nals; int nb_nals; |