mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
stream_dvd: better .ifo probing
stream_dvd.c includes a pseudo-protocol that recognizes .IFO files, and plays them using libdvdread. This was relatively lazy, and could perhaps easily trigger with files that just had the .ifo extension. Make the checks stricter, and even probe the file header. Apparently the first bytes in an .ifo file are always "DVDVIDEO-VTS", so check for this. Refuse to load the main "video_ts.ifo". The plan is to use stream_dvdnav for it. This also removes at least 1 memory leak.
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
#define MPLAYER_STREAM_DVD_COMMON_H
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <dvdread/ifo_types.h>
|
||||
#include <stdbool.h>
|
||||
#include "stream.h"
|
||||
|
||||
extern const char * const dvd_audio_stream_channels[6];
|
||||
@@ -29,4 +29,6 @@ extern const char * const dvd_audio_stream_types[8];
|
||||
void dvd_set_speed(stream_t *stream, char *device, unsigned speed);
|
||||
int mp_dvdtimetomsec(dvd_time_t *dt);
|
||||
|
||||
int dvd_probe(const char *path, const char *ext, const char *sig);
|
||||
|
||||
#endif /* MPLAYER_STREAM_DVD_COMMON_H */
|
||||
|
||||
Reference in New Issue
Block a user