Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a0ddef24
Commit
a0ddef24
authored
Nov 07, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename ogg2.[ch] to oggdec.[ch].
Originally committed as revision 10943 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e282e5ed
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
Makefile
libavformat/Makefile
+1
-1
oggdec.c
libavformat/oggdec.c
+1
-1
oggdec.h
libavformat/oggdec.h
+3
-3
oggparseflac.c
libavformat/oggparseflac.c
+1
-1
oggparseogm.c
libavformat/oggparseogm.c
+1
-1
oggparsetheora.c
libavformat/oggparsetheora.c
+1
-1
oggparsevorbis.c
libavformat/oggparsevorbis.c
+1
-1
No files found.
libavformat/Makefile
View file @
a0ddef24
...
...
@@ -107,7 +107,7 @@ OBJS-$(CONFIG_NULL_MUXER) += raw.o
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)
+=
ogg
2.o
\
OBJS-$(CONFIG_OGG_DEMUXER)
+=
ogg
dec.o
\
oggparsevorbis.o
\
oggparsetheora.o
\
oggparseflac.o
\
...
...
libavformat/ogg
2
.c
→
libavformat/ogg
dec
.c
View file @
a0ddef24
...
...
@@ -31,7 +31,7 @@
#include <stdio.h>
#include "ogg
2
.h"
#include "ogg
dec
.h"
#include "avformat.h"
#define MAX_PAGE_SIZE 65307
...
...
libavformat/ogg
2
.h
→
libavformat/ogg
dec
.h
View file @
a0ddef24
...
...
@@ -22,8 +22,8 @@
DEALINGS IN THE SOFTWARE.
**/
#ifndef FFMPEG_OGG
2
_H
#define FFMPEG_OGG
2
_H
#ifndef FFMPEG_OGG
DEC
_H
#define FFMPEG_OGG
DEC
_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_OGG
2
_H */
#endif
/* FFMPEG_OGG
DEC
_H */
libavformat/oggparseflac.c
View file @
a0ddef24
...
...
@@ -21,7 +21,7 @@
#include <stdlib.h>
#include "avformat.h"
#include "bitstream.h"
#include "ogg
2
.h"
#include "ogg
dec
.h"
#define FLAC_STREAMINFO_SIZE 0x22
...
...
libavformat/oggparseogm.c
View file @
a0ddef24
...
...
@@ -27,7 +27,7 @@
#include "bitstream.h"
#include "bytestream.h"
#include "intreadwrite.h"
#include "ogg
2
.h"
#include "ogg
dec
.h"
#include "riff.h"
static
int
...
...
libavformat/oggparsetheora.c
View file @
a0ddef24
...
...
@@ -26,7 +26,7 @@
#include "avformat.h"
#include "bitstream.h"
#include "bswap.h"
#include "ogg
2
.h"
#include "ogg
dec
.h"
typedef
struct
theora_params
{
int
gpshift
;
...
...
libavformat/oggparsevorbis.c
View file @
a0ddef24
...
...
@@ -27,7 +27,7 @@
#include "bitstream.h"
#include "bytestream.h"
#include "bswap.h"
#include "ogg
2
.h"
#include "ogg
dec
.h"
#include "avstring.h"
extern
int
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment