diff options
author | Måns Rullgård <mans@mansr.com> | 2006-09-27 22:13:44 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-09-27 22:13:44 +0000 |
commit | b86216de4c2e491bdd418af7b379c638d9edd234 (patch) | |
tree | 72d211c5641d9b01c94d06b95b919828a3f7b04a /libavcodec/mpegvideo.h | |
parent | bca99b47bf808fcca728404c50a291da9f98b270 (diff) | |
download | ffmpeg-b86216de4c2e491bdd418af7b379c638d9edd234.tar.gz |
dc_val should be signed
Originally committed as revision 6364 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index f8abd785d2..f0977cd23c 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -344,8 +344,8 @@ typedef struct MpegEncContext { Picture *current_picture_ptr; ///< pointer to the current picture uint8_t *visualization_buffer[3]; //< temporary buffer vor MV visualization int last_dc[3]; ///< last DC values for MPEG1 - uint16_t *dc_val_base; - uint16_t *dc_val[3]; ///< used for mpeg4 DC prediction, all 3 arrays must be continuous + int16_t *dc_val_base; + int16_t *dc_val[3]; ///< used for mpeg4 DC prediction, all 3 arrays must be continuous int16_t dc_cache[4*5]; int y_dc_scale, c_dc_scale; const uint8_t *y_dc_scale_table; ///< qscale -> y_dc_scale table |