GNOME Bugzilla – Bug 618516
[typefinding] need raw H.263 typefinder
Last modified: 2011-02-22 11:52:45 UTC
We do not currently have a typefinder for raw H.263 streams, likes the one at http://samples.mplayerhq.hu/V-codecs/h263/h263-raw/messenger.h263
*** Bug 517916 has been marked as a duplicate of this bug. ***
Created attachment 180485 [details] [review] patch to add support for raw h.263
Pushed, many thanks! commit 0ebc34adf94caf2476a18d7188341a903a4b2227 Author: Parthasarathi Susarla <partha.susarla@collabora.co.uk> Date: Thu Feb 10 03:22:42 2011 +1100 typefinding: detect raw h.263 https://bugzilla.gnome.org/show_bug.cgi?id=623846 Did some minor changes: - used LIKELY + POSSIBLE probabilities, the other ones felt too high - removed x263 extension (assuming that's only there for H.264 becasue of the x264 encoder library) - added a FIXME for bailing out early in the loop when there are too many bad syncs (ideally we don't want to scan the full 128kB if we are sure it's not h.263) - if (good & !bad) => if (good > 0 && bad == 0)