Skip to content
Snippets Groups Projects
Commit d0ac2f59 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/golomb: Remove disabled and broken code

parent 8ea9334b
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment