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