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
ca5f386e
Commit
ca5f386e
authored
Nov 12, 2015
by
Mohamed Naufal
Committed by
Vittorio Giovara
Nov 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: G.723.1 muxer
Signed-off-by:
Vittorio Giovara
<
vittorio.giovara@gmail.com
>
parent
f023d57d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
3 deletions
+17
-3
Changelog
Changelog
+1
-1
Makefile
libavformat/Makefile
+1
-0
allformats.c
libavformat/allformats.c
+1
-1
rawenc.c
libavformat/rawenc.c
+13
-0
version.h
libavformat/version.h
+1
-1
No files found.
Changelog
View file @
ca5f386e
...
...
@@ -49,7 +49,7 @@ version <next>:
- innoHeim/Rsupport Screen Capture Codec decoder
- support encoding 16-bit RLE SGI images
- support Apple AVFoundation video capture
- G.723.1 encoder
- G.723.1
muxer and
encoder
version 11:
...
...
libavformat/Makefile
View file @
ca5f386e
...
...
@@ -138,6 +138,7 @@ OBJS-$(CONFIG_GXF_MUXER) += gxfenc.o audiointerleave.o
OBJS-$(CONFIG_G722_DEMUXER)
+=
g722.o
rawdec.o
OBJS-$(CONFIG_G722_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_G723_1_DEMUXER)
+=
g723_1.o
OBJS-$(CONFIG_G723_1_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_H261_DEMUXER)
+=
h261dec.o
rawdec.o
OBJS-$(CONFIG_H261_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_H263_DEMUXER)
+=
h263dec.o
rawdec.o
...
...
libavformat/allformats.c
View file @
ca5f386e
...
...
@@ -111,7 +111,7 @@ void av_register_all(void)
REGISTER_MUXER
(
FRAMECRC
,
framecrc
);
REGISTER_MUXER
(
FRAMEMD5
,
framemd5
);
REGISTER_MUXDEMUX
(
G722
,
g722
);
REGISTER_
DEMUXER
(
G723_1
,
g723_1
);
REGISTER_
MUXDEMUX
(
G723_1
,
g723_1
);
REGISTER_MUXER
(
GIF
,
gif
);
REGISTER_DEMUXER
(
GSM
,
gsm
);
REGISTER_MUXDEMUX
(
GXF
,
gxf
);
...
...
libavformat/rawenc.c
View file @
ca5f386e
...
...
@@ -131,6 +131,19 @@ AVOutputFormat ff_g722_muxer = {
};
#endif
#if CONFIG_G723_1_MUXER
AVOutputFormat
ff_g723_1_muxer
=
{
.
name
=
"g723_1"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"raw G.723.1"
),
.
mime_type
=
"audio/g723"
,
.
extensions
=
"tco,rco"
,
.
audio_codec
=
AV_CODEC_ID_G723_1
,
.
video_codec
=
AV_CODEC_ID_NONE
,
.
write_packet
=
ff_raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
#endif
#if CONFIG_H261_MUXER
AVOutputFormat
ff_h261_muxer
=
{
.
name
=
"h261"
,
...
...
libavformat/version.h
View file @
ca5f386e
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFORMAT_VERSION_MAJOR 57
#define LIBAVFORMAT_VERSION_MINOR
1
#define LIBAVFORMAT_VERSION_MINOR
2
#define LIBAVFORMAT_VERSION_MICRO 0
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
...
...
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