mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
rename BE/LE_8/16/32 to AV_RL/B_8/16/32
Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -209,7 +209,7 @@ static int h264_handle_packet(RTPDemuxContext * s,
|
||||
int src_len= len;
|
||||
|
||||
do {
|
||||
uint16_t nal_size = BE_16(src); // this going to be a problem if unaligned (can it be?)
|
||||
uint16_t nal_size = AV_RB16(src); // this going to be a problem if unaligned (can it be?)
|
||||
|
||||
// consume the length of the aggregate...
|
||||
src += 2;
|
||||
|
||||
Reference in New Issue
Block a user