2009-03-15 20:21:49 +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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-03-20 20:24:40 +00:00
|
|
|
#ifndef __GST_VDPAU_DECODER_H__
|
|
|
|
#define __GST_VDPAU_DECODER_H__
|
2009-03-15 20:21:49 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
#include "gstvdpdevice.h"
|
|
|
|
#include "gstvdpvideobuffer.h"
|
2009-03-15 20:21:49 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
#define GST_TYPE_VDPAU_DECODER (gst_vdp_decoder_get_type())
|
|
|
|
#define GST_VDPAU_DECODER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VDPAU_DECODER,GstVdpDecoder))
|
|
|
|
#define GST_VDPAU_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VDPAU_DECODER,GstVdpDecoderClass))
|
|
|
|
#define GST_VDPAU_DECODER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_VDPAU_DECODER, GstVdpDecoderClass))
|
2009-03-26 20:04:48 +00:00
|
|
|
#define GST_IS_VDPAU_DECODER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VDPAU_DECODER))
|
|
|
|
#define GST_IS_VDPAU_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VDPAU_DECODER))
|
2009-03-15 20:21:49 +00:00
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
typedef struct _GstVdpDecoder GstVdpDecoder;
|
|
|
|
typedef struct _GstVdpDecoderClass GstVdpDecoderClass;
|
2009-03-27 16:11:04 +00:00
|
|
|
typedef struct _VdpauFunctions VdpauFunctions;
|
2009-03-15 20:21:49 +00:00
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
struct _GstVdpDecoder {
|
2009-03-15 20:21:49 +00:00
|
|
|
GstElement element;
|
|
|
|
|
2009-03-29 13:28:06 +00:00
|
|
|
gchar *display_name;
|
2009-04-13 20:19:20 +00:00
|
|
|
GstVdpDevice *device;
|
2009-03-27 16:11:04 +00:00
|
|
|
|
2009-03-15 20:21:49 +00:00
|
|
|
GstPad *src;
|
|
|
|
GstPad *sink;
|
|
|
|
|
2009-03-25 18:59:06 +00:00
|
|
|
gint width, height;
|
2009-03-31 20:53:40 +00:00
|
|
|
gint framerate_numerator, framerate_denominator;
|
2009-03-23 19:47:00 +00:00
|
|
|
guint32 format;
|
|
|
|
|
2009-03-31 20:53:40 +00:00
|
|
|
gint frame_nr;
|
2009-03-15 20:21:49 +00:00
|
|
|
};
|
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
struct _GstVdpDecoderClass {
|
2009-04-01 19:19:18 +00:00
|
|
|
GstElementClass parent_class;
|
2009-03-26 20:04:48 +00:00
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
gboolean (*set_caps) (GstVdpDecoder *dec, GstCaps *caps);
|
2009-03-15 20:21:49 +00:00
|
|
|
};
|
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
GType gst_vdp_decoder_get_type (void);
|
2009-03-15 20:21:49 +00:00
|
|
|
|
2009-04-13 20:19:20 +00:00
|
|
|
gboolean gst_vdp_decoder_push_video_buffer (GstVdpDecoder * dec,
|
|
|
|
GstVdpVideoBuffer *buffer);
|
|
|
|
VdpVideoSurface gst_vdp_decoder_create_video_surface (GstVdpDecoder *dec);
|
2009-03-23 20:36:55 +00:00
|
|
|
|
2009-03-15 20:21:49 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2009-03-20 20:24:40 +00:00
|
|
|
#endif /* __GST_VDPAU_DECODER_H__ */
|