summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-24 22:03:14 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-24 22:03:19 +0100
commit30c863fdfabed6e48575dda73f5418b593d3c03b (patch)
tree58a93807956ede1241040dbd716ce7b6d688f9d3 /libavformat/rtpdec_h264.c
parent8c1c06937156fb8dba1f1266b985f8671c29f4e2 (diff)
parent3cd5828fc0007e6d056067444de053a34ddedd02 (diff)
Merge commit '3cd5828fc0007e6d056067444de053a34ddedd02'
* commit '3cd5828fc0007e6d056067444de053a34ddedd02': rtpdec: Add missing trailing commas Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec_h264.c')
-rw-r--r--libavformat/rtpdec_h264.c2
1 files changed, 1 insertions, 1 deletions
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,
};