projects
/
libvpx
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
940a3c3
)
Add a frame_index entry to RefCntBuffer
author
Jingning Han
<jingning@google.com>
Mon, 17 Sep 2018 18:46:17 +0000
(11:46 -0700)
committer
Jingning Han
<jingning@google.com>
Mon, 17 Sep 2018 18:46:17 +0000
(11:46 -0700)
This entry will only be effectively used at the encoder side.
Adding it to the RefCntBuffer data structure would help make the
associated logic a lot simpler. Its effect on the decoder side
would be explicitly sent through the bit-stream.
Change-Id: I1660dce9e0bb6e28c3315d5e0df6dc4a9298f71f
vp9/common/vp9_onyxc_int.h
patch
|
blob
|
history
diff --git
a/vp9/common/vp9_onyxc_int.h
b/vp9/common/vp9_onyxc_int.h
index c72b6e64f6943c5d51fd00f9b2968ffddddcda5d..4cae48531858d388f2f5eed2ae2cb428e3df58a1 100644
(file)
--- a/
vp9/common/vp9_onyxc_int.h
+++ b/
vp9/common/vp9_onyxc_int.h
@@
-70,6
+70,7
@@
typedef struct {
int mi_rows;
int mi_cols;
uint8_t released;
+ int frame_index;
vpx_codec_frame_buffer_t raw_frame_buffer;
YV12_BUFFER_CONFIG buf;
} RefCntBuffer;