use AV_RB32, swf_mp3_info may be replaced with mpa_decoder_header
authorAlex Beregszaszi <alex@rtfs.hu>
Sun, 25 Feb 2007 14:13:12 +0000 (14:13 +0000)
committerAlex Beregszaszi <alex@rtfs.hu>
Sun, 25 Feb 2007 14:13:12 +0000 (14:13 +0000)
Originally committed as revision 8123 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/swf.c

index 3195f8c58a0e8a967fb5df7b01501c5b7d085a4a..703aa6589c97e0bd3b9013f4f48ef5b0db01b4ae 100644 (file)
@@ -118,8 +118,7 @@ static const int sBitsPerSlot[3] = {
 
 static int swf_mp3_info(void *data, int *byteSize, int *samplesPerFrame, int *sampleRate, int *isMono )
 {
-    uint8_t *dataTmp = (uint8_t *)data;
-    uint32_t header = ( (uint32_t)dataTmp[0] << 24 ) | ( (uint32_t)dataTmp[1] << 16 ) | ( (uint32_t)dataTmp[2] << 8 ) | (uint32_t)dataTmp[3];
+    uint32_t header = AV_RB32(data);
     int layerID = 3 - ((header >> 17) & 0x03);
     int bitRateID = ((header >> 12) & 0x0f);
     int sampleRateID = ((header >> 10) & 0x03);