Commit 8c49340b authored by Michael Niedermayer's avatar Michael Niedermayer

libavformat/ty: use decimal constant for shift

This was the only case in the source that uses a hexadecimal shift value.
The change removed a special case in respect to greping
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent ad89e203
...@@ -254,7 +254,7 @@ static int analyze_chunk(AVFormatContext *s, const uint8_t *chunk) ...@@ -254,7 +254,7 @@ static int analyze_chunk(AVFormatContext *s, const uint8_t *chunk)
if (data_offset + hdrs[i].rec_size > CHUNK_SIZE) if (data_offset + hdrs[i].rec_size > CHUNK_SIZE)
break; break;
if ((hdrs[i].subrec_type << 0x08 | hdrs[i].rec_type) == 0x3c0 && hdrs[i].rec_size > 15) { if ((hdrs[i].subrec_type << 8 | hdrs[i].rec_type) == 0x3c0 && hdrs[i].rec_size > 15) {
/* first make sure we're aligned */ /* first make sure we're aligned */
int pes_offset = find_es_header(ty_MPEGAudioPacket, int pes_offset = find_es_header(ty_MPEGAudioPacket,
&chunk[data_offset], 5); &chunk[data_offset], 5);
......
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