Browse Source

Rename rtpdec_theora.[ch] to rtpdec_xiph.[ch], as a preparation for merging

the Vorbis / theora depacketizers.

Patch by Josh Allmann <joshua DOT allmann AT gmail DOT com>.

Originally committed as revision 22765 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Josh Allmann Ronald S. Bultje 15 years ago
parent
commit
06a36faf4c
4 changed files with 4 additions and 5 deletions
  1. +2
    -2
      libavformat/Makefile
  2. +1
    -2
      libavformat/rtpdec.c
  3. +1
    -1
      libavformat/rtpdec_xiph.c
  4. +0
    -0
      libavformat/rtpdec_xiph.h

+ 2
- 2
libavformat/Makefile View File

@@ -225,8 +225,8 @@ OBJS-$(CONFIG_SDP_DEMUXER) += rtsp.o \
rtpdec_asf.o \
rtpdec_h263.o \
rtpdec_h264.o \
rtpdec_theora.o \
rtpdec_vorbis.o
rtpdec_vorbis.o \
rtpdec_xiph.o
OBJS-$(CONFIG_SEGAFILM_DEMUXER) += segafilm.o
OBJS-$(CONFIG_SHORTEN_DEMUXER) += raw.o id3v2.o
OBJS-$(CONFIG_SIFF_DEMUXER) += siff.o


+ 1
- 2
libavformat/rtpdec.c View File

@@ -34,8 +34,7 @@
#include "rtpdec_asf.h"
#include "rtpdec_h263.h"
#include "rtpdec_h264.h"
#include "rtpdec_vorbis.h"
#include "rtpdec_theora.h"
#include "rtpdec_xiph.h"

//#define DEBUG



libavformat/rtpdec_theora.c → libavformat/rtpdec_xiph.c View File

@@ -32,7 +32,7 @@
#include <assert.h>

#include "rtpdec.h"
#include "rtpdec_theora.h"
#include "rtpdec_xiph.h"

/**
* RTP/Theora specific private data.

libavformat/rtpdec_theora.h → libavformat/rtpdec_xiph.h View File


Loading…
Cancel
Save