omx: Fix ununsed variable compiler warning

This commit is contained in:
Sebastian Dröge 2012-12-20 12:30:05 +01:00
parent 83b4c1d892
commit 1d01c0ebf0
3 changed files with 3 additions and 6 deletions

View file

@ -495,7 +495,6 @@ static gboolean
gst_omx_audio_enc_start (GstAudioEncoder * encoder)
{
GstOMXAudioEnc *self;
gboolean ret;
self = GST_OMX_AUDIO_ENC (encoder);
@ -503,7 +502,7 @@ gst_omx_audio_enc_start (GstAudioEncoder * encoder)
self->eos = FALSE;
self->downstream_flow_ret = GST_FLOW_OK;
return ret;
return TRUE;
}
static gboolean

View file

@ -783,7 +783,6 @@ static gboolean
gst_omx_video_dec_start (GstVideoDecoder * decoder)
{
GstOMXVideoDec *self;
gboolean ret;
self = GST_OMX_VIDEO_DEC (decoder);
@ -791,7 +790,7 @@ gst_omx_video_dec_start (GstVideoDecoder * decoder)
self->eos = FALSE;
self->downstream_flow_ret = GST_FLOW_OK;
return ret;
return TRUE;
}
static gboolean

View file

@ -876,7 +876,6 @@ static gboolean
gst_omx_video_enc_start (GstVideoEncoder * encoder)
{
GstOMXVideoEnc *self;
gboolean ret;
self = GST_OMX_VIDEO_ENC (encoder);
@ -884,7 +883,7 @@ gst_omx_video_enc_start (GstVideoEncoder * encoder)
self->eos = FALSE;
self->downstream_flow_ret = GST_FLOW_OK;
return ret;
return TRUE;
}
static gboolean