Mercurial > libavformat.hg
comparison electronicarts.c @ 6248:e630da0f5861 libavformat
Add av_ prefix to bswap macros
author | mru |
---|---|
date | Sat, 10 Jul 2010 22:12:30 +0000 |
parents | 178de7695c6c |
children |
comparison
equal
deleted
inserted
replaced
6247:a64b9fa63635 | 6248:e630da0f5861 |
---|---|
299 blockid = get_le32(pb); | 299 blockid = get_le32(pb); |
300 size = get_le32(pb); | 300 size = get_le32(pb); |
301 if (i == 0) | 301 if (i == 0) |
302 ea->big_endian = size > 0x000FFFFF; | 302 ea->big_endian = size > 0x000FFFFF; |
303 if (ea->big_endian) | 303 if (ea->big_endian) |
304 size = bswap_32(size); | 304 size = av_bswap32(size); |
305 | 305 |
306 switch (blockid) { | 306 switch (blockid) { |
307 case ISNh_TAG: | 307 case ISNh_TAG: |
308 if (get_le32(pb) != EACS_TAG) { | 308 if (get_le32(pb) != EACS_TAG) { |
309 av_log (s, AV_LOG_ERROR, "unknown 1SNh headerid\n"); | 309 av_log (s, AV_LOG_ERROR, "unknown 1SNh headerid\n"); |