comparison libmpcodecs/ve_vfw.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents d3b951d9b4d3
children bbb6ebec87a0
comparison
equal deleted inserted replaced
29262:7d545a6b8aff 29263:0f1b5b68af32
165 mp_msg(MSGT_WIN32,MSGL_ERR,"ICCompressGetFormat failed: Error %d (0x%X)\n", (int)ret, (int)ret); 165 mp_msg(MSGT_WIN32,MSGL_ERR,"ICCompressGetFormat failed: Error %d (0x%X)\n", (int)ret, (int)ret);
166 for (i=0; i < temp_len; i++) mp_msg(MSGT_WIN32, MSGL_DBG2, "%02x ", temp[i]); 166 for (i=0; i < temp_len; i++) mp_msg(MSGT_WIN32, MSGL_DBG2, "%02x ", temp[i]);
167 return 0; 167 return 0;
168 } 168 }
169 mp_msg(MSGT_WIN32,MSGL_V,"ICCompressGetFormat OK\n"); 169 mp_msg(MSGT_WIN32,MSGL_V,"ICCompressGetFormat OK\n");
170 170
171 if (temp_len > sizeof(BITMAPINFOHEADER)) 171 if (temp_len > sizeof(BITMAPINFOHEADER))
172 { 172 {
173 unsigned char* temp=(unsigned char*)output_bih; 173 unsigned char* temp=(unsigned char*)output_bih;
174 mp_msg(MSGT_WIN32, MSGL_V, "Extra info in o_bih (%d bytes)!\n", 174 mp_msg(MSGT_WIN32, MSGL_V, "Extra info in o_bih (%d bytes)!\n",
175 temp_len-sizeof(BITMAPINFOHEADER)); 175 temp_len-sizeof(BITMAPINFOHEADER));
218 mp_msg(MSGT_WIN32,MSGL_INFO," biHeight %ld\n", output_bih->biHeight); 218 mp_msg(MSGT_WIN32,MSGL_INFO," biHeight %ld\n", output_bih->biHeight);
219 mp_msg(MSGT_WIN32,MSGL_INFO," biPlanes %d\n", output_bih->biPlanes); 219 mp_msg(MSGT_WIN32,MSGL_INFO," biPlanes %d\n", output_bih->biPlanes);
220 mp_msg(MSGT_WIN32,MSGL_INFO," biBitCount %d\n", output_bih->biBitCount); 220 mp_msg(MSGT_WIN32,MSGL_INFO," biBitCount %d\n", output_bih->biBitCount);
221 mp_msg(MSGT_WIN32,MSGL_INFO," biCompression 0x%lx ('%.4s')\n", output_bih->biCompression, (char *)&output_bih->biCompression); 221 mp_msg(MSGT_WIN32,MSGL_INFO," biCompression 0x%lx ('%.4s')\n", output_bih->biCompression, (char *)&output_bih->biCompression);
222 mp_msg(MSGT_WIN32,MSGL_INFO," biSizeImage %ld\n", output_bih->biSizeImage); 222 mp_msg(MSGT_WIN32,MSGL_INFO," biSizeImage %ld\n", output_bih->biSizeImage);
223 223
224 encoder_buf_size=input_bih->biSizeImage; 224 encoder_buf_size=input_bih->biSizeImage;
225 encoder_buf=malloc(encoder_buf_size); 225 encoder_buf=malloc(encoder_buf_size);
226 encoder_frameno=0; 226 encoder_frameno=0;
227 227
228 mp_msg(MSGT_WIN32,MSGL_V,"VIDEO CODEC Init OK!!! ;-)\n"); 228 mp_msg(MSGT_WIN32,MSGL_V,"VIDEO CODEC Init OK!!! ;-)\n");