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
b6bf1490
Commit
b6bf1490
authored
Sep 22, 2012
by
Dmitry Samonenko
Committed by
Martin Storsjö
Sep 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtpdec: Support depacketizing speex
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
490ae95a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
rtpdec.c
libavformat/rtpdec.c
+7
-0
version.h
libavformat/version.h
+1
-1
No files found.
libavformat/rtpdec.c
View file @
b6bf1490
...
...
@@ -49,6 +49,12 @@ static RTPDynamicProtocolHandler ff_realmedia_mp3_dynamic_handler = {
.
codec_id
=
AV_CODEC_ID_MP3ADU
,
};
static
RTPDynamicProtocolHandler
speex_dynamic_handler
=
{
.
enc_name
=
"speex"
,
.
codec_type
=
AVMEDIA_TYPE_AUDIO
,
.
codec_id
=
AV_CODEC_ID_SPEEX
,
};
/* statistics functions */
static
RTPDynamicProtocolHandler
*
RTPFirstDynamicPayloadHandler
=
NULL
;
...
...
@@ -78,6 +84,7 @@ void av_register_rtp_dynamic_payload_handlers(void)
ff_register_dynamic_payload_handler
(
&
ff_vp8_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_qcelp_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_realmedia_mp3_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
speex_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_ms_rtp_asf_pfv_handler
);
ff_register_dynamic_payload_handler
(
&
ff_ms_rtp_asf_pfa_handler
);
...
...
libavformat/version.h
View file @
b6bf1490
...
...
@@ -31,7 +31,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 17
#define LIBAVFORMAT_VERSION_MICRO
1
#define LIBAVFORMAT_VERSION_MICRO
2
#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