mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
androidmedia: Skip Aricent codecs for now
The HTC One X claims to have one (but doesn't) and loading the library for it hangs forever.
This commit is contained in:
parent
b0bad3ca15
commit
92fffc8cbe
1 changed files with 6 additions and 0 deletions
|
@ -1692,6 +1692,12 @@ scan_codecs (GstPlugin * plugin)
|
|||
goto next_codec;
|
||||
}
|
||||
|
||||
if (g_str_has_prefix (name_str, "OMX.ARICENT.")) {
|
||||
GST_INFO ("Skipping possible broken codec '%s'", name_str);
|
||||
valid_codec = FALSE;
|
||||
goto next_codec;
|
||||
}
|
||||
|
||||
/* FIXME:
|
||||
* - Vorbis: Generates clicks for multi-channel streams
|
||||
* - *Law: Generates output with too low frequencies
|
||||
|
|
Loading…
Reference in a new issue