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
nsvdec: Propagate error values instead of returning 0 in nsv_read_header().
This eliminates a warning about a set-but-unused variable.
tags/n0.9
Diego Biurrun
14 years ago
parent
f038cf3c74
commit
35fa0d4758
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/nsvdec.c
+ 1
- 1
libavformat/nsvdec.c
View File
@@ -531,7 +531,7 @@ static int nsv_read_header(AVFormatContext *s, AVFormatParameters *ap)
err = nsv_read_chunk(s, 1);
av_dlog(s, "parsed header\n");
return
0
;
return
err
;
}
static int nsv_read_chunk(AVFormatContext *s, int fill_header)
Write
Preview
Loading…
Cancel
Save