summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-01-30 14:56:45 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-01-30 14:56:45 +0000
commit5c78ee93575d0cd8f7c481bd2f98cc3fd6f2fbaf (patch)
treead2eb4282ae6950233fe421e40ca98a945fdca7a /src
parent67ef9ed70aba5787ed8eeed73463d5d820cc96f2 (diff)
downloadxine-lib-5c78ee93575d0cd8f7c481bd2f98cc3fd6f2fbaf.tar.gz
xine-lib-5c78ee93575d0cd8f7c481bd2f98cc3fd6f2fbaf.tar.bz2
fourcc QDM1 seems wrong, it's QDMC (slap me if i'm wrong)
CVS patchset: 4048 CVS date: 2003/01/30 14:56:45
Diffstat (limited to 'src')
-rw-r--r--src/libw32dll/qt_decoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libw32dll/qt_decoder.c b/src/libw32dll/qt_decoder.c
index b02b77a3f..9d9e69e18 100644
--- a/src/libw32dll/qt_decoder.c
+++ b/src/libw32dll/qt_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: qt_decoder.c,v 1.13 2003/01/29 17:51:05 miguelfreitas Exp $
+ * $Id: qt_decoder.c,v 1.14 2003/01/30 14:56:45 f1rmb Exp $
*
* quicktime video/audio decoder plugin, using win32 dlls
* most of this code comes directly from MPlayer
@@ -322,7 +322,7 @@ static void qta_init_driver (qta_decoder_t *this, buf_element_t *buf) {
switch (buf->type) {
case BUF_AUDIO_QDESIGN1:
- this->InputFormatInfo.format = FOUR_CHAR_CODE('Q','D','M','1');
+ this->InputFormatInfo.format = FOUR_CHAR_CODE('Q','D','M','C');
break;
case BUF_AUDIO_QDESIGN2:
this->InputFormatInfo.format = FOUR_CHAR_CODE('Q','D','M','2');