1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00

mp_image: use uint8_t instead of unsigned char for plane pointers

Purely cosmetic.
This commit is contained in:
wm4 2012-10-27 17:59:16 +02:00
parent d072e857d7
commit 1ba8090df7

View File

@ -22,6 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include "mp_msg.h"
//--------- codec's requirements (filled by the codec/vf) ---------
@ -104,7 +105,7 @@ typedef struct mp_image {
unsigned int imgfmt;
int width,height; // stored dimensions
int w,h; // visible dimensions
unsigned char* planes[MP_MAX_PLANES];
uint8_t *planes[MP_MAX_PLANES];
int stride[MP_MAX_PLANES];
char * qscale;
int qstride;