Reading mp3/video on Windows 10 return error 0xc00d36c4

Hello,

When i play mp3/video file in Windows 10 sinice my disk filesystem i have error :
This item’s file format may be unsupported, the file extension may be incorrect,
or the file may be corrupted.

When i play mp3 file in Winamp/vlc no problem.

Thank you help please.

Problem now solved.

The problem problem came from

i returned NTSTATUS STATUS_SUCCESS with no byte returned in ioctl function :

IRP_MJ_QUERY_VOLUME_INFORMATION->FileFsMaximumInformation.

But I have the impression that this windows player requires oplocks functions,
I try to disable oplocks function then the player (Music) does not work.

And I do not control evil Oplocks functions.

PROBLEM SOLVED !

They are not evil and fortunately not yours to control. The oplock protocol
is implemented in the FsRtl library and NTFS and other file systems just
use this lib to support oplocks.
All you need to do now is not break them and do I/O without deadlocking the
system.
How ?
Read the oplock semantics paper or doc from Microsoft.

Gabriel
www.kasardia.com

On Jan 4, 2018 22:02, “xxxxx@gmail.com” wrote:

> Problem now solved.
>
> The problem problem came from
>
> i returned NTSTATUS STATUS_SUCCESS with no byte returned in ioctl function
> :
>
> IRP_MJ_QUERY_VOLUME_INFORMATION->FileFsMaximumInformation.
>
> But I have the impression that this windows player requires oplocks
> functions,
> I try to disable oplocks function then the player (Music) does not work.
>
> And I do not control evil Oplocks functions.
>
> PROBLEM SOLVED !
>
> —
> NTFSD is sponsored by OSR
>
>
> MONTHLY seminars on crash dump analysis, WDF, Windows internals and
> software drivers!
> Details at http:
>
> To unsubscribe, visit the List Server section of OSR Online at <
> http://www.osronline.com/page.cfm?name=ListServer&gt;
></http:>

Problem now solved.

The problem problem came from

i returned NTSTATUS STATUS_SUCCESS with no byte returned in ioctl function :

IRP_MJ_QUERY_VOLUME_INFORMATION->FileFsMaximumInformation.

But I have the impression that this windows player requires oplocks functions,
I try to disable oplocks function then the player (Music) does not work.

And I do not control evil Oplocks functions.

PROBLEM SOLVED