From d9ec99e59882cb50b5751e694d39db4a6ed15a66 Mon Sep 17 00:00:00 2001 From: Sreerenj Balachandran Date: Wed, 23 May 2012 01:49:49 +0300 Subject: [PATCH] theoradec: remove the nonuse parameter from handle_type_packet() method --- ext/theora/gsttheoradec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/theora/gsttheoradec.c b/ext/theora/gsttheoradec.c index b9ab5e4..e63cfa6 100644 --- a/ext/theora/gsttheoradec.c +++ b/ext/theora/gsttheoradec.c @@ -379,7 +379,7 @@ theora_handle_comment_packet (GstTheoraDec * dec, ogg_packet * packet) } static GstFlowReturn -theora_handle_type_packet (GstTheoraDec * dec, ogg_packet * packet) +theora_handle_type_packet (GstTheoraDec * dec) { gint par_num, par_den; GstFlowReturn ret = GST_FLOW_OK; @@ -532,7 +532,7 @@ theora_handle_header_packet (GstTheoraDec * dec, ogg_packet * packet) res = theora_handle_comment_packet (dec, packet); break; case 0x82: - res = theora_handle_type_packet (dec, packet); + res = theora_handle_type_packet (dec); break; default: /* ignore */ -- 2.7.4