diff options
author | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-06-15 11:46:54 -0400 |
---|---|---|
committer | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-06-19 15:10:31 -0400 |
commit | 5ff3106445b986aeff0412a6bd743a8032d1839a (patch) | |
tree | 4292eb3485508117381a09d887f80966fe014afa /ext | |
parent | 0da5679c6f7dca546969af0cf82a93eb1c15e7ed (diff) |
flactag: Fix warning with the newly added GstStateChange values
https://bugzilla.gnome.org/show_bug.cgi?id=783798
Diffstat (limited to 'ext')
-rw-r--r-- | ext/flac/gstflactag.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/flac/gstflactag.c b/ext/flac/gstflactag.c index 8047bd90d..e2e239f4a 100644 --- a/ext/flac/gstflactag.c +++ b/ext/flac/gstflactag.c @@ -493,6 +493,8 @@ gst_flac_tag_change_state (GstElement * element, GstStateChange transition) break; case GST_STATE_CHANGE_READY_TO_NULL: break; + default: + break; } return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition); |