Commit d0ac2f59 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/golomb: Remove disabled and broken code

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8ea9334b
......@@ -465,12 +465,6 @@ static inline void set_ue_golomb(PutBitContext *pb, int i)
{
av_assert2(i >= 0);
#if 0
if (i = 0) {
put_bits(pb, 1, 1);
return;
}
#endif
if (i < 256)
put_bits(pb, ff_ue_golomb_len[i], i + 1);
else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment