mirror of
https://github.com/mpv-player/mpv
synced 2025-01-06 23:20:15 +00:00
eb6fc7e99e
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30195 b3059339-0415-0410-9bf9-f77b7e298cf2
15 lines
444 B
C
15 lines
444 B
C
#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 */
|