mirror of https://git.ffmpeg.org/ffmpeg.git
libstagefright: unbreak compilation
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
621ab4e4ef
commit
dda8afc391
|
@ -36,6 +36,7 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "libavutil/imgutils.h"
|
#include "libavutil/imgutils.h"
|
||||||
|
#include "internal.h"
|
||||||
}
|
}
|
||||||
|
|
||||||
#define OMX_QCOM_COLOR_FormatYVU420SemiPlanar 0x7FA30C00
|
#define OMX_QCOM_COLOR_FormatYVU420SemiPlanar 0x7FA30C00
|
||||||
|
@ -185,7 +186,7 @@ void* decode_thread(void *arg)
|
||||||
buffer->release();
|
buffer->release();
|
||||||
goto push_frame;
|
goto push_frame;
|
||||||
}
|
}
|
||||||
ret = ff_get_buffer(avctx, frame->vframe);
|
ret = ff_get_buffer(avctx, frame->vframe, 0);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
frame->status = ret;
|
frame->status = ret;
|
||||||
decode_done = 1;
|
decode_done = 1;
|
||||||
|
|
Loading…
Reference in New Issue