[FFmpeg-cvslog] r10943 - in trunk/libavformat: Makefile ogg2.c ogg2.h oggdec.c oggdec.h oggparseflac.c oggparseogm.c oggparsetheora.c oggparsevorbis.c

diego subversion
Wed Nov 7 21:22:33 CET 2007


Author: diego
Date: Wed Nov  7 21:22:32 2007
New Revision: 10943

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


Added:
   trunk/libavformat/oggdec.c
      - copied, changed from r10942, /trunk/libavformat/ogg2.c
   trunk/libavformat/oggdec.h
      - copied, changed from r10937, /trunk/libavformat/ogg2.h
Removed:
   trunk/libavformat/ogg2.c
   trunk/libavformat/ogg2.h
Modified:
   trunk/libavformat/Makefile
   trunk/libavformat/oggparseflac.c
   trunk/libavformat/oggparseogm.c
   trunk/libavformat/oggparsetheora.c
   trunk/libavformat/oggparsevorbis.c

Modified: trunk/libavformat/Makefile
==============================================================================
--- trunk/libavformat/Makefile	(original)
+++ trunk/libavformat/Makefile	Wed Nov  7 21:22:32 2007
@@ -107,7 +107,7 @@ OBJS-$(CONFIG_NULL_MUXER)               
 OBJS-$(CONFIG_NUT_DEMUXER)               += nutdec.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_OGG_DEMUXER)               += ogg2.o           \
+OBJS-$(CONFIG_OGG_DEMUXER)               += oggdec.o         \
                                             oggparsevorbis.o \
                                             oggparsetheora.o \
                                             oggparseflac.o   \

Copied: trunk/libavformat/oggdec.c (from r10942, /trunk/libavformat/ogg2.c)
==============================================================================
--- /trunk/libavformat/ogg2.c	(original)
+++ trunk/libavformat/oggdec.c	Wed Nov  7 21:22:32 2007
@@ -31,7 +31,7 @@
 
 
 #include <stdio.h>
-#include "ogg2.h"
+#include "oggdec.h"
 #include "avformat.h"
 
 #define MAX_PAGE_SIZE 65307

Copied: trunk/libavformat/oggdec.h (from r10937, /trunk/libavformat/ogg2.h)
==============================================================================
--- /trunk/libavformat/ogg2.h	(original)
+++ trunk/libavformat/oggdec.h	Wed Nov  7 21:22:32 2007
@@ -22,8 +22,8 @@
     DEALINGS IN THE SOFTWARE.
 **/
 
-#ifndef FFMPEG_OGG2_H
-#define FFMPEG_OGG2_H
+#ifndef FFMPEG_OGGDEC_H
+#define FFMPEG_OGGDEC_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);
 
-#endif /* FFMPEG_OGG2_H */
+#endif /* FFMPEG_OGGDEC_H */

Modified: trunk/libavformat/oggparseflac.c
==============================================================================
--- trunk/libavformat/oggparseflac.c	(original)
+++ trunk/libavformat/oggparseflac.c	Wed Nov  7 21:22:32 2007
@@ -21,7 +21,7 @@
 #include <stdlib.h>
 #include "avformat.h"
 #include "bitstream.h"
-#include "ogg2.h"
+#include "oggdec.h"
 
 #define FLAC_STREAMINFO_SIZE 0x22
 

Modified: trunk/libavformat/oggparseogm.c
==============================================================================
--- trunk/libavformat/oggparseogm.c	(original)
+++ trunk/libavformat/oggparseogm.c	Wed Nov  7 21:22:32 2007
@@ -27,7 +27,7 @@
 #include "bitstream.h"
 #include "bytestream.h"
 #include "intreadwrite.h"
-#include "ogg2.h"
+#include "oggdec.h"
 #include "riff.h"
 
 static int

Modified: trunk/libavformat/oggparsetheora.c
==============================================================================
--- trunk/libavformat/oggparsetheora.c	(original)
+++ trunk/libavformat/oggparsetheora.c	Wed Nov  7 21:22:32 2007
@@ -26,7 +26,7 @@
 #include "avformat.h"
 #include "bitstream.h"
 #include "bswap.h"
-#include "ogg2.h"
+#include "oggdec.h"
 
 typedef struct theora_params {
     int gpshift;

Modified: trunk/libavformat/oggparsevorbis.c
==============================================================================
--- trunk/libavformat/oggparsevorbis.c	(original)
+++ trunk/libavformat/oggparsevorbis.c	Wed Nov  7 21:22:32 2007
@@ -27,7 +27,7 @@
 #include "bitstream.h"
 #include "bytestream.h"
 #include "bswap.h"
-#include "ogg2.h"
+#include "oggdec.h"
 #include "avstring.h"
 
 extern int




More information about the ffmpeg-cvslog mailing list