Rename ogg2.[ch] to oggdec.[ch].

Originally committed as revision 10943 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Diego Biurrun 17 years ago
parent e282e5edb4
commit a0ddef24ce
  1. 2
      libavformat/Makefile
  2. 2
      libavformat/oggdec.c
  3. 6
      libavformat/oggdec.h
  4. 2
      libavformat/oggparseflac.c
  5. 2
      libavformat/oggparseogm.c
  6. 2
      libavformat/oggparsetheora.c
  7. 2
      libavformat/oggparsevorbis.c

@ -107,7 +107,7 @@ OBJS-$(CONFIG_NULL_MUXER) += raw.o
OBJS-$(CONFIG_NUT_DEMUXER) += nutdec.o nut.o riff.o OBJS-$(CONFIG_NUT_DEMUXER) += nutdec.o nut.o riff.o
OBJS-$(CONFIG_NUT_MUXER) += nutenc.o nut.o riff.o OBJS-$(CONFIG_NUT_MUXER) += nutenc.o nut.o riff.o
OBJS-$(CONFIG_NUV_DEMUXER) += nuv.o riff.o OBJS-$(CONFIG_NUV_DEMUXER) += nuv.o riff.o
OBJS-$(CONFIG_OGG_DEMUXER) += ogg2.o \ OBJS-$(CONFIG_OGG_DEMUXER) += oggdec.o \
oggparsevorbis.o \ oggparsevorbis.o \
oggparsetheora.o \ oggparsetheora.o \
oggparseflac.o \ oggparseflac.o \

@ -31,7 +31,7 @@
#include <stdio.h> #include <stdio.h>
#include "ogg2.h" #include "oggdec.h"
#include "avformat.h" #include "avformat.h"
#define MAX_PAGE_SIZE 65307 #define MAX_PAGE_SIZE 65307

@ -22,8 +22,8 @@
DEALINGS IN THE SOFTWARE. DEALINGS IN THE SOFTWARE.
**/ **/
#ifndef FFMPEG_OGG2_H #ifndef FFMPEG_OGGDEC_H
#define FFMPEG_OGG2_H #define FFMPEG_OGGDEC_H
#include "avformat.h" #include "avformat.h"
@ -84,4 +84,4 @@ extern ogg_codec_t ogm_old_codec;
extern int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); extern int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size);
#endif /* FFMPEG_OGG2_H */ #endif /* FFMPEG_OGGDEC_H */

@ -21,7 +21,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "avformat.h" #include "avformat.h"
#include "bitstream.h" #include "bitstream.h"
#include "ogg2.h" #include "oggdec.h"
#define FLAC_STREAMINFO_SIZE 0x22 #define FLAC_STREAMINFO_SIZE 0x22

@ -27,7 +27,7 @@
#include "bitstream.h" #include "bitstream.h"
#include "bytestream.h" #include "bytestream.h"
#include "intreadwrite.h" #include "intreadwrite.h"
#include "ogg2.h" #include "oggdec.h"
#include "riff.h" #include "riff.h"
static int static int

@ -26,7 +26,7 @@
#include "avformat.h" #include "avformat.h"
#include "bitstream.h" #include "bitstream.h"
#include "bswap.h" #include "bswap.h"
#include "ogg2.h" #include "oggdec.h"
typedef struct theora_params { typedef struct theora_params {
int gpshift; int gpshift;

@ -27,7 +27,7 @@
#include "bitstream.h" #include "bitstream.h"
#include "bytestream.h" #include "bytestream.h"
#include "bswap.h" #include "bswap.h"
#include "ogg2.h" #include "oggdec.h"
#include "avstring.h" #include "avstring.h"
extern int extern int

Loading…
Cancel
Save