summaryrefslogtreecommitdiff
path: root/src/libffmpeg/xine_decoder.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-11-07 21:35:01 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-11-07 21:35:01 +0000
commitc84f9f289b8001d1b85cd9c92cc8d36cea0ff861 (patch)
treeb25e5f7c106d3b29f80409a1c021c397c62a622c /src/libffmpeg/xine_decoder.c
parentfa477b2bdf5f5b5fb4f422bfdb47769b37139b26 (diff)
downloadxine-lib-c84f9f289b8001d1b85cd9c92cc8d36cea0ff861.tar.gz
xine-lib-c84f9f289b8001d1b85cd9c92cc8d36cea0ff861.tar.bz2
codec fixes
CVS patchset: 993 CVS date: 2001/11/07 21:35:01
Diffstat (limited to 'src/libffmpeg/xine_decoder.c')
-rw-r--r--src/libffmpeg/xine_decoder.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libffmpeg/xine_decoder.c b/src/libffmpeg/xine_decoder.c
index ad680724f..e35499055 100644
--- a/src/libffmpeg/xine_decoder.c
+++ b/src/libffmpeg/xine_decoder.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: xine_decoder.c,v 1.16 2001/10/21 00:18:22 miguelfreitas Exp $
+ * $Id: xine_decoder.c,v 1.17 2001/11/07 21:35:01 miguelfreitas Exp $
*
* xine decoder plugin using ffmpeg
*
@@ -103,11 +103,12 @@ static int ff_can_handle (video_decoder_t *this_gen, int buf_type) {
buf_type &= 0xFFFF0000;
/* ffmpeg currently does not support MSMPEG4 v1/v2 */
+ /* there's some problem with I263 too */
return ( buf_type == BUF_VIDEO_MSMPEG4_V3 ||
/* buf_type == BUF_VIDEO_MSMPEG4_V12 || */
buf_type == BUF_VIDEO_MPEG4 ||
buf_type == BUF_VIDEO_MJPEG ||
- buf_type == BUF_VIDEO_I263 ||
+ /* buf_type == BUF_VIDEO_I263 || */
buf_type == BUF_VIDEO_RV10 ||
buf_type == BUF_VIDEO_JPEG);
}