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
c1b9d718
Commit
c1b9d718
authored
Dec 05, 2013
by
Andrey Utkin
Committed by
Michael Niedermayer
Dec 08, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/rtpdec: Enable GSM RTP depacketization
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
cea5812f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
rtpdec.c
libavformat/rtpdec.c
+7
-0
No files found.
libavformat/rtpdec.c
View file @
c1b9d718
...
@@ -32,6 +32,12 @@
...
@@ -32,6 +32,12 @@
#define MIN_FEEDBACK_INTERVAL 200000
/* 200 ms in us */
#define MIN_FEEDBACK_INTERVAL 200000
/* 200 ms in us */
static
RTPDynamicProtocolHandler
gsm_dynamic_handler
=
{
.
enc_name
=
"GSM"
,
.
codec_type
=
AVMEDIA_TYPE_AUDIO
,
.
codec_id
=
AV_CODEC_ID_GSM
,
};
static
RTPDynamicProtocolHandler
realmedia_mp3_dynamic_handler
=
{
static
RTPDynamicProtocolHandler
realmedia_mp3_dynamic_handler
=
{
.
enc_name
=
"X-MP3-draft-00"
,
.
enc_name
=
"X-MP3-draft-00"
,
.
codec_type
=
AVMEDIA_TYPE_AUDIO
,
.
codec_type
=
AVMEDIA_TYPE_AUDIO
,
...
@@ -90,6 +96,7 @@ void ff_register_rtp_dynamic_payload_handlers(void)
...
@@ -90,6 +96,7 @@ void ff_register_rtp_dynamic_payload_handlers(void)
ff_register_dynamic_payload_handler
(
&
ff_theora_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_theora_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_vorbis_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_vorbis_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_vp8_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_vp8_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
gsm_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
opus_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
opus_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
realmedia_mp3_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
realmedia_mp3_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
speex_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
speex_dynamic_handler
);
...
...
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