summaryrefslogtreecommitdiffstats
path: root/libvo/matrixview.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-03 14:54:51 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-03 14:54:51 +0000
commita7be2e180bedebbf684514155869982ae72254c3 (patch)
tree2b297cf1566c920fa871fafb3a6117e5e62a02a7 /libvo/matrixview.h
parent1ebc2cbbd87deaf4306a963a1ff313a2076ec694 (diff)
downloadmpv-a7be2e180bedebbf684514155869982ae72254c3.tar.bz2
mpv-a7be2e180bedebbf684514155869982ae72254c3.tar.xz
Finally add matrixview vo.
Heavily cleaned up/fixed etc. by me, improvements are still possible though. Patch originally by Pigeon <pigeon at pigeond.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30182 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/matrixview.h')
-rw-r--r--libvo/matrixview.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libvo/matrixview.h b/libvo/matrixview.h
new file mode 100644
index 0000000000..db76729906
--- /dev/null
+++ b/libvo/matrixview.h
@@ -0,0 +1,12 @@
+#ifndef MPLAYER_MATRIXVIEW_H
+#define MPLAYER_MATRIXVIEW_H
+
+#include <stdint.h>
+void matrixview_init (int w, int h);
+void matrixview_reshape (int w, int h);
+void matrixview_draw (int w, int h, double currentTime, float frameTime, uint8_t *data);
+void matrixview_matrix_resize(int w, int h);
+void matrixview_contrast_set(float contrast);
+void matrixview_brightness_set(float brightness);
+
+#endif /* MPLAYER_MATRIXVIEW_H */