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/mpeg12: Fix error return
Also remove a tab Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
Michael Niedermayer
10 years ago
parent
58f21b6c93
commit
5c02c95f2c
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/mpeg12.c
+ 2
- 2
libavcodec/mpeg12.c
View File
@@ -334,8 +334,8 @@ end:
CLOSE_READER(re, gb);
}
if (i > MAX_INDEX)
i =
AVERROR_INVALIDDATA;
if (i > MAX_INDEX)
return
AVERROR_INVALIDDATA;
block_last_index[index] = i;
return 0;
Write
Preview
Loading…
Cancel
Save