shorten: trivial simplification of signature check

Originally committed as revision 16908 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2009-01-31 22:30:49 +00:00
parent f579d24bad
commit a95d00b287
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ static int shorten_decode_frame(AVCodecContext *avctx,
{
int maxnlpc = 0;
/* shorten signature */
if (get_bits_long(&s->gb, 32) != bswap_32(AV_RL32("ajkg"))) {
if (get_bits_long(&s->gb, 32) != AV_RB32("ajkg")) {
av_log(s->avctx, AV_LOG_ERROR, "missing shorten magic 'ajkg'\n");
return -1;
}