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
0d85663a
Commit
0d85663a
authored
Dec 09, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtpdec: Rename a static variable to normal naming conventions
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
f9e493c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
rtpdec.c
libavformat/rtpdec.c
+5
-5
No files found.
libavformat/rtpdec.c
View file @
0d85663a
...
@@ -59,12 +59,12 @@ static RTPDynamicProtocolHandler opus_dynamic_handler = {
...
@@ -59,12 +59,12 @@ static RTPDynamicProtocolHandler opus_dynamic_handler = {
};
};
/* statistics functions */
/* statistics functions */
static
RTPDynamicProtocolHandler
*
RTPFirstDynamicPayloadH
andler
=
NULL
;
static
RTPDynamicProtocolHandler
*
rtp_first_dynamic_payload_h
andler
=
NULL
;
void
ff_register_dynamic_payload_handler
(
RTPDynamicProtocolHandler
*
handler
)
void
ff_register_dynamic_payload_handler
(
RTPDynamicProtocolHandler
*
handler
)
{
{
handler
->
next
=
RTPFirstDynamicPayloadH
andler
;
handler
->
next
=
rtp_first_dynamic_payload_h
andler
;
RTPFirstDynamicPayloadH
andler
=
handler
;
rtp_first_dynamic_payload_h
andler
=
handler
;
}
}
void
av_register_rtp_dynamic_payload_handlers
(
void
)
void
av_register_rtp_dynamic_payload_handlers
(
void
)
...
@@ -108,7 +108,7 @@ RTPDynamicProtocolHandler *ff_rtp_handler_find_by_name(const char *name,
...
@@ -108,7 +108,7 @@ RTPDynamicProtocolHandler *ff_rtp_handler_find_by_name(const char *name,
enum
AVMediaType
codec_type
)
enum
AVMediaType
codec_type
)
{
{
RTPDynamicProtocolHandler
*
handler
;
RTPDynamicProtocolHandler
*
handler
;
for
(
handler
=
RTPFirstDynamicPayloadH
andler
;
for
(
handler
=
rtp_first_dynamic_payload_h
andler
;
handler
;
handler
=
handler
->
next
)
handler
;
handler
=
handler
->
next
)
if
(
!
av_strcasecmp
(
name
,
handler
->
enc_name
)
&&
if
(
!
av_strcasecmp
(
name
,
handler
->
enc_name
)
&&
codec_type
==
handler
->
codec_type
)
codec_type
==
handler
->
codec_type
)
...
@@ -120,7 +120,7 @@ RTPDynamicProtocolHandler *ff_rtp_handler_find_by_id(int id,
...
@@ -120,7 +120,7 @@ RTPDynamicProtocolHandler *ff_rtp_handler_find_by_id(int id,
enum
AVMediaType
codec_type
)
enum
AVMediaType
codec_type
)
{
{
RTPDynamicProtocolHandler
*
handler
;
RTPDynamicProtocolHandler
*
handler
;
for
(
handler
=
RTPFirstDynamicPayloadH
andler
;
for
(
handler
=
rtp_first_dynamic_payload_h
andler
;
handler
;
handler
=
handler
->
next
)
handler
;
handler
=
handler
->
next
)
if
(
handler
->
static_payload_id
&&
handler
->
static_payload_id
==
id
&&
if
(
handler
->
static_payload_id
&&
handler
->
static_payload_id
==
id
&&
codec_type
==
handler
->
codec_type
)
codec_type
==
handler
->
codec_type
)
...
...
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