mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
basevideo: fix unused-but-set-variable warnings with gcc 4.6
This commit is contained in:
parent
c9ef416fa7
commit
fb67a0d126
3 changed files with 1 additions and 29 deletions
|
@ -130,11 +130,6 @@ gst_base_video_codec_reset (GstBaseVideoCodec * base_video_codec)
|
||||||
static void
|
static void
|
||||||
gst_base_video_codec_finalize (GObject * object)
|
gst_base_video_codec_finalize (GObject * object)
|
||||||
{
|
{
|
||||||
GstBaseVideoCodec *base_video_codec;
|
|
||||||
|
|
||||||
g_return_if_fail (GST_IS_BASE_VIDEO_CODEC (object));
|
|
||||||
base_video_codec = GST_BASE_VIDEO_CODEC (object);
|
|
||||||
|
|
||||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -178,11 +178,8 @@ static void
|
||||||
gst_base_video_decoder_finalize (GObject * object)
|
gst_base_video_decoder_finalize (GObject * object)
|
||||||
{
|
{
|
||||||
GstBaseVideoDecoder *base_video_decoder;
|
GstBaseVideoDecoder *base_video_decoder;
|
||||||
GstBaseVideoDecoderClass *base_video_decoder_class;
|
|
||||||
|
|
||||||
g_return_if_fail (GST_IS_BASE_VIDEO_DECODER (object));
|
|
||||||
base_video_decoder = GST_BASE_VIDEO_DECODER (object);
|
base_video_decoder = GST_BASE_VIDEO_DECODER (object);
|
||||||
base_video_decoder_class = GST_BASE_VIDEO_DECODER_GET_CLASS (object);
|
|
||||||
|
|
||||||
gst_base_video_decoder_reset (base_video_decoder);
|
gst_base_video_decoder_reset (base_video_decoder);
|
||||||
|
|
||||||
|
@ -980,7 +977,6 @@ GstFlowReturn
|
||||||
gst_base_video_decoder_finish_frame (GstBaseVideoDecoder * base_video_decoder,
|
gst_base_video_decoder_finish_frame (GstBaseVideoDecoder * base_video_decoder,
|
||||||
GstVideoFrame * frame)
|
GstVideoFrame * frame)
|
||||||
{
|
{
|
||||||
GstBaseVideoDecoderClass *base_video_decoder_class;
|
|
||||||
GstVideoState *state = &GST_BASE_VIDEO_CODEC (base_video_decoder)->state;
|
GstVideoState *state = &GST_BASE_VIDEO_CODEC (base_video_decoder)->state;
|
||||||
GstBuffer *src_buffer;
|
GstBuffer *src_buffer;
|
||||||
|
|
||||||
|
@ -990,9 +986,6 @@ gst_base_video_decoder_finish_frame (GstBaseVideoDecoder * base_video_decoder,
|
||||||
gst_adapter_available (base_video_decoder->input_adapter),
|
gst_adapter_available (base_video_decoder->input_adapter),
|
||||||
gst_adapter_available (base_video_decoder->output_adapter));
|
gst_adapter_available (base_video_decoder->output_adapter));
|
||||||
|
|
||||||
base_video_decoder_class =
|
|
||||||
GST_BASE_VIDEO_DECODER_GET_CLASS (base_video_decoder);
|
|
||||||
|
|
||||||
GST_DEBUG ("finish frame sync=%d pts=%" GST_TIME_FORMAT, frame->is_sync_point,
|
GST_DEBUG ("finish frame sync=%d pts=%" GST_TIME_FORMAT, frame->is_sync_point,
|
||||||
GST_TIME_ARGS (frame->presentation_timestamp));
|
GST_TIME_ARGS (frame->presentation_timestamp));
|
||||||
|
|
||||||
|
@ -1135,13 +1128,7 @@ GstFlowReturn
|
||||||
gst_base_video_decoder_skip_frame (GstBaseVideoDecoder * base_video_decoder,
|
gst_base_video_decoder_skip_frame (GstBaseVideoDecoder * base_video_decoder,
|
||||||
GstVideoFrame * frame)
|
GstVideoFrame * frame)
|
||||||
{
|
{
|
||||||
GstBaseVideoDecoderClass *base_video_decoder_class;
|
|
||||||
|
|
||||||
GST_DEBUG ("finish frame");
|
GST_DEBUG ("finish frame");
|
||||||
|
|
||||||
base_video_decoder_class =
|
|
||||||
GST_BASE_VIDEO_DECODER_GET_CLASS (base_video_decoder);
|
|
||||||
|
|
||||||
GST_DEBUG ("finish frame sync=%d pts=%" GST_TIME_FORMAT, frame->is_sync_point,
|
GST_DEBUG ("finish frame sync=%d pts=%" GST_TIME_FORMAT, frame->is_sync_point,
|
||||||
GST_TIME_ARGS (frame->presentation_timestamp));
|
GST_TIME_ARGS (frame->presentation_timestamp));
|
||||||
|
|
||||||
|
|
|
@ -149,14 +149,7 @@ gst_base_video_encoder_sink_setcaps (GstPad * pad, GstCaps * caps)
|
||||||
static void
|
static void
|
||||||
gst_base_video_encoder_finalize (GObject * object)
|
gst_base_video_encoder_finalize (GObject * object)
|
||||||
{
|
{
|
||||||
GstBaseVideoEncoder *base_video_encoder;
|
GST_DEBUG_OBJECT (object, "finalize");
|
||||||
GstBaseVideoEncoderClass *base_video_encoder_class;
|
|
||||||
|
|
||||||
g_return_if_fail (GST_IS_BASE_VIDEO_ENCODER (object));
|
|
||||||
base_video_encoder = GST_BASE_VIDEO_ENCODER (object);
|
|
||||||
base_video_encoder_class = GST_BASE_VIDEO_ENCODER_GET_CLASS (object);
|
|
||||||
|
|
||||||
GST_DEBUG ("finalize");
|
|
||||||
|
|
||||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
@ -255,12 +248,9 @@ static gboolean
|
||||||
gst_base_video_encoder_src_event (GstPad * pad, GstEvent * event)
|
gst_base_video_encoder_src_event (GstPad * pad, GstEvent * event)
|
||||||
{
|
{
|
||||||
GstBaseVideoEncoder *base_video_encoder;
|
GstBaseVideoEncoder *base_video_encoder;
|
||||||
GstBaseVideoEncoderClass *base_video_encoder_class;
|
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
|
|
||||||
base_video_encoder = GST_BASE_VIDEO_ENCODER (gst_pad_get_parent (pad));
|
base_video_encoder = GST_BASE_VIDEO_ENCODER (gst_pad_get_parent (pad));
|
||||||
base_video_encoder_class =
|
|
||||||
GST_BASE_VIDEO_ENCODER_GET_CLASS (base_video_encoder);
|
|
||||||
|
|
||||||
switch (GST_EVENT_TYPE (event)) {
|
switch (GST_EVENT_TYPE (event)) {
|
||||||
case GST_EVENT_CUSTOM_UPSTREAM:
|
case GST_EVENT_CUSTOM_UPSTREAM:
|
||||||
|
|
Loading…
Reference in a new issue