summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-06-25 08:11:09 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-06-25 08:11:09 +0200
commit32a3d6e717204b8d9cc1e2d9dc9a8e027962b89c (patch)
tree20f7751528113174bc97f90149eb4d3e45d9f616
parent67ca4c57b1309eed6c3cf1c7bc1b58be2f4f635c (diff)
flvparse: Add missing break in switch/case.
-rw-r--r--gst/flv/gstflvparse.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/flv/gstflvparse.c b/gst/flv/gstflvparse.c
index 594465129..747ab080f 100644
--- a/gst/flv/gstflvparse.c
+++ b/gst/flv/gstflvparse.c
@@ -815,6 +815,7 @@ gst_flv_parse_video_negotiate (GstFLVDemux * demux, guint32 codec_tag)
case 3:
caps = gst_caps_new_simple ("video/x-flash-screen", NULL);
codec_name = "Flash Screen Video";
+ break;
case 4:
caps = gst_caps_new_simple ("video/x-vp6-flash", NULL);
codec_name = "On2 VP6 Video";