Browse Source

Remove the unnecessary masking when reconstructing the NAL unit header in the

H.264 RTP parsing code.

Originally committed as revision 9240 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 18 years ago
parent
commit
7699645e7d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rtp_h264.c

+ 1
- 1
libavformat/rtp_h264.c View File

@@ -277,7 +277,7 @@ static int h264_handle_packet(RTPDemuxContext * s,

// reconstruct this packet's true nal; only the data follows..
reconstructed_nal = fu_indicator & (0xe0); // the original nal forbidden bit and NRI are stored in this packet's nal;
reconstructed_nal |= (nal_type & 0x1f);
reconstructed_nal |= nal_type;

// skip the fu_header...
buf++;


Loading…
Cancel
Save