mkvmuxer: fix style guide violations
fix a few style guide violations in mkvmuxer.cpp Change-Id: If800a5d6851f8ba4b904341fd054e1c2091e281e
This commit is contained in:
parent
568504e64e
commit
1c36c24694
@ -858,19 +858,19 @@ bool VideoTrack::Write(IMkvWriter* writer) const {
|
||||
if (!WriteEbmlElement(writer, kMkvDisplayHeight, display_height_))
|
||||
return false;
|
||||
}
|
||||
if (crop_left_ > 0){
|
||||
if (crop_left_ > 0) {
|
||||
if (!WriteEbmlElement(writer, kMkvPixelCropLeft, crop_left_))
|
||||
return false;
|
||||
}
|
||||
if (crop_right_ > 0){
|
||||
if (crop_right_ > 0) {
|
||||
if (!WriteEbmlElement(writer, kMkvPixelCropRight, crop_right_))
|
||||
return false;
|
||||
}
|
||||
if (crop_top_ > 0){
|
||||
if (crop_top_ > 0) {
|
||||
if (!WriteEbmlElement(writer, kMkvPixelCropTop, crop_top_))
|
||||
return false;
|
||||
}
|
||||
if (crop_bottom_ > 0){
|
||||
if (crop_bottom_ > 0) {
|
||||
if (!WriteEbmlElement(writer, kMkvPixelCropBottom, crop_bottom_))
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user