Browse Source

matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)

Originally committed as revision 2872 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
08abe0fd66
4 changed files with 2694 additions and 1 deletions
  1. +1
    -1
      libavformat/Makefile
  2. +1
    -0
      libavformat/allformats.c
  3. +3
    -0
      libavformat/avformat.h
  4. +2689
    -0
      libavformat/matroska.c

+ 1
- 1
libavformat/Makefile View File

@@ -16,7 +16,7 @@ OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o raw.o rm.o \
avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \
nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
sierravmd.o
sierravmd.o matroska.o

ifeq ($(CONFIG_RISKY),yes)
OBJS+= asf.o


+ 1
- 0
libavformat/allformats.c View File

@@ -96,6 +96,7 @@ void av_register_all(void)
#endif

nut_init();
matroska_init();

#ifdef CONFIG_ENCODERS
/* image formats */


+ 3
- 0
libavformat/avformat.h View File

@@ -483,6 +483,9 @@ int flic_init(void);
/* sierravmd.c */
int vmd_init(void);

/* matroska.c */
int matroska_init(void);

#include "rtp.h"

#include "rtsp.h"


+ 2689
- 0
libavformat/matroska.c
File diff suppressed because it is too large
View File


Loading…
Cancel
Save