mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-02 09:57:44 +00:00
Add av_ prefix to bswap macros
Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e6b22522c9
commit
8fc0162ac4
51 changed files with 175 additions and 175 deletions
|
@ -170,7 +170,7 @@ void ff_asfcrypt_dec(const uint8_t key[20], uint8_t *data, int len) {
|
|||
ms_state = multiswap_enc(ms_keys, ms_state, AV_RL64(qwords));
|
||||
multiswap_invert_keys(ms_keys);
|
||||
packetkey = (packetkey << 32) | (packetkey >> 32);
|
||||
packetkey = le2ne_64(packetkey);
|
||||
packetkey = av_le2ne64(packetkey);
|
||||
packetkey = multiswap_dec(ms_keys, ms_state, packetkey);
|
||||
AV_WL64(qwords, packetkey);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue