├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── example.conf ├── m4 ├── Makefile.am ├── as-ac-expand.m4 ├── as-compiler-flag.m4 ├── gst-args.m4 ├── gst-check.m4 ├── gst-error.m4 ├── gst-plugindir.m4 ├── gst.m4 └── shave.m4 ├── omx ├── Makefile.am ├── gstomx.c ├── gstomx.conf ├── gstomx.h ├── gstomx_aacdec.c ├── gstomx_aacdec.h ├── gstomx_aacenc.c ├── gstomx_aacenc.h ├── gstomx_adpcmdec.c ├── gstomx_adpcmdec.h ├── gstomx_adpcmenc.c ├── gstomx_adpcmenc.h ├── gstomx_amrnbdec.c ├── gstomx_amrnbdec.h ├── gstomx_amrnbenc.c ├── gstomx_amrnbenc.h ├── gstomx_amrwbdec.c ├── gstomx_amrwbdec.h ├── gstomx_amrwbenc.c ├── gstomx_amrwbenc.h ├── gstomx_audiosink.c ├── gstomx_audiosink.h ├── gstomx_base_audiodec.c ├── gstomx_base_audiodec.h ├── gstomx_base_filter.c ├── gstomx_base_filter.h ├── gstomx_base_sink.c ├── gstomx_base_sink.h ├── gstomx_base_src.c ├── gstomx_base_src.h ├── gstomx_base_videodec.c ├── gstomx_base_videodec.h ├── gstomx_base_videoenc.c ├── gstomx_base_videoenc.h ├── gstomx_dummy.c ├── gstomx_dummy.h ├── gstomx_filereadersrc.c ├── gstomx_filereadersrc.h ├── gstomx_g711dec.c ├── gstomx_g711dec.h ├── gstomx_g711enc.c ├── gstomx_g711enc.h ├── gstomx_g729dec.c ├── gstomx_g729dec.h ├── gstomx_g729enc.c ├── gstomx_g729enc.h ├── gstomx_h263dec.c ├── gstomx_h263dec.h ├── gstomx_h263enc.c ├── gstomx_h263enc.h ├── gstomx_h264dec.c ├── gstomx_h264dec.h ├── gstomx_h264enc.c ├── gstomx_h264enc.h ├── gstomx_ilbcdec.c ├── gstomx_ilbcdec.h ├── gstomx_ilbcenc.c ├── gstomx_ilbcenc.h ├── gstomx_interface.c ├── gstomx_interface.h ├── gstomx_jpegenc.c ├── gstomx_jpegenc.h ├── gstomx_mp2dec.c ├── gstomx_mp2dec.h ├── gstomx_mp3dec.c ├── gstomx_mp3dec.h ├── gstomx_mpeg4dec.c ├── gstomx_mpeg4dec.h ├── gstomx_mpeg4enc.c ├── gstomx_mpeg4enc.h ├── gstomx_util.c ├── gstomx_util.h ├── gstomx_videosink.c ├── gstomx_videosink.h ├── gstomx_volume.c ├── gstomx_volume.h ├── gstomx_vorbisdec.c ├── gstomx_vorbisdec.h ├── gstomx_wmvdec.c ├── gstomx_wmvdec.h └── headers │ ├── OMX_Audio.h │ ├── OMX_Component.h │ ├── OMX_ContentPipe.h │ ├── OMX_Core.h │ ├── OMX_IVCommon.h │ ├── OMX_Image.h │ ├── OMX_Index.h │ ├── OMX_Other.h │ ├── OMX_Types.h │ └── OMX_Video.h ├── shave-libtool.in ├── shave.in ├── tests ├── .gitignore ├── Makefile.am ├── check_async_queue.c ├── check_gstomx.c ├── check_libomxil.c ├── gst-openmax.conf └── standalone │ ├── Makefile.in │ └── core.c └── util ├── Makefile.am ├── async_queue.c ├── async_queue.h ├── sem.c └── sem.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/configure.ac -------------------------------------------------------------------------------- /example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/example.conf -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/Makefile.am -------------------------------------------------------------------------------- /m4/as-ac-expand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/as-ac-expand.m4 -------------------------------------------------------------------------------- /m4/as-compiler-flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/as-compiler-flag.m4 -------------------------------------------------------------------------------- /m4/gst-args.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/gst-args.m4 -------------------------------------------------------------------------------- /m4/gst-check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/gst-check.m4 -------------------------------------------------------------------------------- /m4/gst-error.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/gst-error.m4 -------------------------------------------------------------------------------- /m4/gst-plugindir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/gst-plugindir.m4 -------------------------------------------------------------------------------- /m4/gst.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/gst.m4 -------------------------------------------------------------------------------- /m4/shave.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/m4/shave.m4 -------------------------------------------------------------------------------- /omx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/Makefile.am -------------------------------------------------------------------------------- /omx/gstomx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx.c -------------------------------------------------------------------------------- /omx/gstomx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx.conf -------------------------------------------------------------------------------- /omx/gstomx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx.h -------------------------------------------------------------------------------- /omx/gstomx_aacdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_aacdec.c -------------------------------------------------------------------------------- /omx/gstomx_aacdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_aacdec.h -------------------------------------------------------------------------------- /omx/gstomx_aacenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_aacenc.c -------------------------------------------------------------------------------- /omx/gstomx_aacenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_aacenc.h -------------------------------------------------------------------------------- /omx/gstomx_adpcmdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_adpcmdec.c -------------------------------------------------------------------------------- /omx/gstomx_adpcmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_adpcmdec.h -------------------------------------------------------------------------------- /omx/gstomx_adpcmenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_adpcmenc.c -------------------------------------------------------------------------------- /omx/gstomx_adpcmenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_adpcmenc.h -------------------------------------------------------------------------------- /omx/gstomx_amrnbdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrnbdec.c -------------------------------------------------------------------------------- /omx/gstomx_amrnbdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrnbdec.h -------------------------------------------------------------------------------- /omx/gstomx_amrnbenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrnbenc.c -------------------------------------------------------------------------------- /omx/gstomx_amrnbenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrnbenc.h -------------------------------------------------------------------------------- /omx/gstomx_amrwbdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrwbdec.c -------------------------------------------------------------------------------- /omx/gstomx_amrwbdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrwbdec.h -------------------------------------------------------------------------------- /omx/gstomx_amrwbenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrwbenc.c -------------------------------------------------------------------------------- /omx/gstomx_amrwbenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_amrwbenc.h -------------------------------------------------------------------------------- /omx/gstomx_audiosink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_audiosink.c -------------------------------------------------------------------------------- /omx/gstomx_audiosink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_audiosink.h -------------------------------------------------------------------------------- /omx/gstomx_base_audiodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_audiodec.c -------------------------------------------------------------------------------- /omx/gstomx_base_audiodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_audiodec.h -------------------------------------------------------------------------------- /omx/gstomx_base_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_filter.c -------------------------------------------------------------------------------- /omx/gstomx_base_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_filter.h -------------------------------------------------------------------------------- /omx/gstomx_base_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_sink.c -------------------------------------------------------------------------------- /omx/gstomx_base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_sink.h -------------------------------------------------------------------------------- /omx/gstomx_base_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_src.c -------------------------------------------------------------------------------- /omx/gstomx_base_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_src.h -------------------------------------------------------------------------------- /omx/gstomx_base_videodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_videodec.c -------------------------------------------------------------------------------- /omx/gstomx_base_videodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_videodec.h -------------------------------------------------------------------------------- /omx/gstomx_base_videoenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_videoenc.c -------------------------------------------------------------------------------- /omx/gstomx_base_videoenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_base_videoenc.h -------------------------------------------------------------------------------- /omx/gstomx_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_dummy.c -------------------------------------------------------------------------------- /omx/gstomx_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_dummy.h -------------------------------------------------------------------------------- /omx/gstomx_filereadersrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_filereadersrc.c -------------------------------------------------------------------------------- /omx/gstomx_filereadersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_filereadersrc.h -------------------------------------------------------------------------------- /omx/gstomx_g711dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g711dec.c -------------------------------------------------------------------------------- /omx/gstomx_g711dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g711dec.h -------------------------------------------------------------------------------- /omx/gstomx_g711enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g711enc.c -------------------------------------------------------------------------------- /omx/gstomx_g711enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g711enc.h -------------------------------------------------------------------------------- /omx/gstomx_g729dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g729dec.c -------------------------------------------------------------------------------- /omx/gstomx_g729dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g729dec.h -------------------------------------------------------------------------------- /omx/gstomx_g729enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g729enc.c -------------------------------------------------------------------------------- /omx/gstomx_g729enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_g729enc.h -------------------------------------------------------------------------------- /omx/gstomx_h263dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h263dec.c -------------------------------------------------------------------------------- /omx/gstomx_h263dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h263dec.h -------------------------------------------------------------------------------- /omx/gstomx_h263enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h263enc.c -------------------------------------------------------------------------------- /omx/gstomx_h263enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h263enc.h -------------------------------------------------------------------------------- /omx/gstomx_h264dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h264dec.c -------------------------------------------------------------------------------- /omx/gstomx_h264dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h264dec.h -------------------------------------------------------------------------------- /omx/gstomx_h264enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h264enc.c -------------------------------------------------------------------------------- /omx/gstomx_h264enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_h264enc.h -------------------------------------------------------------------------------- /omx/gstomx_ilbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_ilbcdec.c -------------------------------------------------------------------------------- /omx/gstomx_ilbcdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_ilbcdec.h -------------------------------------------------------------------------------- /omx/gstomx_ilbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_ilbcenc.c -------------------------------------------------------------------------------- /omx/gstomx_ilbcenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_ilbcenc.h -------------------------------------------------------------------------------- /omx/gstomx_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_interface.c -------------------------------------------------------------------------------- /omx/gstomx_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_interface.h -------------------------------------------------------------------------------- /omx/gstomx_jpegenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_jpegenc.c -------------------------------------------------------------------------------- /omx/gstomx_jpegenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_jpegenc.h -------------------------------------------------------------------------------- /omx/gstomx_mp2dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mp2dec.c -------------------------------------------------------------------------------- /omx/gstomx_mp2dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mp2dec.h -------------------------------------------------------------------------------- /omx/gstomx_mp3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mp3dec.c -------------------------------------------------------------------------------- /omx/gstomx_mp3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mp3dec.h -------------------------------------------------------------------------------- /omx/gstomx_mpeg4dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mpeg4dec.c -------------------------------------------------------------------------------- /omx/gstomx_mpeg4dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mpeg4dec.h -------------------------------------------------------------------------------- /omx/gstomx_mpeg4enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mpeg4enc.c -------------------------------------------------------------------------------- /omx/gstomx_mpeg4enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_mpeg4enc.h -------------------------------------------------------------------------------- /omx/gstomx_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_util.c -------------------------------------------------------------------------------- /omx/gstomx_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_util.h -------------------------------------------------------------------------------- /omx/gstomx_videosink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_videosink.c -------------------------------------------------------------------------------- /omx/gstomx_videosink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_videosink.h -------------------------------------------------------------------------------- /omx/gstomx_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_volume.c -------------------------------------------------------------------------------- /omx/gstomx_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_volume.h -------------------------------------------------------------------------------- /omx/gstomx_vorbisdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_vorbisdec.c -------------------------------------------------------------------------------- /omx/gstomx_vorbisdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_vorbisdec.h -------------------------------------------------------------------------------- /omx/gstomx_wmvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_wmvdec.c -------------------------------------------------------------------------------- /omx/gstomx_wmvdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/gstomx_wmvdec.h -------------------------------------------------------------------------------- /omx/headers/OMX_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Audio.h -------------------------------------------------------------------------------- /omx/headers/OMX_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Component.h -------------------------------------------------------------------------------- /omx/headers/OMX_ContentPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_ContentPipe.h -------------------------------------------------------------------------------- /omx/headers/OMX_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Core.h -------------------------------------------------------------------------------- /omx/headers/OMX_IVCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_IVCommon.h -------------------------------------------------------------------------------- /omx/headers/OMX_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Image.h -------------------------------------------------------------------------------- /omx/headers/OMX_Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Index.h -------------------------------------------------------------------------------- /omx/headers/OMX_Other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Other.h -------------------------------------------------------------------------------- /omx/headers/OMX_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Types.h -------------------------------------------------------------------------------- /omx/headers/OMX_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/omx/headers/OMX_Video.h -------------------------------------------------------------------------------- /shave-libtool.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/shave-libtool.in -------------------------------------------------------------------------------- /shave.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/shave.in -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/check_async_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/check_async_queue.c -------------------------------------------------------------------------------- /tests/check_gstomx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/check_gstomx.c -------------------------------------------------------------------------------- /tests/check_libomxil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/check_libomxil.c -------------------------------------------------------------------------------- /tests/gst-openmax.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/gst-openmax.conf -------------------------------------------------------------------------------- /tests/standalone/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/standalone/Makefile.in -------------------------------------------------------------------------------- /tests/standalone/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/tests/standalone/core.c -------------------------------------------------------------------------------- /util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/util/Makefile.am -------------------------------------------------------------------------------- /util/async_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/util/async_queue.c -------------------------------------------------------------------------------- /util/async_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/util/async_queue.h -------------------------------------------------------------------------------- /util/sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/util/sem.c -------------------------------------------------------------------------------- /util/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/gst-openmax/HEAD/util/sem.h --------------------------------------------------------------------------------