summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-21 18:19:16 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-21 18:19:24 +0100
commiteb058a8dc5acf01860bd103d0ae64e68715226bc (patch)
tree56785044f2c8c97ad2a207f7b35fb17c3d71ee10 /libavcodec/h264.h
parent9f2fad1af768ed374164beed60cddcf0bae8732f (diff)
parentba7e165b864d69da4f0c79ec7757cb351535002f (diff)
Merge commit 'ba7e165b864d69da4f0c79ec7757cb351535002f'
* commit 'ba7e165b864d69da4f0c79ec7757cb351535002f': h264_cabac: constify all uses of H264Context Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index f028efd074..f34b63f310 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -881,9 +881,9 @@ int ff_h264_decode_mb_cavlc(H264Context *h, H264SliceContext *sl);
* Decode a CABAC coded macroblock
* @return 0 if OK, ER_AC_ERROR / ER_DC_ERROR / ER_MV_ERROR on error
*/
-int ff_h264_decode_mb_cabac(H264Context *h, H264SliceContext *sl);
+int ff_h264_decode_mb_cabac(const H264Context *h, H264SliceContext *sl);
-void ff_h264_init_cabac_states(H264Context *h, H264SliceContext *sl);
+void ff_h264_init_cabac_states(const H264Context *h, H264SliceContext *sl);
void ff_h264_init_dequant_tables(H264Context *h);