summaryrefslogtreecommitdiffstats
path: root/spudec.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-31 21:16:02 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-31 21:16:02 +0000
commitad7448b623929adb1f42fc05922283612ed028b1 (patch)
tree441883bb646882335c41ceabe2f5be6868b053da /spudec.c
parentec955f02fd4baab1f38e97c6bc8bfdbe352c917a (diff)
downloadmpv-ad7448b623929adb1f42fc05922283612ed028b1.tar.bz2
mpv-ad7448b623929adb1f42fc05922283612ed028b1.tar.xz
Reindent.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31296 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'spudec.c')
-rw-r--r--spudec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/spudec.c b/spudec.c
index c1fbbf1be8..b74f077ed6 100644
--- a/spudec.c
+++ b/spudec.c
@@ -1205,11 +1205,11 @@ void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigne
// For HD files in MKV the VobSub resolution can be higher though,
// see largeres_vobsub.mkv
if (this->orig_frame_width <= 720 && this->orig_frame_height <= 576) {
- this->orig_frame_width = 720;
- if (this->orig_frame_height == 480 || this->orig_frame_height == 240)
- this->orig_frame_height = 480;
- else
- this->orig_frame_height = 576;
+ this->orig_frame_width = 720;
+ if (this->orig_frame_height == 480 || this->orig_frame_height == 240)
+ this->orig_frame_height = 480;
+ else
+ this->orig_frame_height = 576;
}
}
else