ffmpeg_vdpau.c
7671dd7c
 /*
3e641b48
  * This file is part of FFmpeg.
7671dd7c
  *
3e641b48
  * FFmpeg is free software; you can redistribute it and/or
7671dd7c
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
3e641b48
  * FFmpeg is distributed in the hope that it will be useful,
7671dd7c
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
3e641b48
  * License along with FFmpeg; if not, write to the Free Software
7671dd7c
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <stdint.h>
 
3e641b48
 #include "ffmpeg.h"
7671dd7c
 
 #include "libavcodec/vdpau.h"
 
 #include "libavutil/buffer.h"
 #include "libavutil/frame.h"
bd49be88
 #include "libavutil/hwcontext.h"
 #include "libavutil/hwcontext_vdpau.h"
7671dd7c
 #include "libavutil/pixfmt.h"
 
 typedef struct VDPAUContext {
bd49be88
     AVBufferRef *hw_frames_ctx;
7671dd7c
     AVFrame *tmp_frame;
 } VDPAUContext;
 
 static void vdpau_uninit(AVCodecContext *s)
 {
     InputStream  *ist = s->opaque;
     VDPAUContext *ctx = ist->hwaccel_ctx;
 
     ist->hwaccel_uninit        = NULL;
     ist->hwaccel_get_buffer    = NULL;
     ist->hwaccel_retrieve_data = NULL;
 
bd49be88
     av_buffer_unref(&ctx->hw_frames_ctx);
7671dd7c
     av_frame_free(&ctx->tmp_frame);
 
     av_freep(&ist->hwaccel_ctx);
     av_freep(&s->hwaccel_context);
 }
 
 static int vdpau_get_buffer(AVCodecContext *s, AVFrame *frame, int flags)
 {
     InputStream         *ist = s->opaque;
     VDPAUContext        *ctx = ist->hwaccel_ctx;
 
bd49be88
     return av_hwframe_get_buffer(ctx->hw_frames_ctx, frame, 0);
7671dd7c
 }
 
 static int vdpau_retrieve_data(AVCodecContext *s, AVFrame *frame)
 {
     InputStream        *ist = s->opaque;
     VDPAUContext       *ctx = ist->hwaccel_ctx;
bd49be88
     int ret;
7671dd7c
 
bd49be88
     ret = av_hwframe_transfer_data(ctx->tmp_frame, frame, 0);
7671dd7c
     if (ret < 0)
         return ret;
 
     ret = av_frame_copy_props(ctx->tmp_frame, frame);
bd49be88
     if (ret < 0) {
         av_frame_unref(ctx->tmp_frame);
         return ret;
     }
7671dd7c
 
     av_frame_unref(frame);
     av_frame_move_ref(frame, ctx->tmp_frame);
 
bd49be88
     return 0;
7671dd7c
 }
 
 static int vdpau_alloc(AVCodecContext *s)
 {
     InputStream  *ist = s->opaque;
     int loglevel = (ist->hwaccel_id == HWACCEL_AUTO) ? AV_LOG_VERBOSE : AV_LOG_ERROR;
     VDPAUContext *ctx;
bd49be88
     int ret;
 
     AVBufferRef          *device_ref = NULL;
     AVHWDeviceContext    *device_ctx;
     AVVDPAUDeviceContext *device_hwctx;
     AVHWFramesContext    *frames_ctx;
7671dd7c
 
     ctx = av_mallocz(sizeof(*ctx));
     if (!ctx)
         return AVERROR(ENOMEM);
 
     ist->hwaccel_ctx           = ctx;
     ist->hwaccel_uninit        = vdpau_uninit;
     ist->hwaccel_get_buffer    = vdpau_get_buffer;
     ist->hwaccel_retrieve_data = vdpau_retrieve_data;
 
     ctx->tmp_frame = av_frame_alloc();
     if (!ctx->tmp_frame)
         goto fail;
 
f72db3f2
     ret = av_hwdevice_ctx_create(&device_ref, AV_HWDEVICE_TYPE_VDPAU,
                                  ist->hwaccel_device, NULL, 0);
bd49be88
     if (ret < 0)
         goto fail;
f72db3f2
     device_ctx   = (AVHWDeviceContext*)device_ref->data;
     device_hwctx = device_ctx->hwctx;
bd49be88
 
     ctx->hw_frames_ctx = av_hwframe_ctx_alloc(device_ref);
     if (!ctx->hw_frames_ctx)
         goto fail;
     av_buffer_unref(&device_ref);
 
     frames_ctx            = (AVHWFramesContext*)ctx->hw_frames_ctx->data;
     frames_ctx->format    = AV_PIX_FMT_VDPAU;
     frames_ctx->sw_format = s->sw_pix_fmt;
     frames_ctx->width     = s->coded_width;
     frames_ctx->height    = s->coded_height;
7671dd7c
 
bd49be88
     ret = av_hwframe_ctx_init(ctx->hw_frames_ctx);
     if (ret < 0)
         goto fail;
 
f72db3f2
     if (av_vdpau_bind_context(s, device_hwctx->device, device_hwctx->get_proc_address, 0))
7671dd7c
         goto fail;
 
f72db3f2
     av_log(NULL, AV_LOG_VERBOSE, "Using VDPAU to decode input stream #%d:%d.\n",
            ist->file_index, ist->st->index);
7671dd7c
 
     return 0;
 
 fail:
     av_log(NULL, loglevel, "VDPAU init failed for stream #%d:%d.\n",
            ist->file_index, ist->st->index);
bd49be88
     av_buffer_unref(&device_ref);
7671dd7c
     vdpau_uninit(s);
     return AVERROR(EINVAL);
 }
 
 int vdpau_init(AVCodecContext *s)
 {
     InputStream *ist = s->opaque;
 
     if (!ist->hwaccel_ctx) {
8de1d679
         int ret = vdpau_alloc(s);
7671dd7c
         if (ret < 0)
             return ret;
     }
 
     ist->hwaccel_get_buffer    = vdpau_get_buffer;
     ist->hwaccel_retrieve_data = vdpau_retrieve_data;
 
     return 0;
 }