diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-27 17:36:59 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-01 15:25:48 +0100 |
commit | 2c6f532e0a29527347418d2d8c4ccfe57a6ace0e (patch) | |
tree | ed807102e82b1db61780ce0e1480dcf799d4e4b2 /libavcodec/opustab.h | |
parent | 15baa0c1acd21be99408e6782ae28d868b847b13 (diff) | |
download | ffmpeg-2c6f532e0a29527347418d2d8c4ccfe57a6ace0e.tar.gz |
Mark some pointers as const
Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/opustab.h')
-rw-r--r-- | libavcodec/opustab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opustab.h b/libavcodec/opustab.h index cdd0456e3c..4525837942 100644 --- a/libavcodec/opustab.h +++ b/libavcodec/opustab.h @@ -156,7 +156,7 @@ extern const uint16_t ff_celt_qn_exp2[]; extern const float ff_celt_postfilter_taps[3][3]; extern const float ff_celt_window2[120]; -extern const float *ff_celt_window; +extern const float *const ff_celt_window; extern const uint32_t * const ff_celt_pvq_u_row[15]; |