Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2015-09-26 13:06:44 +0300
committerKacper Michajłow <kasper93@gmail.com>2015-10-04 20:08:43 +0300
commit1588ed1595f691418780e781b0354b4be9925a60 (patch)
treeea0e96911a9bcecde75a362612e499a0df7aae5f /src/SubPic
parent9e138596daf28b46e03660c1f3a5ef0390d6c7cb (diff)
ISubRender: Fix typo.
Diffstat (limited to 'src/SubPic')
-rw-r--r--src/SubPic/ISubRender.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SubPic/ISubRender.h b/src/SubPic/ISubRender.h
index ad71f59e2..5b5e55637 100644
--- a/src/SubPic/ISubRender.h
+++ b/src/SubPic/ISubRender.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2013 see Authors.txt
+ * (C) 2006-2013, 2015 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -32,7 +32,7 @@ public IUnknown {
// destination video rectangle, will be inside (0, 0)-(width, height)
// width,height is the size of the entire output window
STDMETHOD(Render)(REFERENCE_TIME rtStart,
- int left, int top, int bottom, int right,
+ int left, int top, int right, int bottom,
int width, int height) PURE;
};