mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
avcodec/golomb: Remove disabled and broken code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8ea9334b31
commit
d0ac2f59aa
@ -465,12 +465,6 @@ static inline void set_ue_golomb(PutBitContext *pb, int i)
|
|||||||
{
|
{
|
||||||
av_assert2(i >= 0);
|
av_assert2(i >= 0);
|
||||||
|
|
||||||
#if 0
|
|
||||||
if (i = 0) {
|
|
||||||
put_bits(pb, 1, 1);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (i < 256)
|
if (i < 256)
|
||||||
put_bits(pb, ff_ue_golomb_len[i], i + 1);
|
put_bits(pb, ff_ue_golomb_len[i], i + 1);
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user