demux_lavf: use lavf for RealMedia (.rm) files by default

RealMedia was listed as a format for which the internal demuxer
(demux_real) was preferred over lavf. The original reason for this
(lavf failing to give any timing information for some video frames)
has been fixed in libavformat since. Make demux_lavf the preferred
demuxer for RealMedia.

The libavformat demuxer does still have issues. COOK audio initially
misbehaves after a seek (inconsistent timestamps, audio remaining from
the before-seek position). However, the internal demuxer seemed to be
_consistently_ out of sync with a test file. I haven't done thorough
testing, but the internal demuxer does not seem less buggy.
This commit is contained in:
Uoti Urpala 2012-07-26 18:32:09 +03:00
parent b7fb2daff4
commit 4d71fb7098
1 changed files with 0 additions and 2 deletions

View File

@ -245,8 +245,6 @@ static const char * const preferred_internal[] = {
/* lavf Matroska demuxer doesn't support ordered chapters and fails
* for more files */
"matroska",
/* lavf gives neither pts nor dts for some video frames in .rm */
"rm",
NULL
};