summaryrefslogtreecommitdiff
path: root/src/libdivx4/xine_decoder.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-04-20 20:20:43 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-04-20 20:20:43 +0000
commit19e885691fcbfa46564fab93bde6d946350584da (patch)
treea024a63c8a502f0ae779f85b7a4deed9025054cf /src/libdivx4/xine_decoder.c
parent157cc496c6378df5899b9e9ade8a37a1ee9706a7 (diff)
downloadxine-lib-19e885691fcbfa46564fab93bde6d946350584da.tar.gz
xine-lib-19e885691fcbfa46564fab93bde6d946350584da.tar.bz2
differentiating mpeg-4 formats even more, divx5 apparently is not completely mpeg-4 compliant while xvid reportedly doesn't handle mpeg-4 streams correctly
CVS patchset: 1750 CVS date: 2002/04/20 20:20:43
Diffstat (limited to 'src/libdivx4/xine_decoder.c')
-rw-r--r--src/libdivx4/xine_decoder.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libdivx4/xine_decoder.c b/src/libdivx4/xine_decoder.c
index 225865a3d..8a8b7c958 100644
--- a/src/libdivx4/xine_decoder.c
+++ b/src/libdivx4/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.26 2002/04/09 03:38:00 miguelfreitas Exp $
+ * $Id: xine_decoder.c,v 1.27 2002/04/20 20:20:43 guenter Exp $
*
* xine decoder plugin using divx4
*
@@ -366,7 +366,8 @@ static int divx4_can_handle (video_decoder_t *this_gen, int buf_type) {
/* divx4 currently does not support MSMPEG4 v1/v2 */
return ( (buf_type == BUF_VIDEO_MSMPEG4_V3 && this->can_handle_311) ||
/* buf_type == BUF_VIDEO_MSMPEG4_V12 || */
- buf_type == BUF_VIDEO_MPEG4);
+ (buf_type == BUF_VIDEO_MPEG4) ||
+ (buf_type == BUF_VIDEO_DIVX5));
}
/* copied verbatim from ffmpeg plugin */