summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_hevc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2014-08-30 12:33:28 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2014-08-30 13:01:51 +0200
commitf22c24bd7a57eca27ccc400dbb334b20db5fb050 (patch)
tree4e6f3c95d82333f2440fffc132fbb3beba93b5ef /libavformat/rtpdec_hevc.c
parent494cbc4238db4db1f3bd2104e15bee4498b40cb4 (diff)
lavf/rtpdec_hevc: Fix compilation with -DDEBUG.
Diffstat (limited to 'libavformat/rtpdec_hevc.c')
-rw-r--r--libavformat/rtpdec_hevc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/rtpdec_hevc.c b/libavformat/rtpdec_hevc.c
index 2cc76dcb0d..4504e1202c 100644
--- a/libavformat/rtpdec_hevc.c
+++ b/libavformat/rtpdec_hevc.c
@@ -128,7 +128,7 @@ static av_cold int hevc_sdp_parse_fmtp_config(AVFormatContext *s,
hevc_data->using_donl_field = 1;
#ifdef DEBUG
- av_log(s, AV_LOG_DEBUG, "SDP: found sprop-max-don-diff in SDP, DON field usage is: %d\n", hevc_data->using_dons);
+ av_log(s, AV_LOG_DEBUG, "SDP: found sprop-max-don-diff in SDP, DON field usage is: %d\n", hevc_data->using_donl_field);
#endif
}
@@ -138,7 +138,7 @@ static av_cold int hevc_sdp_parse_fmtp_config(AVFormatContext *s,
hevc_data->using_donl_field = 1;
#ifdef DEBUG
- av_log(s, AV_LOG_DEBUG, "SDP: found sprop-depack-buf-nalus in SDP, DON field usage is: %d\n", hevc_data->using_dons);
+ av_log(s, AV_LOG_DEBUG, "SDP: found sprop-depack-buf-nalus in SDP, DON field usage is: %d\n", hevc_data->using_donl_field);
#endif
}
@@ -295,7 +295,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
/* A/V packet: copy NAL unit data */
memcpy(pkt->data + sizeof(start_sequence), buf, len);
- COUNT_HEVC_NAL_TYPE(data, nal_type);
+ COUNT_HEVC_NAL_TYPE(rtp_hevc_ctx, nal_type);
break;
/* fragmentation unit (FU) */
@@ -367,7 +367,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
}
if(!res){
- COUNT_HEVC_NAL_TYPE(data, fu_type);
+ COUNT_HEVC_NAL_TYPE(rtp_hevc_ctx, fu_type);
}
break;