You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
avcodec/golomb: Remove disabled and broken code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -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 {
|
||||||
|
Reference in New Issue
Block a user