vp9_superframe: fix endianness of size markers.

This commit is contained in:
Ronald S. Bultje 2016-03-11 14:22:38 -05:00
parent 2e6636aa87
commit abedde65d1
1 changed files with 3 additions and 3 deletions

View File

@ -82,13 +82,13 @@ static int merge_superframe(const struct CachedBuf *in, int n_in,
wloop(mag, *ptr = in[n].size); wloop(mag, *ptr = in[n].size);
break; break;
case 1: case 1:
wloop(mag, AV_WB16(ptr, in[n].size)); wloop(mag, AV_WL16(ptr, in[n].size));
break; break;
case 2: case 2:
wloop(mag, AV_WB24(ptr, in[n].size)); wloop(mag, AV_WL24(ptr, in[n].size));
break; break;
case 3: case 3:
wloop(mag, AV_WB32(ptr, in[n].size)); wloop(mag, AV_WL32(ptr, in[n].size));
break; break;
} }
*ptr++ = marker; *ptr++ = marker;