Commit 2d8e75da authored by Robert Reif's avatar Robert Reif Committed by Alexandre Julliard

A driver does not have to support all formats.

parent 32454a81
...@@ -304,7 +304,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position, ...@@ -304,7 +304,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
lpTime->u.smpte.sec, lpTime->u.smpte.frame); lpTime->u.smpte.sec, lpTime->u.smpte.frame);
break; break;
default: default:
FIXME("Format %d not supported ! use TIME_BYTES !\n", lpTime->wType); WARN("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
lpTime->wType = TIME_BYTES; lpTime->wType = TIME_BYTES;
/* fall through */ /* fall through */
case TIME_BYTES: case TIME_BYTES:
......
...@@ -258,7 +258,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position, ...@@ -258,7 +258,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
lpTime->u.smpte.sec, lpTime->u.smpte.frame); lpTime->u.smpte.sec, lpTime->u.smpte.frame);
break; break;
default: default:
FIXME("Format %d not supported ! use TIME_BYTES !\n", lpTime->wType); WARN("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
lpTime->wType = TIME_BYTES; lpTime->wType = TIME_BYTES;
/* fall through */ /* fall through */
case TIME_BYTES: case TIME_BYTES:
......
...@@ -217,7 +217,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position, ...@@ -217,7 +217,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
lpTime->u.smpte.sec, lpTime->u.smpte.frame); lpTime->u.smpte.sec, lpTime->u.smpte.frame);
break; break;
default: default:
FIXME("Format %d not supported ! use TIME_BYTES !\n", lpTime->wType); FIXME("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
lpTime->wType = TIME_BYTES; lpTime->wType = TIME_BYTES;
/* fall through */ /* fall through */
case TIME_BYTES: case TIME_BYTES:
......
...@@ -253,7 +253,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position, ...@@ -253,7 +253,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
lpTime->u.smpte.sec, lpTime->u.smpte.frame); lpTime->u.smpte.sec, lpTime->u.smpte.frame);
break; break;
default: default:
FIXME("Format %d not supported ! use TIME_BYTES !\n", lpTime->wType); WARN("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
lpTime->wType = TIME_BYTES; lpTime->wType = TIME_BYTES;
/* fall through */ /* fall through */
case TIME_BYTES: case TIME_BYTES:
......
...@@ -315,7 +315,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position, ...@@ -315,7 +315,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
lpTime->u.smpte.sec, lpTime->u.smpte.frame); lpTime->u.smpte.sec, lpTime->u.smpte.frame);
break; break;
default: default:
FIXME("Format %d not supported ! use TIME_BYTES !\n", lpTime->wType); WARN("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
lpTime->wType = TIME_BYTES; lpTime->wType = TIME_BYTES;
/* fall through */ /* fall through */
case TIME_BYTES: case TIME_BYTES:
......
...@@ -236,7 +236,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position, ...@@ -236,7 +236,7 @@ static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
lpTime->u.smpte.sec, lpTime->u.smpte.frame); lpTime->u.smpte.sec, lpTime->u.smpte.frame);
break; break;
default: default:
FIXME("Format %d not supported ! use TIME_BYTES !\n", lpTime->wType); WARN("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
lpTime->wType = TIME_BYTES; lpTime->wType = TIME_BYTES;
/* fall through */ /* fall through */
case TIME_BYTES: case TIME_BYTES:
......
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