This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/exr: fix huf_decode
tags/n3.1
Martin Vignali
Paul B Mahol
9 years ago
parent
392b0a25c2
commit
ac07e57c39
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libavcodec/exr.c
+ 2
- 1
libavcodec/exr.c
View File
@@ -520,7 +520,8 @@ static int huf_decode(const uint64_t *hcode, const HufDec *hdecod,
uint16_t *outb = out;
uint16_t *oe = out + no;
const uint8_t *ie = gb->buffer + (nbits + 7) / 8; // input byte size
uint8_t cs, s;
uint8_t cs;
uint16_t s;
int i, lc = 0;
while (gb->buffer < ie) {
Write
Preview
Loading…
Cancel
Save