Permalink
Browse files
Removing header files not include in Makefile.am and minor changes
- Loading branch information...
Showing
with
16 additions
and
5 deletions.
-
+6
−0
ChangeLog
-
+1
−2
configure.ac
-
+6
−0
ext/Makefile
-
+2
−2
omx/Makefile.am
-
+1
−1
omx/gstomx.c
|
|
@@ -1,3 +1,9 @@ |
|
|
+== TI Gstreamer Plugin Release 0.3 ==
|
|
|
+
|
|
|
+* Initial Public Release of the TI GStreamer DM81xx Plugin.
|
|
|
+* Adapted from GST-OpenMAX by Felipe Contreras <felipe.contreras@gmail.com>
|
|
|
+* Supports TI OMX libraries
|
|
|
+
|
|
|
== Release 0.10.0.4 ==
|
|
|
|
|
|
2008-06-19 Felipe Contreras <felipe.contreras@gmail.com>
|
|
|
|
|
@@ -1,8 +1,7 @@ |
|
|
AC_PREREQ([2.52])
|
|
|
|
|
|
dnl AC_INIT([gst-openmax], m4_esyscmd([build-aux/git-version-gen]),
|
|
|
-AC_INIT([gst-openmax],
|
|
|
- [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer&component=gst-openmax])
|
|
|
+AC_INIT([gst-openmax], [0.3], [https://gstreamer.ti.com/gf/project/gstreamer_ti/forum/])
|
|
|
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
|
AM_INIT_AUTOMAKE([-Wall -Wno-portability])
|
|
|
|
@@ -30,3 +30,9 @@ clean: |
|
|
rm -rf lib
|
|
|
|
|
|
install: all
|
|
|
+
|
|
|
+distdir:
|
|
|
+ mkdir -p $(distdir)
|
|
|
+ cp -f Makefile $(distdir)
|
|
|
+
|
|
|
+distclean:
|
|
@@ -15,7 +15,7 @@ libgstomx_la_SOURCES = gstomx.c gstomx.h \ |
|
|
gstomx_mpeg2dec.c gstomx_mpeg2dec.h \
|
|
|
gstomx_h263dec.c gstomx_h263dec.h \
|
|
|
gstomx_h264dec.c gstomx_h264dec.h \
|
|
|
- gstomx_vc1dec.c gstomx_vc1dec.h \
|
|
|
+ gstomx_vc1dec.c gstomx_vc1dec.h \
|
|
|
gstomx_wmvdec.c gstomx_wmvdec.h \
|
|
|
gstomx_mpeg4enc.c gstomx_mpeg4enc.h \
|
|
|
gstomx_h264enc.c gstomx_h264enc.h \
|
|
@@ -54,7 +54,7 @@ libgstomx_la_SOURCES = gstomx.c gstomx.h \ |
|
|
gstomx_videomixer.c gstomx_videomixer.h
|
|
|
|
|
|
libgstomx_la_LIBADD = $(OMXCORE_LIBS) $(GST_LIBS) $(GST_BASE_LIBS) -lgstvideo-0.10 $(top_builddir)/util/libutil.la
|
|
|
-libgstomx_la_CFLAGS = $(OMXCORE_CFLAGS) $(OMXTIAUDIODEC_CFLAGS) $(USE_OMXTIAUDIODEC) $(GST_CFLAGS) $(GST_BASE_CFLAGS) -I$(top_srcdir)/util \
|
|
|
+libgstomx_la_CFLAGS = -DUSE_OMXTICORE $(OMXCORE_CFLAGS) $(OMXTIAUDIODEC_CFLAGS) $(USE_OMXTIAUDIODEC) $(GST_CFLAGS) $(GST_BASE_CFLAGS) -I$(top_srcdir)/util \
|
|
|
-Dxdc_target_name__=GCArmv5T -Dxdc_target_types__=gnu/targets/arm/std.h -Dxdc__RESTRICT__ \
|
|
|
-I$(OMX_INSTALL_DIR)/include/openMaxv11 \
|
|
|
-I$(OMX_INSTALL_DIR)/packages \
|
|
|
|
@@ -25,7 +25,7 @@ |
|
|
#include "gstomx_mpeg2dec.h"
|
|
|
#include "gstomx_h263dec.h"
|
|
|
#include "gstomx_h264dec.h"
|
|
|
-#include "gstomx_vp6dec.h"
|
|
|
+// #include "gstomx_vp6dec.h"
|
|
|
#include "gstomx_wmvdec.h"
|
|
|
#include "gstomx_mpeg4enc.h"
|
|
|
#include "gstomx_h264enc.h"
|
|
|
0 comments on commit
3ed31b0