diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-25 12:04:59 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-25 12:09:59 +0100 |
commit | 8b94cd39349a97628bb2172b4388b43bd0dedb16 (patch) | |
tree | c14766d91ac823bc3078b20c5c731cc567f4663e /gst | |
parent | 0c490f1ce637d7154f8cdc3d32547eec7aa1e1b0 (diff) | |
download | gstreamer-plugins-base-8b94cd39349a97628bb2172b4388b43bd0dedb16.tar.gz |
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.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/typefind/gsttypefindfunctions.c | 3 |
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; } |