From a160c8687fb0dde65f5dc4693940e1aff09694cf Mon Sep 17 00:00:00 2001 From: nicodvb Date: Thu, 20 Apr 2006 20:48:55 +0000 Subject: [PATCH] added support for DX50 and dx50 4CCs git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18165 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/muxer_mpeg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libmpdemux/muxer_mpeg.c b/libmpdemux/muxer_mpeg.c index 2b016b156f..3bb38585cd 100644 --- a/libmpdemux/muxer_mpeg.c +++ b/libmpdemux/muxer_mpeg.c @@ -247,7 +247,9 @@ static inline int is_mpeg4(uint32_t x) (x == mmioFOURCC('m','p','4','v')) || (x == mmioFOURCC('M','P','4','V')) || (x == mmioFOURCC('F', 'M','P','4')) || - (x == mmioFOURCC('f', 'm','p','4')) + (x == mmioFOURCC('f', 'm','p','4')) || + (x == mmioFOURCC('D', 'X','5','0')) || + (x == mmioFOURCC('d', 'x','5','0')) ); }