summaryrefslogtreecommitdiff
path: root/sys/vdpau/mpeg/gstvdpmpegdec.h
diff options
context:
space:
mode:
authorCarl-Anton Ingmarsson <ca.ingmarsson@gmail.com>2010-06-26 21:02:53 +0200
committerCarl-Anton Ingmarsson <ca.ingmarsson@gmail.com>2010-06-26 21:27:32 +0200
commitd13a122a56b0b5eb317ce09529437dd57f0a7fdd (patch)
tree1dd8214d854be5074ee05835294ba6adeb1c2eac /sys/vdpau/mpeg/gstvdpmpegdec.h
parent71620e7fbb091a62efb1d310870e714fea78df2d (diff)
downloadgstreamer-plugins-bad-d13a122a56b0b5eb317ce09529437dd57f0a7fdd.tar.gz
vdpau: add GstVdpDecoder base class
Diffstat (limited to 'sys/vdpau/mpeg/gstvdpmpegdec.h')
-rw-r--r--sys/vdpau/mpeg/gstvdpmpegdec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vdpau/mpeg/gstvdpmpegdec.h b/sys/vdpau/mpeg/gstvdpmpegdec.h
index 5bd20f751..b59d61712 100644
--- a/sys/vdpau/mpeg/gstvdpmpegdec.h
+++ b/sys/vdpau/mpeg/gstvdpmpegdec.h
@@ -24,7 +24,7 @@
#include <gst/gst.h>
#include <gst/base/gstadapter.h>
-#include "../basevideodecoder/gstbasevideodecoder.h"
+#include "../gstvdp/gstvdpdecoder.h"
#include "gstvdpmpegframe.h"
G_BEGIN_DECLS
@@ -46,7 +46,7 @@ typedef struct _GstVdpMpegDecClass GstVdpMpegDecClass;
struct _GstVdpMpegDec
{
- GstBaseVideoDecoder base_video_decoder;
+ GstVdpDecoder vdp_decoder;
VdpDecoder decoder;
@@ -70,7 +70,7 @@ struct _GstVdpMpegDec
struct _GstVdpMpegDecClass
{
- GstBaseVideoDecoderClass base_video_decoder_class;
+ GstVdpDecoderClass vdp_decoder_class;
};
GType gst_vdp_mpeg_dec_get_type (void);