[flvmeta] 2 new revisions pushed by marc.noi...@gmail.com on 2011-11-22 19:37 GMT

0 views
Skip to first unread message

flv...@googlecode.com

unread,
Nov 22, 2011, 2:40:47 PM11/22/11
to flvme...@googlegroups.com
2 new revisions:

Revision: 2ab05cf77875
Author: Marc Noirot <marc....@gmail.com>
Date: Tue Nov 22 11:17:58 2011
Log: Updated NEWS file.
http://code.google.com/p/flvmeta/source/detail?r=2ab05cf77875

Revision: b899474a6f5a
Author: Marc Noirot <marc....@gmail.com>
Date: Tue Nov 22 11:31:26 2011
Log: Added autoconf option to use currently installed libyaml instead
of th...
http://code.google.com/p/flvmeta/source/detail?r=b899474a6f5a

==============================================================================
Revision: 2ab05cf77875
Author: Marc Noirot <marc....@gmail.com>
Date: Tue Nov 22 11:17:58 2011
Log: Updated NEWS file.

http://code.google.com/p/flvmeta/source/detail?r=2ab05cf77875

Modified:
/NEWS

=======================================
--- /NEWS Thu Sep 16 05:27:39 2010
+++ /NEWS Tue Nov 22 11:17:58 2011
@@ -1,4 +1,4 @@
-Version 1.1 (2010-??-??)
+Version 1.1 (2011-??-??)
- Beta release. All features should be considered relatively
stable unless explicitely stated otherwise.
- Added proper command line handling and help.
@@ -11,7 +11,7 @@
flvdump functionality into flvmeta.
- Added support for XML, YAML, and JSON formats for dumping.
- Added XML schemas describing the various formats used by flvmeta.
- - Added a file checking feature (currently unimplemented)
+ - Added a file checking feature.
- Added the possibility to print output file metadata after
a successful update using one of the supported formats.
- Added a feature to insert custom metadata strings while updating.
@@ -23,9 +23,9 @@
instead of exiting at the first error detected.
- Added an option to reset the file timestamps in order to
correctly start at zero, for example if the file has been
- incorrectly split by buggy tools
+ incorrectly split by buggy tools.
- Added an option to display informative messages while processing
- (not quite exhaustive for the moment)
+ (not quite exhaustive for the moment).
- Changed keyframe index generation so only the first keyframe
for a given timestamp will be indexed. This behaviour can be
overriden with the --all-keyframes/-k option.

==============================================================================
Revision: b899474a6f5a
Author: Marc Noirot <marc....@gmail.com>
Date: Tue Nov 22 11:31:26 2011
Log: Added autoconf option to use currently installed libyaml instead
of the bundled version to compile flvmeta (thanks to Neutron Soutmun).

http://code.google.com/p/flvmeta/source/detail?r=b899474a6f5a

Modified:
/configure.ac
/src/Makefile.am

=======================================
--- /configure.ac Tue Sep 13 07:48:53 2011
+++ /configure.ac Tue Nov 22 11:31:26 2011
@@ -23,6 +23,16 @@
)
AM_CONDITIONAL([MAKE_TESTS], [test "$have_check" = yes])

+dnl Checks for --with-system-libs
+AC_ARG_WITH([system-libs],
+ [AC_HELP_STRING([--with-system-libs], [Build with system libraries])]
+)
+AM_CONDITIONAL([USE_SYSTEM_LIBS], [test "x$with_system_libs" = "xyes"])
+
+if test "x$with_system_libs" = "xyes"; then
+ PKG_CHECK_MODULES([YAML], [yaml-0.1 >= 0.1.3])
+fi
+
dnl Checks for header files.
AC_CHECK_HEADERS([stdlib.h stdio.h string.h])

=======================================
--- /src/Makefile.am Wed Feb 2 08:53:13 2011
+++ /src/Makefile.am Tue Nov 22 11:31:26 2011
@@ -1,10 +1,16 @@
-AM_CFLAGS = -Wall -I@srcdir@/libyaml
-
+bin_PROGRAMS = flvmeta
+
+if USE_SYSTEM_LIBS
+EXPORT_CFLAGS = $(YAML_CFLAGS)
+EXPORT_LDADD = $(YAML_LIBS)
+else
SUBDIRS = libyaml
-
-bin_PROGRAMS = flvmeta
-
-flvmeta_LDADD = @builddir@/libyaml/libyaml.a
+EXPORT_CFLAGS = -I@srcdir@/libyaml
+EXPORT_LDADD = @builddir@/libyaml/libyaml.a
+endif
+
+AM_CFLAGS = -Wall $(EXPORT_CFLAGS)
+flvmeta_LDADD = $(EXPORT_LDADD)

flvmeta_SOURCES = amf.c \
amf.h \

Reply all
Reply to author
Forward
0 new messages