I'm not sure if this isn't working correctly or I'm misunderstanding the usage of the word "track".
I have a DVD that contains probably 10 different animation videos accessible from the main dvd menu, however libvlc_video_get_track_count returns "2", which is clearly incorrect.
Is my understanding of what a "track" is incorrect, or is libvlc_video_get_track_count broken or am I simply not using it correctly?
Thanks!
PS. Now that I'm working on axvlc.dll, is there a bug list for it somewhere? If it has outstanding bugs, I'd be happy to start working on them as time allows.
Terry
Code Below:
STDMETHODIMP VLCVideo::get_trackcount(long* trackcount)
{
if( NULL == trackcount )
return E_POINTER;
libvlc_media_player_t *p_md;
HRESULT hr = getMD(&p_md);
if( SUCCEEDED(hr) )
{
*trackcount = libvlc_video_get_track_count(p_md);
}
return hr;
};