summaryrefslogtreecommitdiff
path: root/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'frame.h')
-rw-r--r--frame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/frame.h b/frame.h
index 597b0f3..0f894f4 100644
--- a/frame.h
+++ b/frame.h
@@ -32,12 +32,12 @@ struct Frame {
uint32_t width;
uint32_t height;
uint32_t fourcc;
- size_t nplanes;
+ uint32_t nplanes;
struct FramePlane planes[4];
};
struct Frame* FrameCreate(uint32_t width, uint32_t height, uint32_t fourcc,
- size_t nplanes, const struct FramePlane* planes);
+ uint32_t nplanes, const struct FramePlane* planes);
void FrameDestroy(struct Frame** frame);
#endif // RECEIVER_FRAME_H_