Here is the file:
https://www.dropbox.com/s/cuhqmzjq0zb9m ... nn.ts?dl=0
I tried another one (non interlaced) with the same result.
Code: Select all
void *aligned_alloc(size_t align, size_t size)
{
/* align must be a power of 2 */
/* size must be a multiple of align */
if ((align & (align - 1)) || (size & (align - 1)))
{
errno = EINVAL;
return NULL;
}
#ifdef HAVE_POSIX_MEMALIGN
if (align < sizeof (void *)) /* POSIX does not allow small alignment */
align = sizeof (void *);
void *ptr;
int err = posix_memalign(&ptr, align, size);
if (err)
{
errno = err;
ptr = NULL;
}
return ptr;
#elif !defined (_WIN32)
return memalign(align, size);
#else
#ifdef __MINGW32__
return __mingw_aligned_malloc(size, align);
#elif defined(_MSC_VER)
return _aligned_malloc(size, align);
#endif
if (size > 0)
errno = ENOMEM;
return NULL;
#endif
}
Code: Select all
#ifdef __MINGW32__
return __mingw_aligned_malloc(size, align);
#elif defined(_MSC_VER)
return _aligned_malloc(size, align);
#endif
Return to “VLC media player for Windows Troubleshooting”
Users browsing this forum: No registered users and 121 guests