diff options
author | Stephen McNamara <steve.mcnamara@ultra-sml.com> | 2009-12-07 10:09:19 -0800 |
---|---|---|
committer | Michael Smith <msmith@songbirdnest.com> | 2009-12-07 10:10:29 -0800 |
commit | 2bae09947377804c10094a4d16faea4ce31806a6 (patch) | |
tree | e84a8d0af8c095a6738104e5b617f59d66ce56fd /sys/dshowvideosink | |
parent | 925b57f7e9dd9aaa8695618031f2caeaaeb51bce (diff) | |
download | gstreamer-plugins-bad-2bae09947377804c10094a4d16faea4ce31806a6.tar.gz |
dshowvideosink: add virtual destructor for internal helper class.
Diffstat (limited to 'sys/dshowvideosink')
-rw-r--r-- | sys/dshowvideosink/dshowvideosink.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dshowvideosink/dshowvideosink.h b/sys/dshowvideosink/dshowvideosink.h index d5ea9e916..003c1805f 100644 --- a/sys/dshowvideosink/dshowvideosink.h +++ b/sys/dshowvideosink/dshowvideosink.h @@ -45,6 +45,7 @@ typedef struct _GstDshowVideoSinkClass GstDshowVideoSinkClass; class RendererSupport { public: + virtual ~RenderSupport() {}; virtual const char *GetName() = 0; virtual IBaseFilter *GetFilter() = 0; virtual gboolean Configure() = 0; |