From 2ab2bbd82c29b3021ad6affbfd5a20e8fd44c0da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 22 Feb 2009 19:19:04 +0100 Subject: [PATCH] theoraparse: Use the correct unref functions --- ext/theora/theoraparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/theora/theoraparse.c b/ext/theora/theoraparse.c index ae49ea657d..76b17d7352 100644 --- a/ext/theora/theoraparse.c +++ b/ext/theora/theoraparse.c @@ -394,7 +394,7 @@ theora_parse_clear_queue (GstTheoraParse * parse) GstEvent *event; event = GST_EVENT_CAST (g_queue_pop_head (parse->event_queue)); - gst_buffer_unref (event); + gst_event_unref (event); } }