projects
/
libvpx
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15f9077
)
Quick fix to stop vpxdec infinite loop
author
Scott LaVarnway
<slavarnway@google.com>
Wed, 12 Jun 2013 17:46:47 +0000
(13:46 -0400)
committer
Scott LaVarnway
<slavarnway@google.com>
Wed, 12 Jun 2013 17:46:47 +0000
(13:46 -0400)
vpxdec stays in a loop when decoding vp9. This patch is a
quick fix to stop the loop when all data has been decoded.
Eventually we should move the vp9_get_raw_frame() call into
vp8_get_frame().
Change-Id: I3f97b6b4e1fe9ba69f746a29fc54c3304956f661
vp9/vp9_dx_iface.c
patch
|
blob
|
history
diff --git
a/vp9/vp9_dx_iface.c
b/vp9/vp9_dx_iface.c
index c240a9e614400e6999b1a4b6daf5c90abb2fa5c8..ea6946bd9d98af7ae07ba6819d717c38eeb0bfec 100644
(file)
--- a/
vp9/vp9_dx_iface.c
+++ b/
vp9/vp9_dx_iface.c
@@
-496,6
+496,7
@@
static vpx_image_t *vp8_get_frame(vpx_codec_alg_priv_t *ctx,
*iter = img;
}
}
+ ctx->img_avail = 0;
return img;
}