mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 13:35:13 +00:00
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
This commit is contained in:
parent
7699645e7d
commit
716f6b47f2
@ -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....
|
||||
|
Loading…
Reference in New Issue
Block a user