libstagefright: unbreak compilation

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-07-04 20:07:12 +00:00
parent 621ab4e4ef
commit dda8afc391
1 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@
extern "C" {
#include "avcodec.h"
#include "libavutil/imgutils.h"
#include "internal.h"
}
#define OMX_QCOM_COLOR_FormatYVU420SemiPlanar 0x7FA30C00
@ -185,7 +186,7 @@ void* decode_thread(void *arg)
buffer->release();
goto push_frame;
}
ret = ff_get_buffer(avctx, frame->vframe);
ret = ff_get_buffer(avctx, frame->vframe, 0);
if (ret < 0) {
frame->status = ret;
decode_done = 1;