diff options
author | Carl-Anton Ingmarsson <ca.ingmarsson@gmail.com> | 2010-06-26 21:02:53 +0200 |
---|---|---|
committer | Carl-Anton Ingmarsson <ca.ingmarsson@gmail.com> | 2010-06-26 21:27:32 +0200 |
commit | d13a122a56b0b5eb317ce09529437dd57f0a7fdd (patch) | |
tree | 1dd8214d854be5074ee05835294ba6adeb1c2eac /sys/vdpau/mpeg/gstvdpmpegdec.h | |
parent | 71620e7fbb091a62efb1d310870e714fea78df2d (diff) | |
download | gstreamer-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.h | 6 |
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); |