[FFmpeg-cvslog] Rename remaining get_le32 to avio_rl32.

Clément Bœsch git at videolan.org
Mon Nov 14 07:26:16 CET 2011


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Mon Nov 14 01:37:06 2011 +0100| [07c7ffc04b5f16e73bd6d8439580683d01e0334d] | committer: Clément Bœsch

Rename remaining get_le32 to avio_rl32.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=07c7ffc04b5f16e73bd6d8439580683d01e0334d
---

 libavformat/act.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/act.c b/libavformat/act.c
index 2c80480..0c41ba0 100644
--- a/libavformat/act.c
+++ b/libavformat/act.c
@@ -74,7 +74,7 @@ static int read_header(AVFormatContext *s,
         return AVERROR(ENOMEM);
 
     avio_skip(pb, 16);
-    size=get_le32(pb);
+    size=avio_rl32(pb);
     ff_get_wav_header(pb, st->codec, size);
 
     /*
@@ -95,7 +95,7 @@ static int read_header(AVFormatContext *s,
     avio_seek(pb, 257, SEEK_SET);
     msec=avio_rl16(pb);
     sec=avio_r8(pb);
-    min=get_le32(pb);
+    min=avio_rl32(pb);
 
     st->duration = av_rescale(1000*(min*60+sec)+msec, st->codec->sample_rate, 1000 * st->codec->frame_size);
 



More information about the ffmpeg-cvslog mailing list