Hi, Le mar. 14 avr. 2020 à 12:25, Christophe Gisquet <[email protected]> a écrit : > if (is_le) > - s->cache |= (cache_type)AV_RL_HALF(s->ptr) << s->bits_left; > + s->cache |= (cache_type)AV_RL_ALL(s->ptr) << s->bits_left; > else > - s->cache |= (cache_type)AV_RB_HALF(s->ptr) << (BITSTREAM_HBITS - > s->bits_left);
After this, AV_R*_HALF becomes unused, so I'll update the patch to remove them, in addition to any change asked/suggested during review. -- Christophe _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
