mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
androidmedia: break statement unnecessary
Code flow never arrives to the break statements due to the goto's. So the breaks are unecessary. https://bugzilla.gnome.org/show_bug.cgi?id=736942
This commit is contained in:
parent
27eb6555d1
commit
a3958ae65b
1 changed files with 0 additions and 3 deletions
|
@ -652,16 +652,13 @@ retry:
|
|||
goto get_output_buffers_error;
|
||||
|
||||
goto retry;
|
||||
break;
|
||||
}
|
||||
case INFO_TRY_AGAIN_LATER:
|
||||
GST_DEBUG_OBJECT (self, "Dequeueing output buffer timed out");
|
||||
goto retry;
|
||||
break;
|
||||
case G_MININT:
|
||||
GST_ERROR_OBJECT (self, "Failure dequeueing output buffer");
|
||||
goto dequeue_error;
|
||||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue