mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
rtpdec: Add missing trailing commas
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
04a1be8e28
commit
3cd5828fc0
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user