Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
2ccc6ff0
Commit
2ccc6ff0
authored
Dec 01, 2013
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an Opus and a Speex muxer.
Fixes ticket #3181.
parent
4ba90392
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
73 additions
and
11 deletions
+73
-11
Makefile
libavformat/Makefile
+4
-0
allformats.c
libavformat/allformats.c
+2
-0
oggenc.c
libavformat/oggenc.c
+65
-9
version.h
libavformat/version.h
+2
-2
No files found.
libavformat/Makefile
View file @
2ccc6ff0
...
...
@@ -269,6 +269,8 @@ OBJS-$(CONFIG_OGG_MUXER) += oggenc.o \
vorbiscomment.o
OBJS-$(CONFIG_OMA_DEMUXER)
+=
omadec.o
pcm.o
oma.o
OBJS-$(CONFIG_OMA_MUXER)
+=
omaenc.o
rawenc.o
oma.o
id3v2enc.o
OBJS-$(CONFIG_OPUS_MUXER)
+=
oggenc.o
\
vorbiscomment.o
OBJS-$(CONFIG_PAF_DEMUXER)
+=
paf.o
OBJS-$(CONFIG_PCM_ALAW_DEMUXER)
+=
pcmdec.o
pcm.o
OBJS-$(CONFIG_PCM_ALAW_MUXER)
+=
pcmenc.o
rawenc.o
...
...
@@ -365,6 +367,8 @@ OBJS-$(CONFIG_SOX_DEMUXER) += soxdec.o pcm.o
OBJS-$(CONFIG_SOX_MUXER)
+=
soxenc.o
rawenc.o
OBJS-$(CONFIG_SPDIF_DEMUXER)
+=
spdif.o
spdifdec.o
OBJS-$(CONFIG_SPDIF_MUXER)
+=
spdif.o
spdifenc.o
OBJS-$(CONFIG_SPEEX_MUXER)
+=
oggenc.o
\
vorbiscomment.o
OBJS-$(CONFIG_SRT_DEMUXER)
+=
srtdec.o
subtitles.o
OBJS-$(CONFIG_SRT_MUXER)
+=
srtenc.o
OBJS-$(CONFIG_STR_DEMUXER)
+=
psxstr.o
...
...
libavformat/allformats.c
View file @
2ccc6ff0
...
...
@@ -205,6 +205,7 @@ void av_register_all(void)
REGISTER_DEMUXER
(
NUV
,
nuv
);
REGISTER_MUXDEMUX
(
OGG
,
ogg
);
REGISTER_MUXDEMUX
(
OMA
,
oma
);
REGISTER_MUXER
(
OPUS
,
opus
);
REGISTER_DEMUXER
(
PAF
,
paf
);
REGISTER_MUXDEMUX
(
PCM_ALAW
,
pcm_alaw
);
REGISTER_MUXDEMUX
(
PCM_MULAW
,
pcm_mulaw
);
...
...
@@ -264,6 +265,7 @@ void av_register_all(void)
REGISTER_DEMUXER
(
SOL
,
sol
);
REGISTER_MUXDEMUX
(
SOX
,
sox
);
REGISTER_MUXDEMUX
(
SPDIF
,
spdif
);
REGISTER_MUXER
(
SPEEX
,
speex
);
REGISTER_MUXDEMUX
(
SRT
,
srt
);
REGISTER_DEMUXER
(
STR
,
str
);
REGISTER_DEMUXER
(
SUBVIEWER1
,
subviewer1
);
...
...
libavformat/oggenc.c
View file @
2ccc6ff0
...
...
@@ -86,14 +86,6 @@ static const AVOption options[] = {
{
NULL
},
};
static
const
AVClass
ogg_muxer_class
=
{
.
class_name
=
"Ogg muxer"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
void
ogg_update_checksum
(
AVFormatContext
*
s
,
AVIOContext
*
pb
,
int64_t
crc_offset
)
{
int64_t
pos
=
avio_tell
(
pb
);
...
...
@@ -624,11 +616,26 @@ static int ogg_write_trailer(AVFormatContext *s)
return
0
;
}
#if CONFIG_OGG_MUXER
static
const
AVClass
ogg_muxer_class
=
{
.
class_name
=
"Ogg muxer"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
AVOutputFormat
ff_ogg_muxer
=
{
.
name
=
"ogg"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Ogg"
),
.
mime_type
=
"application/ogg"
,
.
extensions
=
"ogg,ogv,spx,opus"
,
.
extensions
=
"ogg,ogv"
#if !CONFIG_SPEEX_MUXER
",spx"
#endif
#if !CONFIG_OPUS_MUXER
",opus"
#endif
,
.
priv_data_size
=
sizeof
(
OGGContext
),
.
audio_codec
=
AV_CODEC_ID_FLAC
,
.
video_codec
=
AV_CODEC_ID_THEORA
,
...
...
@@ -638,3 +645,52 @@ AVOutputFormat ff_ogg_muxer = {
.
flags
=
AVFMT_TS_NEGATIVE
,
.
priv_class
=
&
ogg_muxer_class
,
};
#endif
#if CONFIG_SPEEX_MUXER
static
const
AVClass
speex_muxer_class
=
{
.
class_name
=
"Speex muxer"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
AVOutputFormat
ff_speex_muxer
=
{
.
name
=
"speex"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Speex"
),
.
mime_type
=
"audio/ogg"
,
.
extensions
=
"spx"
,
.
priv_data_size
=
sizeof
(
OGGContext
),
.
audio_codec
=
AV_CODEC_ID_SPEEX
,
.
video_codec
=
AV_CODEC_ID_NONE
,
.
write_header
=
ogg_write_header
,
.
write_packet
=
ogg_write_packet
,
.
write_trailer
=
ogg_write_trailer
,
.
flags
=
AVFMT_TS_NEGATIVE
,
.
priv_class
=
&
speex_muxer_class
,
};
#endif
#if CONFIG_OPUS_MUXER
static
const
AVClass
opus_muxer_class
=
{
.
class_name
=
"Opus muxer"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
AVOutputFormat
ff_opus_muxer
=
{
.
name
=
"opus"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Opus"
),
.
mime_type
=
"audio/ogg"
,
.
extensions
=
"opus"
,
.
priv_data_size
=
sizeof
(
OGGContext
),
.
audio_codec
=
AV_CODEC_ID_OPUS
,
.
video_codec
=
AV_CODEC_ID_NONE
,
.
write_header
=
ogg_write_header
,
.
write_packet
=
ogg_write_packet
,
.
write_trailer
=
ogg_write_trailer
,
.
flags
=
AVFMT_TS_NEGATIVE
,
.
priv_class
=
&
opus_muxer_class
,
};
#endif
libavformat/version.h
View file @
2ccc6ff0
...
...
@@ -30,8 +30,8 @@
#include "libavutil/avutil.h"
#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 2
1
#define LIBAVFORMAT_VERSION_MICRO 10
2
#define LIBAVFORMAT_VERSION_MINOR 2
2
#define LIBAVFORMAT_VERSION_MICRO 10
0
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
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