annotate libmpcodecs/ve_vfw.c @ 18715:30d7ddf08889

Fix window position when changing videos while in fullscreen and for window managers that modify position on Map. Oked by Alexander Strasser.
author reimar
date Thu, 15 Jun 2006 08:00:37 +0000
parents bcd805923554
children a1807995e2ab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
1 #include <stdio.h>
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
2 #include <stdlib.h>
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
3 #include <string.h>
7238
6f44ed6c4568 FreeBSD fix
nexus
parents: 7231
diff changeset
4 #include <unistd.h>
8585
27da710563c2 the long-waited MUXER layer, and new MPEG-PS muxer
arpi
parents: 8123
diff changeset
5 #include <inttypes.h>
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
6
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15212
diff changeset
7 #include "config.h"
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
8 #ifdef USE_WIN32DLL
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
9
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 15212
diff changeset
10 #include "mp_msg.h"
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
11 #include "help_mp.h"
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
12
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
13 #include "codec-cfg.h"
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
14 //#include "stream.h"
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
15 //#include "demuxer.h"
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
16 //#include "stheader.h"
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
17
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
18 #include "loader.h"
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
19 //#include "wine/mmreg.h"
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
20 #include "wine/vfw.h"
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
21 #include "wine/avifmt.h"
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
22
5607
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
23 #include "img_format.h"
1972c3475d93 mp_image.h and img_format.h moved to libmpcodecs
arpi
parents: 5565
diff changeset
24 #include "mp_image.h"
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
25 #include "vf.h"
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
26
8585
27da710563c2 the long-waited MUXER layer, and new MPEG-PS muxer
arpi
parents: 8123
diff changeset
27 #include "muxer.h"
27da710563c2 the long-waited MUXER layer, and new MPEG-PS muxer
arpi
parents: 8123
diff changeset
28
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
29 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
30
6083
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
31 static char *vfw_param_codec = NULL;
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
32
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 9014
diff changeset
33 #include "m_option.h"
6083
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
34
10594
57bdcdb061d7 Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
alex
parents: 9014
diff changeset
35 m_option_t vfwopts_conf[]={
6083
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
36 {"codec", &vfw_param_codec, CONF_TYPE_STRING, 0, 0, 0, NULL},
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
37 {NULL, NULL, 0, 0, 0, 0, NULL}
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
38 };
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
39
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
40 struct vf_priv_s {
8585
27da710563c2 the long-waited MUXER layer, and new MPEG-PS muxer
arpi
parents: 8123
diff changeset
41 muxer_stream_t* mux;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
42 BITMAPINFOHEADER* bih;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
43 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
44
7557
f296ff05bcd0 warning fixes
arpi
parents: 7390
diff changeset
45 static HIC encoder_hic;
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
46 static void* encoder_buf=NULL;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
47 static int encoder_buf_size=0;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
48 static int encoder_frameno=0;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
49
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
50 //int init_vfw_encoder(char *dll_name, BITMAPINFOHEADER *input_bih, BITMAPINFOHEADER *output_bih)
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
51 static BITMAPINFOHEADER* vfw_open_encoder(char *dll_name, BITMAPINFOHEADER *input_bih,unsigned int out_fourcc)
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
52 {
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
53 HRESULT ret;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
54 BITMAPINFOHEADER* output_bih=NULL;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
55 int temp_len;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
56
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
57 //sh_video = malloc(sizeof(sh_video_t));
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
58
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
59 mp_msg(MSGT_WIN32,MSGL_V,"======= Win32 (VFW) VIDEO Encoder init =======\n");
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
60
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
61 // memset(&sh_video->o_bih, 0, sizeof(BITMAPINFOHEADER));
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
62 // output_bih->biSize = sizeof(BITMAPINFOHEADER);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
63
7390
2357ee501582 fixed to comply with new loader
alex
parents: 7368
diff changeset
64 // encoder_hic = ICOpen( 0x63646976, out_fourcc, ICMODE_COMPRESS);
7557
f296ff05bcd0 warning fixes
arpi
parents: 7390
diff changeset
65 encoder_hic = ICOpen( (long) dll_name, out_fourcc, ICMODE_COMPRESS);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
66 if(!encoder_hic){
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
67 mp_msg(MSGT_WIN32,MSGL_ERR,"ICOpen failed! unknown codec / wrong parameters?\n");
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
68 return NULL;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
69 }
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
70 mp_msg(MSGT_WIN32,MSGL_INFO,"HIC: %x\n", encoder_hic);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
71
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
72 #if 1
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
73 {
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
74 ICINFO icinfo;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
75
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
76 ret = ICGetInfo(encoder_hic, &icinfo, sizeof(ICINFO));
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
77 mp_msg(MSGT_WIN32,MSGL_INFO,"%ld - %ld - %d\n", ret, icinfo.dwSize, sizeof(ICINFO));
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
78 mp_msg(MSGT_WIN32,MSGL_INFO,MSGTR_MPCODECS_CompressorType, icinfo.fccType);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
79 mp_msg(MSGT_WIN32,MSGL_INFO,MSGTR_MPCODECS_CompressorSubtype, icinfo.fccHandler);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
80 mp_msg(MSGT_WIN32,MSGL_INFO,MSGTR_MPCODECS_CompressorFlags,
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
81 icinfo.dwFlags, icinfo.dwVersion, icinfo.dwVersionICM);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
82 //printf("Compressor name: %s\n", icinfo.szName);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
83 //printf("Compressor description: %s\n", icinfo.szDescription);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
84
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
85 mp_msg(MSGT_WIN32,MSGL_INFO,MSGTR_MPCODECS_Flags);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
86 if (icinfo.dwFlags & VIDCF_QUALITY)
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
87 mp_msg(MSGT_WIN32,MSGL_INFO,MSGTR_MPCODECS_Quality);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
88 if (icinfo.dwFlags & VIDCF_FASTTEMPORALD)
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
89 mp_msg(MSGT_WIN32,MSGL_INFO," fast-decompr");
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
90 if (icinfo.dwFlags & VIDCF_QUALITYTIME)
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
91 mp_msg(MSGT_WIN32,MSGL_INFO," temp-quality");
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
92 mp_msg(MSGT_WIN32,MSGL_INFO,"\n");
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
93 }
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
94 #endif
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
95
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
96 temp_len = ICCompressGetFormatSize(encoder_hic, input_bih);
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
97 mp_msg(MSGT_WIN32,MSGL_INFO,"ICCompressGetFormatSize ret: %d\n", temp_len);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
98
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
99 if (temp_len < sizeof(BITMAPINFOHEADER)) temp_len=sizeof(BITMAPINFOHEADER);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
100
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
101 output_bih = malloc(temp_len+4);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
102 memset(output_bih,0,temp_len);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
103 output_bih->biSize = temp_len; //sizeof(BITMAPINFOHEADER);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
104
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
105 return output_bih;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
106 }
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
107
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
108 static int vfw_start_encoder(BITMAPINFOHEADER *input_bih, BITMAPINFOHEADER *output_bih){
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
109 HRESULT ret;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
110 int temp_len=output_bih->biSize;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
111 int i;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
112
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
113 ret = ICCompressGetFormat(encoder_hic, input_bih, output_bih);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
114 if(ret < 0){
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
115 unsigned char* temp=(unsigned char*)output_bih;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
116 mp_msg(MSGT_WIN32,MSGL_ERR,"ICCompressGetFormat failed: Error %d (0x%X)\n", (int)ret, (int)ret);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
117 for (i=0; i < temp_len; i++) mp_msg(MSGT_WIN32, MSGL_DBG2, "%02x ", temp[i]);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
118 return 0;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
119 }
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
120 mp_msg(MSGT_WIN32,MSGL_V,"ICCompressGetFormat OK\n");
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
121
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
122 if (temp_len > sizeof(BITMAPINFOHEADER))
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
123 {
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
124 unsigned char* temp=(unsigned char*)output_bih;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
125 mp_msg(MSGT_WIN32, MSGL_V, "Extra info in o_bih (%d bytes)!\n",
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
126 temp_len-sizeof(BITMAPINFOHEADER));
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
127 for(i=sizeof(output_bih);i<temp_len;i++) mp_msg(MSGT_WIN32, MSGL_DBG2, "%02X ",temp[i]);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
128 }
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
129
17969
843e0427b5b9 Change 'if(verbose)' to the more appropriate mp_msg_test.
diego
parents: 17906
diff changeset
130 // if( mp_msg_test(MSGT_WIN32,MSGL_V) ) {
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
131 printf("Starting compression:\n");
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
132 printf(" Input format:\n");
8123
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
133 printf(" biSize %d\n", input_bih->biSize);
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
134 printf(" biWidth %d\n", input_bih->biWidth);
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
135 printf(" biHeight %d\n", input_bih->biHeight);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
136 printf(" biPlanes %d\n", input_bih->biPlanes);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
137 printf(" biBitCount %d\n", input_bih->biBitCount);
8123
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
138 printf(" biCompression 0x%x ('%.4s')\n", input_bih->biCompression, (char *)&input_bih->biCompression);
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
139 printf(" biSizeImage %d\n", input_bih->biSizeImage);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
140 printf(" Output format:\n");
8123
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
141 printf(" biSize %d\n", output_bih->biSize);
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
142 printf(" biWidth %d\n", output_bih->biWidth);
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
143 printf(" biHeight %d\n", output_bih->biHeight);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
144 printf(" biPlanes %d\n", output_bih->biPlanes);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
145 printf(" biBitCount %d\n", output_bih->biBitCount);
8123
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
146 printf(" biCompression 0x%x ('%.4s')\n", output_bih->biCompression, (char *)&output_bih->biCompression);
9fc45fe0d444 *HUGE* set of compiler warning fixes, unused variables removal
arpi
parents: 7557
diff changeset
147 printf(" biSizeImage %d\n", output_bih->biSizeImage);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
148 // }
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
149
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
150 output_bih->biWidth=input_bih->biWidth;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
151 output_bih->biHeight=input_bih->biHeight;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
152
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
153 ret = ICCompressQuery(encoder_hic, input_bih, output_bih);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
154 if(ret){
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
155 mp_msg(MSGT_WIN32,MSGL_ERR,"ICCompressQuery failed: Error %d\n", (int)ret);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
156 return 0;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
157 } else
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
158 mp_msg(MSGT_WIN32,MSGL_V,"ICCompressQuery OK\n");
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
159
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
160 ret = ICCompressBegin(encoder_hic, input_bih, output_bih);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
161 if(ret){
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
162 mp_msg(MSGT_WIN32,MSGL_ERR,"ICCompressBegin failed: Error %d\n", (int)ret);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
163 // return 0;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
164 } else
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
165 mp_msg(MSGT_WIN32,MSGL_V,"ICCompressBegin OK\n");
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
166 mp_msg(MSGT_WIN32,MSGL_INFO," Output format after query/begin:\n");
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
167 mp_msg(MSGT_WIN32,MSGL_INFO," biSize %d\n", output_bih->biSize);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
168 mp_msg(MSGT_WIN32,MSGL_INFO," biWidth %d\n", output_bih->biWidth);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
169 mp_msg(MSGT_WIN32,MSGL_INFO," biHeight %d\n", output_bih->biHeight);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
170 mp_msg(MSGT_WIN32,MSGL_INFO," biPlanes %d\n", output_bih->biPlanes);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
171 mp_msg(MSGT_WIN32,MSGL_INFO," biBitCount %d\n", output_bih->biBitCount);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
172 mp_msg(MSGT_WIN32,MSGL_INFO," biCompression 0x%x ('%.4s')\n", output_bih->biCompression, (char *)&output_bih->biCompression);
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
173 mp_msg(MSGT_WIN32,MSGL_INFO," biSizeImage %d\n", output_bih->biSizeImage);
7231
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
174
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
175 encoder_buf_size=input_bih->biSizeImage;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
176 encoder_buf=malloc(encoder_buf_size);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
177 encoder_frameno=0;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
178
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
179 mp_msg(MSGT_WIN32,MSGL_V,"VIDEO CODEC Init OK!!! ;-)\n");
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
180 return 1;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
181 }
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
182
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
183 static int vfw_encode_frame(BITMAPINFOHEADER* biOutput,void* OutBuf,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
184 BITMAPINFOHEADER* biInput,void* Image,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
185 long* keyframe, int quality){
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
186 HRESULT ret;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
187
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
188 //long VFWAPIV ICCompress(
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
189 // HIC hic,long dwFlags,LPBITMAPINFOHEADER lpbiOutput,void* lpOutputBuf,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
190 // LPBITMAPINFOHEADER lpbiInput,void* lpImage,long* lpckid,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
191 // long* lpdwFlags,long lFrameNum,long dwFrameSize,long dwQuality,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
192 // LPBITMAPINFOHEADER lpbiInputPrev,void* lpImagePrev
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
193 //);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
194
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
195 // printf("vfw_encode_frame(%p,%p, %p,%p, %p,%d)\n",biOutput,OutBuf,biInput,Image,keyframe,quality);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
196
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
197 ret=ICCompress(encoder_hic, 0,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
198 biOutput, OutBuf,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
199 biInput, Image,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
200 NULL, keyframe, encoder_frameno, 0, quality,
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
201 biInput, encoder_buf);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
202
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
203 // printf("ok. size=%d\n",biOutput->biSizeImage);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
204
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
205 memcpy(encoder_buf,Image,encoder_buf_size);
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
206 ++encoder_frameno;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
207
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
208 return (int)ret;
1e84415320d8 merged with dll_init.c
alex
parents: 7127
diff changeset
209 }
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
210 #define mux_v (vf->priv->mux)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
211 #define vfw_bih (vf->priv->bih)
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
212
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
213 static int config(struct vf_instance_s* vf,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
214 int width, int height, int d_width, int d_height,
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
215 unsigned int flags, unsigned int outfmt){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
216
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
217 vfw_bih->biWidth=width;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
218 vfw_bih->biHeight=height;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
219 vfw_bih->biSizeImage=width*height*((vfw_bih->biBitCount+7)/8);
12061
656a1b45b309 Use aspect from encoder for AVI vprp header
ranma
parents: 10594
diff changeset
220 mux_v->aspect = (float)d_width/d_height;
5551
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
221
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
222 if(!vfw_start_encoder(vfw_bih, mux_v->bih)) return 0;
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
223
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
224 // mux_v->bih->biWidth=width;
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
225 // mux_v->bih->biHeight=height;
73978162b6a1 soem fixes
arpi
parents: 5550
diff changeset
226 // mux_v->bih->biSizeImage=width*height*((mux_v->bih->biBitCount+7)/8);
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
227
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
228 return 1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
229 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
230
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
231 static int control(struct vf_instance_s* vf, int request, void* data){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
232
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
233 return CONTROL_UNKNOWN;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
234 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
235
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
236 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
15212
05aa13cdf92f replace VO and VF numeric flags with #defined identifiers
henry
parents: 14878
diff changeset
237 if(fmt==IMGFMT_BGR24) return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_FLIPPED;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
238 return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
239 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
240
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17487
diff changeset
241 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
242 long flags=0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
243 int ret;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
244 // flip_upside_down(vo_image_ptr,vo_image_ptr,3*vo_w,vo_h); // dirty hack
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
245 ret=vfw_encode_frame(mux_v->bih, mux_v->buffer, vfw_bih, mpi->planes[0], &flags, 10000);
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17487
diff changeset
246 muxer_write_chunk(mux_v,mux_v->bih->biSizeImage,flags, pts, pts);
7368
a894e99c1e51 changing return type of put_image void->int
arpi
parents: 7238
diff changeset
247 return 1;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
248 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
249
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
250 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
251
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
252 static int vf_open(vf_instance_t *vf, char* args){
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
253 vf->config=config;
14878
5723c4b2a2ea fixes for encoding of multiple files
henry
parents: 14549
diff changeset
254 vf->default_caps=VFCAP_CONSTANT;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
255 vf->control=control;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
256 vf->query_format=query_format;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
257 vf->put_image=put_image;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
258 vf->priv=malloc(sizeof(struct vf_priv_s));
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
259 memset(vf->priv,0,sizeof(struct vf_priv_s));
8585
27da710563c2 the long-waited MUXER layer, and new MPEG-PS muxer
arpi
parents: 8123
diff changeset
260 vf->priv->mux=(muxer_stream_t*)args;
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
261
14549
acf3241be19b Initialized BITMAPINFOHEADER to 0 to avoid problems, esp. windows has problems
reimar
parents: 12061
diff changeset
262 vfw_bih=calloc(1, sizeof(BITMAPINFOHEADER));
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
263 vfw_bih->biSize=sizeof(BITMAPINFOHEADER);
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
264 vfw_bih->biWidth=0; // FIXME ?
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
265 vfw_bih->biHeight=0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
266 vfw_bih->biPlanes=1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
267 vfw_bih->biBitCount=24;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
268 vfw_bih->biCompression=0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
269 // vfw_bih->biSizeImage=vo_w*vo_h*((vfw_bih->biBitCount+7)/8);
6083
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
270
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
271 if (!vfw_param_codec)
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
272 {
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17969
diff changeset
273 mp_msg(MSGT_WIN32,MSGL_WARN, MSGTR_MPCODECS_NoVfwCodecSpecified);
6083
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
274 return 0;
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
275 }
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
276 // mux_v->bih=vfw_open_encoder("divxc32.dll",vfw_bih,mmioFOURCC('D', 'I', 'V', '3'));
6083
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
277 // mux_v->bih=vfw_open_encoder("AvidAVICodec.dll",vfw_bih, 0);
6aa4fc282fc7 added support for codec selection
alex
parents: 5607
diff changeset
278 mux_v->bih = vfw_open_encoder(vfw_param_codec, vfw_bih, 0);
5550
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
279 if(!mux_v->bih) return 0;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
280
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
281 return 1;
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
282 }
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
283
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
284 vf_info_t ve_info_vfw = {
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
285 "Win32/VfW encoders",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
286 "vfw",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
287 "A'rpi",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
288 "for internal use by mencoder",
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
289 vf_open
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
290 };
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
291
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
292 //===========================================================================//
7d1dfb59c6c0 encoders
arpi
parents:
diff changeset
293 #endif