2010-06-26 19:02:53 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Carl-Anton Ingmarsson <ca.ingmarsson@gmail.com>.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-06-26 19:02:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_VDP_DECODER_H__
|
|
|
|
#define __GST_VDP_DECODER_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2010-07-22 22:28:49 +00:00
|
|
|
#include <vdpau/vdpau.h>
|
2010-06-26 19:02:53 +00:00
|
|
|
|
2012-09-20 17:03:11 +00:00
|
|
|
#include <gst/video/gstvideodecoder.h>
|
|
|
|
|
|
|
|
#include "gstvdpdevice.h"
|
2010-06-26 19:02:53 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_VDP_DECODER (gst_vdp_decoder_get_type())
|
|
|
|
#define GST_VDP_DECODER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_VDP_DECODER, GstVdpDecoder))
|
|
|
|
#define GST_VDP_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_VDP_DECODER, GstVdpDecoderClass))
|
|
|
|
#define GST_VDP_DECODER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GST_TYPE_VDP_DECODER, GstVdpDecoderClass))
|
|
|
|
#define GST_IS_VDP_DECODER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_VDP_DECODER))
|
|
|
|
#define GST_IS_VDP_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_VDP_DECODER))
|
|
|
|
|
|
|
|
typedef struct _GstVdpDecoder GstVdpDecoder;
|
|
|
|
typedef struct _GstVdpDecoderClass GstVdpDecoderClass;
|
|
|
|
|
|
|
|
|
|
|
|
struct _GstVdpDecoder {
|
2012-09-20 17:03:11 +00:00
|
|
|
GstVideoDecoder video_decoder;
|
2010-07-22 22:28:49 +00:00
|
|
|
|
2010-07-27 21:24:43 +00:00
|
|
|
GstVdpDevice *device;
|
2010-07-22 22:28:49 +00:00
|
|
|
VdpDecoder decoder;
|
2010-07-27 21:24:43 +00:00
|
|
|
|
2012-09-20 17:03:11 +00:00
|
|
|
GstVideoInfo info;
|
|
|
|
|
2010-07-27 21:24:43 +00:00
|
|
|
/* properties */
|
|
|
|
gchar *display;
|
2010-06-26 19:02:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstVdpDecoderClass {
|
2012-09-20 17:03:11 +00:00
|
|
|
GstVideoDecoderClass video_decoder_class;
|
2010-06-26 19:02:53 +00:00
|
|
|
};
|
|
|
|
|
2010-07-22 22:28:49 +00:00
|
|
|
void
|
|
|
|
gst_vdp_decoder_post_error (GstVdpDecoder * decoder, GError * error);
|
2010-06-26 22:35:11 +00:00
|
|
|
|
2010-07-22 22:28:49 +00:00
|
|
|
GstFlowReturn
|
|
|
|
gst_vdp_decoder_render (GstVdpDecoder * vdp_decoder, VdpPictureInfo *info,
|
2012-09-20 17:03:11 +00:00
|
|
|
guint n_bufs, VdpBitstreamBuffer *bufs, GstVideoCodecFrame *frame);
|
2010-06-26 22:35:11 +00:00
|
|
|
|
2010-07-22 22:28:49 +00:00
|
|
|
GstFlowReturn
|
|
|
|
gst_vdp_decoder_init_decoder (GstVdpDecoder * vdp_decoder,
|
2012-09-20 17:03:11 +00:00
|
|
|
VdpDecoderProfile profile, guint32 max_references,
|
|
|
|
GstVideoCodecState *output_state);
|
2010-06-26 19:02:53 +00:00
|
|
|
|
|
|
|
GType gst_vdp_decoder_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2012-09-20 17:03:11 +00:00
|
|
|
#endif /* __GST_VDP_DECODER_H__ */
|