2001-02-24 20:28:24 +00:00
|
|
|
/*
|
|
|
|
* video_out_pgm.c, pgm interface
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Hacked into mpeg2dec by
|
|
|
|
*
|
|
|
|
* Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
|
|
|
|
*
|
|
|
|
* 15 & 16 bpp support added by Franck Sicard <Franck.Sicard@solsoft.fr>
|
|
|
|
*
|
|
|
|
* Xv image suuport by Gerd Knorr <kraxel@goldbach.in-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2002-02-17 08:24:43 +00:00
|
|
|
#include <errno.h>
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "video_out.h"
|
|
|
|
#include "video_out_internal.h"
|
|
|
|
|
2002-11-11 15:22:10 +00:00
|
|
|
static vo_info_t info =
|
2001-02-24 20:28:24 +00:00
|
|
|
{
|
|
|
|
"MD5 sum",
|
|
|
|
"md5",
|
|
|
|
"walken",
|
|
|
|
""
|
|
|
|
};
|
|
|
|
|
2002-11-11 15:22:10 +00:00
|
|
|
LIBVO_EXTERN (md5)
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
extern vo_functions_t video_out_pgm;
|
2001-04-17 21:00:46 +00:00
|
|
|
extern char vo_pgm_filename[24];
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
static FILE * md5_file;
|
|
|
|
|
|
|
|
static uint32_t
|
2002-08-28 21:32:32 +00:00
|
|
|
config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format)
|
2001-02-24 20:28:24 +00:00
|
|
|
{
|
|
|
|
md5_file = fopen ("md5", "w");
|
2002-08-28 21:32:32 +00:00
|
|
|
return video_out_pgm.config (width, height, d_width,d_height,fullscreen, title, format);
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
|
2001-08-13 11:08:18 +00:00
|
|
|
static void draw_osd(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
static void flip_page (void)
|
|
|
|
{
|
|
|
|
char buf2[100];
|
|
|
|
FILE * f;
|
|
|
|
int i;
|
|
|
|
|
2001-04-17 21:00:46 +00:00
|
|
|
video_out_pgm.flip_page();
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-06-11 12:41:53 +00:00
|
|
|
snprintf (buf2, 100, "md5sum %s", vo_pgm_filename);
|
2001-02-24 20:28:24 +00:00
|
|
|
f = popen (buf2, "r");
|
|
|
|
i = fread (buf2, 1, sizeof(buf2), f);
|
|
|
|
pclose (f);
|
|
|
|
fwrite (buf2, 1, i, md5_file);
|
|
|
|
|
2001-04-17 21:00:46 +00:00
|
|
|
remove (vo_pgm_filename);
|
|
|
|
|
|
|
|
}
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-04-17 21:00:46 +00:00
|
|
|
//static uint32_t draw_slice(uint8_t * src[], uint32_t slice_num)
|
|
|
|
static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y)
|
|
|
|
{
|
|
|
|
return video_out_pgm.draw_slice(image,stride,w,h,x,y);
|
|
|
|
}
|
|
|
|
|
|
|
|
//extern uint32_t output_pgm_frame (char * fname, uint8_t * src[]);
|
|
|
|
|
|
|
|
static uint32_t draw_frame(uint8_t * src[])
|
|
|
|
{
|
2001-02-24 20:28:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
query_format(uint32_t format)
|
|
|
|
{
|
2002-02-09 00:47:26 +00:00
|
|
|
return video_out_pgm.control(VOCTRL_QUERY_FORMAT, &format);
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
uninit(void)
|
|
|
|
{
|
2001-04-17 21:00:46 +00:00
|
|
|
video_out_pgm.uninit();
|
|
|
|
fclose(md5_file);
|
2001-02-24 20:28:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-03 21:46:39 +00:00
|
|
|
static void check_events(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-01-26 16:01:26 +00:00
|
|
|
static uint32_t preinit(const char *arg)
|
|
|
|
{
|
2002-02-17 08:24:43 +00:00
|
|
|
if(arg)
|
|
|
|
{
|
|
|
|
printf("vo_md5: Unknown subdevice: %s\n",arg);
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
return 0;
|
2002-01-26 16:01:26 +00:00
|
|
|
}
|
2001-03-03 21:46:39 +00:00
|
|
|
|
2002-02-09 01:21:48 +00:00
|
|
|
static uint32_t control(uint32_t request, void *data, ...)
|
2002-01-26 16:01:26 +00:00
|
|
|
{
|
2002-02-09 00:47:26 +00:00
|
|
|
switch (request) {
|
|
|
|
case VOCTRL_QUERY_FORMAT:
|
|
|
|
return query_format(*((uint32_t*)data));
|
|
|
|
}
|
|
|
|
return VO_NOTIMPL;
|
2002-01-26 16:01:26 +00:00
|
|
|
}
|