Skip to content

Commit

Permalink
rtpdec: Add missing trailing commas
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Storsjö <[email protected]>
  • Loading branch information
mstorsjo committed Feb 24, 2015
1 parent 04a1be8 commit 3cd5828
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion libavformat/rtpdec_dv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
2 changes: 1 addition & 1 deletion libavformat/rtpdec_h264.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
2 changes: 1 addition & 1 deletion libavformat/rtpdec_hevc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
2 changes: 1 addition & 1 deletion libavformat/rtpdec_latm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
2 changes: 1 addition & 1 deletion libavformat/rtpdec_mpeg4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
2 changes: 1 addition & 1 deletion libavformat/rtpdec_qcelp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
4 changes: 2 additions & 2 deletions libavformat/rtpdec_xiph.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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,
};

0 comments on commit 3cd5828

Please sign in to comment.