summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-25 12:04:59 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-25 12:09:59 +0100
commit8b94cd39349a97628bb2172b4388b43bd0dedb16 (patch)
treec14766d91ac823bc3078b20c5c731cc567f4663e
parent0c490f1ce637d7154f8cdc3d32547eec7aa1e1b0 (diff)
typefinding: lower the h264 typefinder's probability
A NEARLY_CERTAIN is absolutely not warranted given the kind of things it checks for. Even a LIKELY is probably not entirely appropriate.
-rw-r--r--gst/typefind/gsttypefindfunctions.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c
index 8c3160755..9603ec6ce 100644
--- a/gst/typefind/gsttypefindfunctions.c
+++ b/gst/typefind/gsttypefindfunctions.c
@@ -1743,8 +1743,7 @@ h264_video_type_find (GstTypeFind * tf, gpointer unused)
if ((stat_slice > 4 || (stat_dpa > 4 && stat_dpb > 4 && stat_dpc > 4)) &&
stat_idr >= 1 && stat_sps >= 1 && stat_pps >= 1) {
- gst_type_find_suggest (tf, GST_TYPE_FIND_NEARLY_CERTAIN,
- H264_VIDEO_CAPS);
+ gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, H264_VIDEO_CAPS);
return;
}