[FFmpeg-cvslog] avformat/movenc: workaround bug in "PathScale EKOPath(tm) Compiler Suite Version 4.0.12.1"
Michael Niedermayer
git at videolan.org
Wed Feb 4 17:17:51 CET 2015
ffmpeg | branch: release/1.2 | Michael Niedermayer <michaelni at gmx.at> | Sat Jan 10 03:43:54 2015 +0100| [b00a3bf3320645c16b312cd04b1fc2cf2934fae9] | committer: Michael Niedermayer
avformat/movenc: workaround bug in "PathScale EKOPath(tm) Compiler Suite Version 4.0.12.1"
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 7824dc5150c0ea44ffa7cd4d57803f9a9697e7d7)
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b00a3bf3320645c16b312cd04b1fc2cf2934fae9
---
libavformat/movenc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index dd7dd52..8186344 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1894,7 +1894,8 @@ static int mov_write_mvhd_tag(AVIOContext *pb, MOVMuxContext *mov)
}
version = max_track_len < UINT32_MAX ? 0 : 1;
- (version == 1) ? avio_wb32(pb, 120) : avio_wb32(pb, 108); /* size */
+ avio_wb32(pb, version == 1 ? 120 : 108); /* size */
+
ffio_wfourcc(pb, "mvhd");
avio_w8(pb, version);
avio_wb24(pb, 0); /* flags */
More information about the ffmpeg-cvslog
mailing list