Commit 36fb9ee6 authored by Laurent Aimar's avatar Laurent Aimar

* avi.c: uses rv15 for 15 and 16 bits file. (I don't know if it's ok).

parent 6a94cd6b
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc * avi.c : AVI file Stream input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2004 VideoLAN * Copyright (C) 2001-2004 VideoLAN
* $Id: avi.c,v 1.88 2004/02/27 14:05:55 fenrir Exp $ * $Id: avi.c,v 1.89 2004/02/27 14:22:18 fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -334,8 +334,8 @@ static int Open( vlc_object_t * p_this ) ...@@ -334,8 +334,8 @@ static int Open( vlc_object_t * p_this )
tk->i_codec = VLC_FOURCC('R','V','2','4'); tk->i_codec = VLC_FOURCC('R','V','2','4');
break; break;
case 16: case 16:
tk->i_codec = VLC_FOURCC('R','V','1','6'); /* tk->i_codec = VLC_FOURCC('R','V','1','6');*/
break; /* break;*/
case 15: case 15:
tk->i_codec = VLC_FOURCC('R','V','1','5'); tk->i_codec = VLC_FOURCC('R','V','1','5');
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment