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
3cd5828f
Commit
3cd5828f
authored
Feb 23, 2015
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtpdec: Add missing trailing commas
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
04a1be8e
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
rtpdec_dv.c
libavformat/rtpdec_dv.c
+1
-1
rtpdec_h264.c
libavformat/rtpdec_h264.c
+1
-1
rtpdec_hevc.c
libavformat/rtpdec_hevc.c
+1
-1
rtpdec_latm.c
libavformat/rtpdec_latm.c
+1
-1
rtpdec_mpeg4.c
libavformat/rtpdec_mpeg4.c
+1
-1
rtpdec_qcelp.c
libavformat/rtpdec_qcelp.c
+1
-1
rtpdec_xiph.c
libavformat/rtpdec_xiph.c
+2
-2
No files found.
libavformat/rtpdec_dv.c
View file @
3cd5828f
...
...
@@ -165,5 +165,5 @@ RTPDynamicProtocolHandler ff_dv_dynamic_handler = {
.
parse_sdp_a_line
=
dv_parse_sdp_line
,
.
alloc
=
dv_new_context
,
.
free
=
dv_free_context
,
.
parse_packet
=
dv_handle_packet
.
parse_packet
=
dv_handle_packet
,
};
libavformat/rtpdec_h264.c
View file @
3cd5828f
...
...
@@ -422,5 +422,5 @@ RTPDynamicProtocolHandler ff_h264_dynamic_handler = {
.
parse_sdp_a_line
=
parse_h264_sdp_line
,
.
alloc
=
h264_new_context
,
.
free
=
h264_free_context
,
.
parse_packet
=
h264_handle_packet
.
parse_packet
=
h264_handle_packet
,
};
libavformat/rtpdec_hevc.c
View file @
3cd5828f
...
...
@@ -421,5 +421,5 @@ RTPDynamicProtocolHandler ff_hevc_dynamic_handler = {
.
parse_sdp_a_line
=
hevc_parse_sdp_line
,
.
alloc
=
hevc_new_context
,
.
free
=
hevc_free_context
,
.
parse_packet
=
hevc_handle_packet
.
parse_packet
=
hevc_handle_packet
,
};
libavformat/rtpdec_latm.c
View file @
3cd5828f
...
...
@@ -186,5 +186,5 @@ RTPDynamicProtocolHandler ff_mp4a_latm_dynamic_handler = {
.
parse_sdp_a_line
=
latm_parse_sdp_line
,
.
alloc
=
latm_new_context
,
.
free
=
latm_free_context
,
.
parse_packet
=
latm_parse_packet
.
parse_packet
=
latm_parse_packet
,
};
libavformat/rtpdec_mpeg4.c
View file @
3cd5828f
...
...
@@ -345,5 +345,5 @@ RTPDynamicProtocolHandler ff_mpeg4_generic_dynamic_handler = {
.
parse_sdp_a_line
=
parse_sdp_line
,
.
alloc
=
new_context
,
.
free
=
free_context
,
.
parse_packet
=
aac_parse_packet
.
parse_packet
=
aac_parse_packet
,
};
libavformat/rtpdec_qcelp.c
View file @
3cd5828f
...
...
@@ -226,5 +226,5 @@ RTPDynamicProtocolHandler ff_qcelp_dynamic_handler = {
.
static_payload_id
=
12
,
.
alloc
=
qcelp_new_context
,
.
free
=
qcelp_free_context
,
.
parse_packet
=
qcelp_parse_packet
.
parse_packet
=
qcelp_parse_packet
,
};
libavformat/rtpdec_xiph.c
View file @
3cd5828f
...
...
@@ -397,7 +397,7 @@ RTPDynamicProtocolHandler ff_theora_dynamic_handler = {
.
parse_sdp_a_line
=
xiph_parse_sdp_line
,
.
alloc
=
xiph_new_context
,
.
free
=
xiph_free_context
,
.
parse_packet
=
xiph_handle_packet
.
parse_packet
=
xiph_handle_packet
,
};
RTPDynamicProtocolHandler
ff_vorbis_dynamic_handler
=
{
...
...
@@ -408,5 +408,5 @@ RTPDynamicProtocolHandler ff_vorbis_dynamic_handler = {
.
parse_sdp_a_line
=
xiph_parse_sdp_line
,
.
alloc
=
xiph_new_context
,
.
free
=
xiph_free_context
,
.
parse_packet
=
xiph_handle_packet
.
parse_packet
=
xiph_handle_packet
,
};
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