Commit 716f6b47 authored by Panagiotis Issaris's avatar Panagiotis Issaris

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
parent 7699645e
......@@ -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....
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment