From 716f6b47f207075f609aa4a18542b71116dfe975 Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Thu, 7 Jun 2007 14:51:26 +0000 Subject: [PATCH] Remove the unnecessary masking when counting received packet types in the H.264 RTP parsing code. Originally committed as revision 9241 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtp_h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtp_h264.c b/libavformat/rtp_h264.c index d8cb883..564424d 100644 --- a/libavformat/rtp_h264.c +++ b/libavformat/rtp_h264.c @@ -285,7 +285,7 @@ static int h264_handle_packet(RTPDemuxContext * s, #ifdef DEBUG if (start_bit) - data->packet_types_received[nal_type & 0x1f]++; + data->packet_types_received[nal_type]++; #endif if(start_bit) { // copy in the start sequence, and the reconstructed nal.... -- 2.7.4