From d31b836193cc879e1ae2613d3621416bdff731fe Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Tue, 13 May 2014 17:35:46 -0700 Subject: Deadline is not supported in VP9 decoder, removing it completely. Change-Id: I7675f23150404913f4b457add69fb846f6921997 --- vp9/decoder/vp9_decoder.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'vp9/decoder/vp9_decoder.c') 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); -- cgit v1.2.3