Add another TI specific OpenMAX color format

This commit is contained in:
Sebastian Dröge 2012-08-23 12:29:40 +02:00
parent 4966f68512
commit e9790ae693
2 changed files with 6 additions and 1 deletions

View file

@ -93,7 +93,9 @@ enum
COLOR_Format24BitARGB6666 = 42,
COLOR_Format24BitABGR6666 = 43,
COLOR_TI_FormatYUV420PackedSemiPlanar = 0x7f000100,
COLOR_QCOM_FormatYUV420SemiPlanar = 0x7fa30c00
COLOR_QCOM_FormatYUV420SemiPlanar = 0x7fa30c00,
/* From hardware/ti/omap4xxx/domx/omx_core/inc/OMX_TI_IVCommon.h */
COLOR_TI_FormatYUV420PackedSemiPlanarInterlaced = 0x7f000001
};
enum

View file

@ -114,6 +114,9 @@ gst_amc_attach_current_thread (void)
static void
gst_amc_detach_current_thread (void)
{
/* FIXME: At some point we need to detach threads, otherwise
* we leak memory
*/
GST_DEBUG ("FIXME: Not detaching thread %p", g_thread_self ());
/*(*java_vm)->DetachCurrentThread (java_vm); */
}