Skip to content

Commit

Permalink
Update parser_avc_dec.c
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
ShaoWeiguo committed Oct 9, 2020
1 parent f3bd1c4 commit 6bd15a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/esparser/parser_avc_dec.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ parse_sequence_parameter_set(avc_decode_t *dec, bbio_handle_t bs)
DPRINTF(NULL, " profile_idc: %u\n", temp1);
if (temp1 > 224 || cpbBrNalfactorTbl[temp1] == 0)
{
msglog(NULL, MSGLOG_ERR, "can handle the profile\n");
msglog(NULL, MSGLOG_ERR, "can't handle the profile\n");
return EMA_MP4_MUXED_ES_ERR;
}

Expand All @@ -640,7 +640,7 @@ parse_sequence_parameter_set(avc_decode_t *dec, bbio_handle_t bs)
DPRINTF(NULL, " level_idc: %u\n", temp3);
if (temp3 > SUPPORTED_LEVEL || MaxBRTbl[temp3] == 0)
{
msglog(NULL, MSGLOG_ERR, "can handle the level\n");
msglog(NULL, MSGLOG_ERR, "can't handle the level\n");
return EMA_MP4_MUXED_ES_ERR;
}

Expand Down

0 comments on commit 6bd15a5

Please sign in to comment.