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
xan: return a meaningful error code.
tags/n1.2
Anton Khirnov
13 years ago
parent
4aebb8d999
commit
d47dabbac2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/xan.c
+ 1
- 1
libavcodec/xan.c
View File
@@ -114,7 +114,7 @@ static int xan_huffman_decode(unsigned char *dest, int dest_len,
while (val != 0x16) {
unsigned idx = val - 0x17 + get_bits1(&gb) * byte;
if (idx >= 2 * byte)
return
-1
;
return
AVERROR_INVALIDDATA
;
val = src[idx];
if (val < 0x16) {
Write
Preview
Loading…
Cancel
Save