summaryrefslogtreecommitdiff
path: root/libavcodec/hevcdsp.h
diff options
context:
space:
mode:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2014-07-23 13:39:40 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-23 20:54:03 +0200
commitca081217cda87bf8c5a32b0584665bce9b266d95 (patch)
tree3ef901e43da3a91d73aa9db985faf3d921127e72 /libavcodec/hevcdsp.h
parent088875b6b8553cfa591a5edafd3652e4bb80c695 (diff)
hevcdsp: change types of SAO parameters
From openhevc Reviewed-by: Mickaƫl Raulet <mraulet@insa-rennes.fr> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r--libavcodec/hevcdsp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h
index 8564deb1a0..ba42984fb6 100644
--- a/libavcodec/hevcdsp.h
+++ b/libavcodec/hevcdsp.h
@@ -31,11 +31,11 @@ typedef struct SAOParams {
int offset_abs[3][4]; ///< sao_offset_abs
int offset_sign[3][4]; ///< sao_offset_sign
- int band_position[3]; ///< sao_band_position
+ uint8_t band_position[3]; ///< sao_band_position
int eo_class[3]; ///< sao_eo_class
- int offset_val[3][5]; ///<SaoOffsetVal
+ int16_t offset_val[3][5]; ///<SaoOffsetVal
uint8_t type_idx[3]; ///< sao_type_idx
} SAOParams;