diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-17 19:42:08 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-17 19:42:08 +0000 |
commit | 81b2f95cbb603795f41636ed3b089bfd712d1a79 (patch) | |
tree | 0c4eae6beb854a53a36718258eb621514a504b42 | |
parent | 98c55e3701ba4111c11ea8ce216f1d0b72a2f7ea (diff) | |
download | xine-lib-81b2f95cbb603795f41636ed3b089bfd712d1a79.tar.gz xine-lib-81b2f95cbb603795f41636ed3b089bfd712d1a79.tar.bz2 |
fix iso mpeg4 identification (can only be played on ffmpeg or divx
decoder)
CVS patchset: 1060
CVS date: 2001/11/17 19:42:08
-rw-r--r-- | src/xine-engine/buffer_types.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/xine-engine/buffer_types.c b/src/xine-engine/buffer_types.c index d59c8b74e..4285feb65 100644 --- a/src/xine-engine/buffer_types.c +++ b/src/xine-engine/buffer_types.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: buffer_types.c,v 1.5 2001/11/17 14:26:39 f1rmb Exp $ + * $Id: buffer_types.c,v 1.6 2001/11/17 19:42:08 miguelfreitas Exp $ * * * contents: @@ -71,10 +71,13 @@ static video_db_t video_db[] = { mmioFOURCC('d', 'i', 'v', 'x'), mmioFOURCC('D', 'i', 'v', 'x'), mmioFOURCC('D', 'i', 'v', 'X'), + mmioFOURCC('M', 'P', '4', 'S'), + mmioFOURCC('M', 'P', 'G', '4'), + mmioFOURCC('m', 'p', 'g', '4'), 0 }, BUF_VIDEO_MPEG4, - "mpeg4 (opendivx) format" + "ISO-MPEG4 or OpenDivx format" }, { { @@ -96,8 +99,6 @@ static video_db_t video_db[] = { }, { { - mmioFOURCC('M', 'P', 'G', '4'), - mmioFOURCC('m', 'p', 'g', '4'), mmioFOURCC('M', 'P', '4', '1'), mmioFOURCC('m', 'p', '4', '1'), mmioFOURCC('M', 'P', '4', '2'), |