This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
In mov muxer, write reduced sample aspect ratio values in pasp
Originally committed as revision 25082 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Baptiste Coudurier
15 years ago
parent
0e7d436d92
commit
6bd296f1e4
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavformat/movenc.c
+ 2
- 2
libavformat/movenc.c
View File
@@ -755,8 +755,8 @@ static int mov_write_pasp_tag(ByteIOContext *pb, MOVTrack *track)
put_be32(pb, 16);
put_tag(pb, "pasp");
put_be32(pb,
track->enc->
sa
mple_aspect_
r
atio
.num);
put_be32(pb,
track->enc->
sa
mple_aspect_
r
atio
.den);
put_be32(pb, sar.num);
put_be32(pb, sar.den);
return 16;
}
Write
Preview
Loading…
Cancel
Save