1
|
1 /*
|
|
2 * video_out_pgm.c, pgm interface
|
|
3 *
|
|
4 *
|
|
5 * Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved.
|
|
6 *
|
|
7 * Hacked into mpeg2dec by
|
|
8 *
|
|
9 * Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
|
|
10 *
|
|
11 * 15 & 16 bpp support added by Franck Sicard <Franck.Sicard@solsoft.fr>
|
|
12 *
|
|
13 * Xv image suuport by Gerd Knorr <kraxel@goldbach.in-berlin.de>
|
|
14 */
|
|
15
|
|
16 #include <stdio.h>
|
|
17 #include <stdlib.h>
|
|
18 #include <string.h>
|
|
19
|
|
20 #include "config.h"
|
|
21 #include "video_out.h"
|
|
22 #include "video_out_internal.h"
|
|
23
|
|
24 LIBVO_EXTERN (pgm)
|
|
25
|
|
26 static vo_info_t vo_info =
|
|
27 {
|
|
28 "PGM file",
|
|
29 "pgm",
|
|
30 "walken",
|
|
31 ""
|
|
32 };
|
|
33
|
|
34 static int image_width;
|
|
35 static int image_height;
|
|
36 static char header[1024];
|
491
|
37 static int framenum = 0;
|
|
38
|
|
39 static uint8_t *image=NULL;
|
|
40
|
|
41 char vo_pgm_filename[24];
|
1
|
42
|
|
43 static uint32_t
|
|
44 init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format)
|
|
45 {
|
|
46 image_height = height;
|
|
47 image_width = width;
|
491
|
48 image=malloc(width*height*3/2);
|
1
|
49
|
|
50 sprintf (header, "P5\n\n%d %d\n255\n", width, height*3/2);
|
|
51
|
|
52 return 0;
|
|
53 }
|
|
54
|
|
55 static const vo_info_t*
|
|
56 get_info(void)
|
|
57 {
|
|
58 return &vo_info;
|
|
59 }
|
|
60
|
|
61 static void flip_page (void)
|
|
62 {
|
|
63 FILE * f;
|
|
64 int i;
|
|
65
|
491
|
66 sprintf (vo_pgm_filename, "%08d.pgm", framenum++);
|
|
67
|
|
68 f = fopen (vo_pgm_filename, "wb"); if (f == NULL) return;
|
1
|
69 fwrite (header, strlen (header), 1, f);
|
491
|
70 fwrite (image, image_width, image_height*3/2, f);
|
1
|
71 fclose (f);
|
|
72
|
491
|
73 return;
|
|
74 }
|
|
75
|
|
76 static uint32_t draw_slice(uint8_t *srcimg[], int stride[], int w,int h,int x,int y)
|
|
77 {
|
|
78 int i;
|
|
79 // copy Y:
|
|
80 uint8_t *dst=image+image_width*y+x;
|
|
81 uint8_t *src=srcimg[0];
|
|
82 for(i=0;i<h;i++){
|
|
83 memcpy(dst,src,w);
|
|
84 src+=stride[0];
|
|
85 dst+=image_width;
|
|
86 }
|
|
87 {
|
|
88 // copy U+V:
|
|
89 uint8_t *src1=srcimg[1];
|
|
90 uint8_t *src2=srcimg[2];
|
|
91 uint8_t *dst=image+image_width*image_height+image_width*(y/2)+(x/2);
|
|
92 for(i=0;i<h/2;i++){
|
|
93 memcpy(dst,src1,w/2);
|
|
94 memcpy(dst+image_width/2,src2,w/2);
|
|
95 src1+=stride[1];
|
|
96 src2+=stride[2];
|
|
97 dst+=image_width;
|
|
98 }
|
|
99
|
|
100 }
|
|
101
|
1
|
102 return 0;
|
|
103 }
|
|
104
|
491
|
105
|
1
|
106 static uint32_t draw_frame(uint8_t * src[])
|
|
107 {
|
491
|
108 return 0;
|
1
|
109 }
|
|
110
|
|
111 static uint32_t
|
|
112 query_format(uint32_t format)
|
|
113 {
|
491
|
114 if(format==IMGFMT_YV12) return 1;
|
15
|
115 // switch(format){
|
|
116 // case IMGFMT_YV12:
|
1
|
117 // case IMGFMT_RGB|24:
|
|
118 // case IMGFMT_BGR|24:
|
15
|
119 // return 1;
|
|
120 // }
|
1
|
121 return 0;
|
|
122 }
|
|
123
|
|
124 static void
|
|
125 uninit(void)
|
|
126 {
|
491
|
127 if(image){ free(image);image=NULL;}
|
1
|
128 }
|
|
129
|
|
130
|
31
|
131 static void check_events(void)
|
|
132 {
|
|
133 }
|
1
|
134
|
31
|
135
|
|
136
|