git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
c0b3781
)
avcodec/hevc_sei: actually propagate error codes
author
James Almer
<jamrial@gmail.com>
Sun, 7 May 2017 01:57:43 +0000
(22:57 -0300)
committer
James Almer
<jamrial@gmail.com>
Sun, 7 May 2017 01:57:43 +0000
(22:57 -0300)
libavcodec/hevc_sei.c
patch
|
blob
|
history
diff --git
a/libavcodec/hevc_sei.c
b/libavcodec/hevc_sei.c
index
c5054bf
..
b86f7e4
100644
(file)
--- a/
libavcodec/hevc_sei.c
+++ b/
libavcodec/hevc_sei.c
@@
-346,7
+346,7
@@
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEIContext *s,
do {
ret = decode_nal_sei_message(gb, s, ps, type, logctx);
if (ret < 0)
- return
(AVERROR(ENOMEM))
;
+ return
ret
;
} while (more_rbsp_data(gb));
return 1;
}