summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_decoder.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-05-13 17:35:46 -0700
committerDmitry Kovalev <dkovalev@google.com>2014-05-13 17:35:46 -0700
commitd31b836193cc879e1ae2613d3621416bdff731fe (patch)
tree1512f04e6b95cdaec58d6a7edf531895245ac70e /vp9/decoder/vp9_decoder.c
parenteecc750b33521b4b46579751fa6495c18e4ceecd (diff)
downloadlibvpx-d31b836193cc879e1ae2613d3621416bdff731fe.tar
libvpx-d31b836193cc879e1ae2613d3621416bdff731fe.tar.gz
libvpx-d31b836193cc879e1ae2613d3621416bdff731fe.tar.bz2
libvpx-d31b836193cc879e1ae2613d3621416bdff731fe.zip
Deadline is not supported in VP9 decoder, removing it completely.
Change-Id: I7675f23150404913f4b457add69fb846f6921997
Diffstat (limited to 'vp9/decoder/vp9_decoder.c')
-rw-r--r--vp9/decoder/vp9_decoder.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/vp9/decoder/vp9_decoder.c b/vp9/decoder/vp9_decoder.c
index 6f310c765..80f0727c1 100644
--- a/vp9/decoder/vp9_decoder.c
+++ b/vp9/decoder/vp9_decoder.c
@@ -219,8 +219,7 @@ static void swap_frame_buffers(VP9Decoder *pbi) {
}
int vp9_receive_compressed_data(VP9Decoder *pbi,
- size_t size, const uint8_t **psource,
- int64_t time_stamp) {
+ size_t size, const uint8_t **psource) {
VP9_COMMON *const cm = &pbi->common;
const uint8_t *source = *psource;
int retcode = 0;
@@ -294,14 +293,12 @@ int vp9_receive_compressed_data(VP9Decoder *pbi,
}
pbi->ready_for_new_data = 0;
- pbi->last_time_stamp = time_stamp;
cm->error.setjmp = 0;
return retcode;
}
int vp9_get_raw_frame(VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd,
- int64_t *time_stamp, int64_t *time_end_stamp,
vp9_ppflags_t *flags) {
int ret = -1;
@@ -313,8 +310,6 @@ int vp9_get_raw_frame(VP9Decoder *pbi, YV12_BUFFER_CONFIG *sd,
return ret;
pbi->ready_for_new_data = 1;
- *time_stamp = pbi->last_time_stamp;
- *time_end_stamp = 0;
#if CONFIG_VP9_POSTPROC
ret = vp9_post_proc_frame(&pbi->common, sd, flags);