Commit f9116829 authored by ramiro's avatar ramiro

Add #if 0 code to test for yet unsupported compressions

from user-supplied verbose information.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12822 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8908a1b0
......@@ -318,6 +318,18 @@ static int vfw_read_header(AVFormatContext *s, AVFormatParameters *ap)
bi->bmiHeader.biWidth = width ;
bi->bmiHeader.biHeight = height;
#if 0
/* For testing yet unsupported compressions
* Copy these values from-user supplied verbose information */
bi->bmiHeader.biWidth = 320;
bi->bmiHeader.biHeight = 240;
bi->bmiHeader.biPlanes = 1;
bi->bmiHeader.biBitCount = 12;
bi->bmiHeader.biCompression = MKTAG('I','4','2','0');
bi->bmiHeader.biSizeImage = 115200;
dump_bih(s, &bi->bmiHeader);
#endif
ret = SendMessage(ctx->hwnd, WM_CAP_SET_VIDEOFORMAT, bisize, (LPARAM) bi);
if(!ret) {
av_log(s, AV_LOG_ERROR, "Could not set Video Format.\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment