diff options
author | Kevin Wheatley <kevin.j.wheatley@gmail.com> | 2015-02-16 17:05:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-16 18:31:59 +0100 |
commit | 88868d81a5d7c4b1ee88f204524c1076e337147e (patch) | |
tree | fa24b3087162b8c21eecb43d421a219cd033cec3 /libavformat/rtpdec_h264.c | |
parent | f9240ec01abb097263fe578d2b6fb076bb7b9263 (diff) | |
download | ffmpeg-88868d81a5d7c4b1ee88f204524c1076e337147e.tar.gz |
avformat/rtpdec_h264: fix compile failure with -DDEBUG
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec_h264.c')
-rw-r--r-- | libavformat/rtpdec_h264.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index 89053efbdf..24b701ceb2 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -177,7 +177,7 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s, return 0; } -static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt, +static int h264_handle_packet_stap_a(AVFormatContext *ctx, PayloadContext *data, AVPacket *pkt, const uint8_t *buf, int len) { int pass = 0; @@ -234,7 +234,7 @@ static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt, return 0; } -static int h264_handle_packet_fu_a(AVFormatContext *ctx, AVPacket *pkt, +static int h264_handle_packet_fu_a(AVFormatContext *ctx, PayloadContext *data, AVPacket *pkt, const uint8_t *buf, int len) { uint8_t fu_indicator, fu_header, start_bit, nal_type, nal; @@ -308,7 +308,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data, buf++; len--; // first we are going to figure out the total size - result = h264_handle_packet_stap_a(ctx, pkt, buf, len); + result = h264_handle_packet_stap_a(ctx, data, pkt, buf, len); break; case 25: // STAP-B @@ -322,7 +322,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data, break; case 28: // FU-A (fragmented nal) - result = h264_handle_packet_fu_a(ctx, pkt, buf, len); + result = h264_handle_packet_fu_a(ctx, data, pkt, buf, len); break; case 30: // undefined |