summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-09-10 19:40:55 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-09-10 19:40:55 +0000
commita6c01275ad603139a0fb2f7b639519019263a8e0 (patch)
treeb60df98e426e52451a10e8a685c1980d85b0ceac /libavcodec/ffv1.c
parent8bf5d58f86e98f2df61b9ac6d0d945a1c04ece38 (diff)
get/set_sr_golomb() cleanup
Originally committed as revision 3451 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r--libavcodec/ffv1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 70ca84fd18..af57faa5fa 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -325,7 +325,7 @@ static inline void put_vlc_symbol(PutBitContext *pb, VlcState * const state, int
#endif
//printf("v:%d/%d bias:%d error:%d drift:%d count:%d k:%d\n", v, code, state->bias, state->error_sum, state->drift, state->count, k);
- set_sr_golomb_ffv1(pb, code, k, 12, bits);
+ set_sr_golomb(pb, code, k, 12, bits);
update_vlc_state(state, v);
}
@@ -342,7 +342,7 @@ static inline int get_vlc_symbol(GetBitContext *gb, VlcState * const state, int
assert(k<=8);
- v= get_sr_golomb_ffv1(gb, k, 12, bits);
+ v= get_sr_golomb(gb, k, 12, bits);
//printf("v:%d bias:%d error:%d drift:%d count:%d k:%d", v, state->bias, state->error_sum, state->drift, state->count, k);
#if 0 // JPEG LS