mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
rtpdec_h264: Convert commented out code into setting an unused variable
It is worth keeping instead of removing, in case reading this bit becomes necessary at some later point. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
f0ccd53a3b
commit
dee48d095d
@ -265,7 +265,7 @@ static int h264_handle_packet(AVFormatContext *ctx,
|
||||
uint8_t fu_indicator = nal;
|
||||
uint8_t fu_header = *buf;
|
||||
uint8_t start_bit = fu_header >> 7;
|
||||
// uint8_t end_bit = (fu_header & 0x40) >> 6;
|
||||
uint8_t av_unused end_bit = (fu_header & 0x40) >> 6;
|
||||
uint8_t nal_type = (fu_header & 0x1f);
|
||||
uint8_t reconstructed_nal;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user