# HG changeset patch # User takis # Date 1181227886 0 # Node ID cfd57cd5252bbdc75b21c9c7ece73910cf327904 # Parent a661d4e7cab2218c6d64c92db4290abf1c5f4580 Remove the unnecessary masking when counting received packet types in the H.264 RTP parsing code. diff -r a661d4e7cab2 -r cfd57cd5252b rtp_h264.c --- a/rtp_h264.c Thu Jun 07 14:48:29 2007 +0000 +++ b/rtp_h264.c Thu Jun 07 14:51:26 2007 +0000 @@ -285,7 +285,7 @@ #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....