17 Jul 2012 03:08
[PATCH] Vivo demuxer
Paul B Mahol <onemda <at> gmail.com>
2012-07-17 01:08:24 GMT
2012-07-17 01:08:24 GMT
From: Daniel Verkamp <daniel <at> drv.nu>
---
Only video for version 1 is playable.
---
libavformat/Makefile | 1 +
libavformat/allformats.c | 1 +
libavformat/vivo.c | 336 ++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 338 insertions(+), 0 deletions(-)
create mode 100644 libavformat/vivo.c
diff --git a/libavformat/Makefile b/libavformat/Makefile
index a3ddcad..08bf1c5 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
<at> <at> -336,6 +336,7 <at> <at> OBJS-$(CONFIG_TXD_DEMUXER) += txd.o
OBJS-$(CONFIG_VC1_DEMUXER) += rawdec.o
OBJS-$(CONFIG_VC1T_DEMUXER) += vc1test.o
OBJS-$(CONFIG_VC1T_MUXER) += vc1testenc.o
+OBJS-$(CONFIG_VIVO_DEMUXER) += vivo.o
OBJS-$(CONFIG_VMD_DEMUXER) += sierravmd.o
OBJS-$(CONFIG_VOC_DEMUXER) += vocdec.o voc.o
OBJS-$(CONFIG_VOC_MUXER) += vocenc.o voc.o
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index 7ea4ebb..a8d2152 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
<at> <at> -242,6 +242,7 <at> <at> void av_register_all(void)
REGISTER_DEMUXER (TTY, tty);
REGISTER_DEMUXER (VC1, vc1);
(Continue reading)
RSS Feed