diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-06-07 14:51:26 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-06-07 14:51:26 +0000 |
commit | 716f6b47f207075f609aa4a18542b71116dfe975 (patch) | |
tree | 7f229cd909eb85fccb2bfc80a6a1445d8894b274 | |
parent | 7699645e7d5e8ffc8d668c0319ffcd680c3424da (diff) | |
download | ffmpeg-716f6b47f207075f609aa4a18542b71116dfe975.tar.gz |
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
-rw-r--r-- | libavformat/rtp_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtp_h264.c b/libavformat/rtp_h264.c index d8cb883091..564424d5d3 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.... |