diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 22:03:14 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 22:03:19 +0100 |
commit | 30c863fdfabed6e48575dda73f5418b593d3c03b (patch) | |
tree | 58a93807956ede1241040dbd716ce7b6d688f9d3 /libavformat | |
parent | 8c1c06937156fb8dba1f1266b985f8671c29f4e2 (diff) | |
parent | 3cd5828fc0007e6d056067444de053a34ddedd02 (diff) | |
download | ffmpeg-30c863fdfabed6e48575dda73f5418b593d3c03b.tar.gz |
Merge commit '3cd5828fc0007e6d056067444de053a34ddedd02'
* commit '3cd5828fc0007e6d056067444de053a34ddedd02':
rtpdec: Add missing trailing commas
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtpdec_dv.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_h264.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_hevc.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_latm.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_mpeg4.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_qcelp.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_xiph.c | 4 |
7 files changed, 8 insertions, 8 deletions
diff --git a/libavformat/rtpdec_dv.c b/libavformat/rtpdec_dv.c index 567a653020..1f5e3cf725 100644 --- a/libavformat/rtpdec_dv.c +++ b/libavformat/rtpdec_dv.c @@ -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, }; diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index 6b17f84d7e..1dc09111a2 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -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, }; diff --git a/libavformat/rtpdec_hevc.c b/libavformat/rtpdec_hevc.c index 2622cb4b2c..61dfc46b98 100644 --- a/libavformat/rtpdec_hevc.c +++ b/libavformat/rtpdec_hevc.c @@ -429,5 +429,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, }; diff --git a/libavformat/rtpdec_latm.c b/libavformat/rtpdec_latm.c index c3cb2f28d0..6483bd740f 100644 --- a/libavformat/rtpdec_latm.c +++ b/libavformat/rtpdec_latm.c @@ -183,5 +183,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, }; diff --git a/libavformat/rtpdec_mpeg4.c b/libavformat/rtpdec_mpeg4.c index 8696eb9440..ffa622f368 100644 --- a/libavformat/rtpdec_mpeg4.c +++ b/libavformat/rtpdec_mpeg4.c @@ -344,5 +344,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, }; diff --git a/libavformat/rtpdec_qcelp.c b/libavformat/rtpdec_qcelp.c index f2893499d5..7f5769f194 100644 --- a/libavformat/rtpdec_qcelp.c +++ b/libavformat/rtpdec_qcelp.c @@ -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, }; diff --git a/libavformat/rtpdec_xiph.c b/libavformat/rtpdec_xiph.c index 53b4975278..1d7bbee06f 100644 --- a/libavformat/rtpdec_xiph.c +++ b/libavformat/rtpdec_xiph.c @@ -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, }; |