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
|
1094
|
50 snprintf (header, 1024, "P5\n\n%d %d\n255\n", width, height*3/2);
|
1
|
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
|
1094
|
65 snprintf (vo_pgm_filename, 24, "%08d.pgm", framenum++);
|
491
|
66
|
|
67 f = fopen (vo_pgm_filename, "wb"); if (f == NULL) return;
|
1
|
68 fwrite (header, strlen (header), 1, f);
|
491
|
69 fwrite (image, image_width, image_height*3/2, f);
|
1
|
70 fclose (f);
|
|
71
|
491
|
72 return;
|
|
73 }
|
|
74
|
|
75 static uint32_t draw_slice(uint8_t *srcimg[], int stride[], int w,int h,int x,int y)
|
|
76 {
|
|
77 int i;
|
|
78 // copy Y:
|
|
79 uint8_t *dst=image+image_width*y+x;
|
|
80 uint8_t *src=srcimg[0];
|
|
81 for(i=0;i<h;i++){
|
|
82 memcpy(dst,src,w);
|
|
83 src+=stride[0];
|
|
84 dst+=image_width;
|
|
85 }
|
|
86 {
|
|
87 // copy U+V:
|
|
88 uint8_t *src1=srcimg[1];
|
|
89 uint8_t *src2=srcimg[2];
|
|
90 uint8_t *dst=image+image_width*image_height+image_width*(y/2)+(x/2);
|
|
91 for(i=0;i<h/2;i++){
|
|
92 memcpy(dst,src1,w/2);
|
|
93 memcpy(dst+image_width/2,src2,w/2);
|
|
94 src1+=stride[1];
|
|
95 src2+=stride[2];
|
|
96 dst+=image_width;
|
|
97 }
|
|
98
|
|
99 }
|
|
100
|
1
|
101 return 0;
|
|
102 }
|
|
103
|
491
|
104
|
1
|
105 static uint32_t draw_frame(uint8_t * src[])
|
|
106 {
|
491
|
107 return 0;
|
1
|
108 }
|
|
109
|
|
110 static uint32_t
|
|
111 query_format(uint32_t format)
|
|
112 {
|
491
|
113 if(format==IMGFMT_YV12) return 1;
|
15
|
114 // switch(format){
|
|
115 // case IMGFMT_YV12:
|
1
|
116 // case IMGFMT_RGB|24:
|
|
117 // case IMGFMT_BGR|24:
|
15
|
118 // return 1;
|
|
119 // }
|
1
|
120 return 0;
|
|
121 }
|
|
122
|
|
123 static void
|
|
124 uninit(void)
|
|
125 {
|
491
|
126 if(image){ free(image);image=NULL;}
|
1
|
127 }
|
|
128
|
|
129
|
31
|
130 static void check_events(void)
|
|
131 {
|
|
132 }
|
1
|
133
|
31
|
134
|
|
135
|