diff options
author | Michael Smith <msmith@songbirdnest.com> | 2009-11-17 17:59:13 -0800 |
---|---|---|
committer | Michael Smith <msmith@songbirdnest.com> | 2009-11-17 17:59:13 -0800 |
commit | fe9415544e427b08af95a2d74441b2e939da03e7 (patch) | |
tree | 839efd96f4ee97ae80130ea44de3118f1dd4a264 | |
parent | 5219267073b65d9189f5920b9500de01d7ae3878 (diff) |
qtdemux: identify IMA adpcm in qt properly.
-rw-r--r-- | gst/qtdemux/qtdemux.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index fae3743d6..94ca1fdba 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -6640,11 +6640,9 @@ qtdemux_audio_caps (GstQTDemux * qtdemux, QtDemuxStream * stream, break; case 0x1100736d: case 0x6d730011: - _codec ("IMA Loki SDL MJPEG ADPCM"); - /* Loki ADPCM, See #550288 for a file that only decodes - * with the smjpeg variant of the ADPCM decoder. */ + _codec ("DVI/IMA ADPCM"); caps = gst_caps_new_simple ("audio/x-adpcm", - "layout", G_TYPE_STRING, "smjpeg", NULL); + "layout", G_TYPE_STRING, "dvi", NULL); break; case 0x1700736d: case 0x6d730017: |