Commit bee0f178 authored by takis's avatar takis

Remove the unnecessary masking when counting received packet types in the H.264

RTP parsing code.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9241 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2c947192
......@@ -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