summaryrefslogtreecommitdiff
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-12 00:06:35 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-12 00:06:35 +0200
commitc4fe50b954a0490c54efca19682cfae00eba3145 (patch)
treecb22437d8ba280f221417ed8638b5a0b26413b75 /libavcodec/utils.c
parentfa0f7c024e90a5337892cbc3b78e936ba5d25cf3 (diff)
parentebc29519d1634bfeb386c20a5d8a52837aae2436 (diff)
Merge commit 'ebc29519d1634bfeb386c20a5d8a52837aae2436'
* commit 'ebc29519d1634bfeb386c20a5d8a52837aae2436': hwaccel: Support specific frame allocators Conflicts: libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 04ca363610..925c26ed83 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -850,6 +850,7 @@ int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
static int get_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
{
+ const AVHWAccel *hwaccel = avctx->hwaccel;
int override_dimensions = 1;
int ret;
@@ -872,6 +873,11 @@ static int get_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
if ((ret = ff_init_buffer_info(avctx, frame)) < 0)
return ret;
+ if (hwaccel && hwaccel->alloc_frame) {
+ ret = hwaccel->alloc_frame(avctx, frame);
+ goto end;
+ }
+
#if FF_API_GET_BUFFER
FF_DISABLE_DEPRECATION_WARNINGS
/*
@@ -898,7 +904,7 @@ FF_DISABLE_DEPRECATION_WARNINGS
* avcodec_default_get_buffer
*/
if (frame->buf[0])
- goto end;
+ goto end0;
priv = av_mallocz(sizeof(*priv));
if (!priv) {
@@ -974,7 +980,7 @@ do { \
av_buffer_unref(&dummy_buf);
-end:
+end0:
frame->width = avctx->width;
frame->height = avctx->height;
@@ -991,6 +997,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
ret = avctx->get_buffer2(avctx, frame, flags);
+end:
if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions) {
frame->width = avctx->width;
frame->height = avctx->height;