comparison svq3.c @ 1881:39ad6cd5d4a6 libavcodec

remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG -> MKTAG/MKBETAG
author melanson
date Sun, 14 Mar 2004 04:04:08 +0000
parents 838c18d1e7fc
children 12f260596631
comparison
equal deleted inserted replaced
1880:56ccec0d08bd 1881:39ad6cd5d4a6
797 for (m = 0; m < avctx->extradata_size; m++) { 797 for (m = 0; m < avctx->extradata_size; m++) {
798 if (!memcmp (extradata, "SEQH", 4)) 798 if (!memcmp (extradata, "SEQH", 4))
799 break; 799 break;
800 extradata++; 800 extradata++;
801 } 801 }
802 802 size = BE_32(&extradata[4]);
803 size = (extradata[4] << 24) | (extradata[5] << 16) |
804 (extradata[6] << 8) | extradata[7];
805 803
806 /* if a match was found, parse the extra data */ 804 /* if a match was found, parse the extra data */
807 if (!memcmp (extradata, "SEQH", 4)) { 805 if (!memcmp (extradata, "SEQH", 4)) {
808 806
809 GetBitContext gb; 807 GetBitContext gb;