diff options
author | Julien Moutte <julien@moutte.net> | 2005-11-04 18:28:56 +0000 |
---|---|---|
committer | Julien Moutte <julien@moutte.net> | 2005-11-04 18:28:56 +0000 |
commit | 478c8ba2992782b0860ea38d87552ab0108f1050 (patch) | |
tree | 7311b90c94350472c174dc26b0643e9bab629d6a /ext/directfb/dfbvideosink.h | |
parent | da12a5ed8d76f284555b5d4fa0ea76120b12dc43 (diff) | |
download | gst-plugins-bad-478c8ba2992782b0860ea38d87552ab0108f1050.tar.gz gst-plugins-bad-478c8ba2992782b0860ea38d87552ab0108f1050.tar.bz2 gst-plugins-bad-478c8ba2992782b0860ea38d87552ab0108f1050.zip |
ext/directfb/dfbvideosink.*: Now does clipping when surface is too small, handles upstream elements that are not call...
Original commit message from CVS:
2005-11-04 Julien MOUTTE <julien@moutte.net>
* ext/directfb/dfbvideosink.c:
(gst_dfbvideosink_surface_create),
(gst_dfbvideosink_surface_destroy),
(gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
(gst_dfbvideosink_center_rect), (gst_dfbvideosink_show_frame),
(gst_dfbvideosink_buffer_alloc):
* ext/directfb/dfbvideosink.h: Now does clipping when surface
is too small, handles upstream elements that are not calling
gst_pad_alloc_buffer, fixes a lot of bugs.
Diffstat (limited to 'ext/directfb/dfbvideosink.h')
-rw-r--r-- | ext/directfb/dfbvideosink.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/directfb/dfbvideosink.h b/ext/directfb/dfbvideosink.h index a485175c..42509775 100644 --- a/ext/directfb/dfbvideosink.h +++ b/ext/directfb/dfbvideosink.h @@ -50,6 +50,8 @@ struct _GstDfbSurface { gint width; gint height; + gboolean locked; + DFBSurfacePixelFormat pixel_format; GstDfbVideoSink *dfbvideosink; |