summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-05-05 18:41:12 +0200
committerwm4 <wm4@nowhere>2013-05-05 18:44:24 +0200
commitb8fce1217c9e591ff36557c04f6c5881f9db3352 (patch)
treef4c0344cb2f4419923ba10ec8477082d2edbec13 /demux
parent18c383f51b59b97715cfd141d81c2bdddbc4a9c8 (diff)
downloadmpv-b8fce1217c9e591ff36557c04f6c5881f9db3352.tar.bz2
mpv-b8fce1217c9e591ff36557c04f6c5881f9db3352.tar.xz
demux: use demux_lavf instead of demux_mpg for DVD playback
With the commit "demux_lavf: fix DEMUXER_CTRL_RESYNC", DVD playback seems to work nicely with demux_lavf, and maybe works even better than with demux_mpg. The old demuxer can be forced with: --demuxer=mpegps If no regressions surface, demux_mpg.c will be deleted later.
Diffstat (limited to 'demux')
-rw-r--r--demux/demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index eeaa92c266..305d414bfa 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -976,7 +976,7 @@ struct demuxer *demux_open_withparams(struct MPOpts *opts,
// format, instead of reyling on libav to auto-detect the stream's format
// correctly.
switch (file_format) {
- //case DEMUXER_TYPE_MPEG_PS:
+ case DEMUXER_TYPE_MPEG_PS:
//case DEMUXER_TYPE_MPEG_TS:
case DEMUXER_TYPE_Y4M:
case DEMUXER_TYPE_NSV: