mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
dfbvideosink: fix harmless typo in variable initialization
https://bugzilla.gnome.org/show_bug.cgi?id=654840
This commit is contained in:
parent
f12598fa64
commit
8339ff458d
1 changed files with 2 additions and 2 deletions
|
@ -2242,8 +2242,8 @@ gst_dfbvideosink_init (GstDfbVideoSink * dfbvideosink)
|
||||||
{
|
{
|
||||||
dfbvideosink->pool_lock = g_mutex_new ();
|
dfbvideosink->pool_lock = g_mutex_new ();
|
||||||
dfbvideosink->buffer_pool = NULL;
|
dfbvideosink->buffer_pool = NULL;
|
||||||
dfbvideosink->video_height = dfbvideosink->out_width = 0;
|
dfbvideosink->video_height = dfbvideosink->out_height = 0;
|
||||||
dfbvideosink->video_width = dfbvideosink->out_height = 0;
|
dfbvideosink->video_width = dfbvideosink->out_width = 0;
|
||||||
dfbvideosink->fps_d = 0;
|
dfbvideosink->fps_d = 0;
|
||||||
dfbvideosink->fps_n = 0;
|
dfbvideosink->fps_n = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue