From a2ed9d553a54f48f771a74280fb63f95a8b228ae Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 15 Nov 2012 10:18:09 +0100 Subject: util: Remove pgm output in frame_mix function That should be up to the utility user, to use pgm_save afterwards. --- src/util.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h index e6f9bcf..8e0503a 100644 --- a/src/util.h +++ b/src/util.h @@ -3,8 +3,9 @@ void pgm_save(unsigned char *buf, int wrap, int xsize, int ysize, char *filename); + +/* Store half of frame_a and half of frame_b in frame_a */ void -frame_mix_pgm_save(struct video_frame *frame_a, struct video_frame *frame_b, - char *filename); +frame_mix(struct video_frame *frame_a, struct video_frame *frame_b); #endif /* _UTIL_H_ */ -- cgit