comparison svq3.c @ 4364:05e932ddaaa9 libavcodec

rename BE/LE_8/16/32 to AV_RL/B_8/16/32
author alex
date Fri, 19 Jan 2007 22:12:59 +0000
parents 23da44e8fd05
children e0c94f1b8f55
comparison
equal deleted inserted replaced
4363:9b7662fa4905 4364:05e932ddaaa9
828 /* if a match was found, parse the extra data */ 828 /* if a match was found, parse the extra data */
829 if (!memcmp (extradata, "SEQH", 4)) { 829 if (!memcmp (extradata, "SEQH", 4)) {
830 830
831 GetBitContext gb; 831 GetBitContext gb;
832 832
833 size = BE_32(&extradata[4]); 833 size = AV_RB32(&extradata[4]);
834 init_get_bits (&gb, extradata + 8, size*8); 834 init_get_bits (&gb, extradata + 8, size*8);
835 835
836 /* 'frame size code' and optional 'width, height' */ 836 /* 'frame size code' and optional 'width, height' */
837 if (get_bits (&gb, 3) == 7) { 837 if (get_bits (&gb, 3) == 7) {
838 get_bits (&gb, 12); 838 get_bits (&gb, 12);