printf: add our own printf implementation for debug logging
authorTim-Philipp Müller <tim@centricular.net>
Sat, 30 Mar 2013 15:13:32 +0000 (15:13 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 12 Apr 2013 22:05:56 +0000 (23:05 +0100)
commit8fc876f09fb4f76902cedcb2edb650fad9f76021
treef4a0c1cf266100d72bc4514e5a2e5edda43017d2
parentf45c84db028ed6a32867ddf7135993f33320a4c1
printf: add our own printf implementation for debug logging

We will add support for our own printf modifiers, so we can
get nice debug log output on all operating systems irrespective
of the specific libc version used.

https://bugzilla.gnome.org/show_bug.cgi?id=613081
14 files changed:
configure.ac
gst/Makefile.am
gst/printf/Makefile.am [new file with mode: 0644]
gst/printf/README [new file with mode: 0644]
gst/printf/asnprintf.c [new file with mode: 0644]
gst/printf/gst-printf.h [new file with mode: 0644]
gst/printf/printf-args.c [new file with mode: 0644]
gst/printf/printf-args.h [new file with mode: 0644]
gst/printf/printf-parse.c [new file with mode: 0644]
gst/printf/printf-parse.h [new file with mode: 0644]
gst/printf/printf.c [new file with mode: 0644]
gst/printf/printf.h [new file with mode: 0644]
gst/printf/vasnprintf.c [new file with mode: 0644]
gst/printf/vasnprintf.h [new file with mode: 0644]