diff shorten.c @ 8612:b20c590170cc libavcodec

remove ff_get_fourcc() and use AV_RL32() instead
author aurel
date Sat, 17 Jan 2009 12:21:01 +0000
parents 4525dcd81357
children 275e2256bb11
line wrap: on
line diff
--- a/shorten.c	Sat Jan 17 11:13:33 2009 +0000
+++ b/shorten.c	Sat Jan 17 12:21:01 2009 +0000
@@ -305,7 +305,7 @@
     {
         int maxnlpc = 0;
         /* shorten signature */
-        if (get_bits_long(&s->gb, 32) != bswap_32(ff_get_fourcc("ajkg"))) {
+        if (get_bits_long(&s->gb, 32) != bswap_32(AV_RL32("ajkg"))) {
             av_log(s->avctx, AV_LOG_ERROR, "missing shorten magic 'ajkg'\n");
             return -1;
         }