Changeset 76773 in webkit


Ignore:
Timestamp:
Jan 27, 2011 12:55:04 AM (13 years ago)
Author:
Philippe Normand
Message:

2011-01-26 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] LayoutTests/media/audio-mpeg4-supported.html fails
https://bugs.webkit.org/show_bug.cgi?id=53125

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: (WebCore::mimeTypeCache): Add audio/x-m4a mimetype in the cache.

2011-01-26 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] LayoutTests/media/audio-mpeg4-supported.html fails
https://bugs.webkit.org/show_bug.cgi?id=53125

  • platform/gtk/Skipped: Unskip fixed test.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r76772 r76773  
     12011-01-26  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] LayoutTests/media/audio-mpeg4-supported.html fails
     6        https://bugs.webkit.org/show_bug.cgi?id=53125
     7
     8        * platform/gtk/Skipped: Unskip fixed test.
     9
    1102011-01-27  Philippe Normand  <pnormand@igalia.com>
    211
  • trunk/LayoutTests/platform/gtk/Skipped

    r76748 r76773  
    50945094http/tests/xmlhttprequest/simple-cross-origin-denied-events-post-sync.html
    50955095
    5096 # This media test fails; possibly because the AAC codec is not installed on the test bots:
    5097 # https://bugs.webkit.org/show_bug.cgi?id=53125
    5098 media/audio-mpeg4-supported.html
  • trunk/Source/WebCore/ChangeLog

    r76770 r76773  
     12011-01-26  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GTK] LayoutTests/media/audio-mpeg4-supported.html fails
     6        https://bugs.webkit.org/show_bug.cgi?id=53125
     7
     8        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
     9        (WebCore::mimeTypeCache): Add audio/x-m4a mimetype in the cache.
     10
    1112011-01-26  Yury Semikhatsky  <yurys@chromium.org>
    212
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp

    r75065 r76773  
    13851385                // These formats are supported by GStreamer, but not
    13861386                // correctly advertised.
    1387                 if (g_str_equal(name, "video/x-h264")
    1388                     || g_str_equal(name, "audio/x-m4a")) {
     1387                if (g_str_equal(name, "video/x-h264")) {
    13891388                    cache.add(String("video/mp4"));
     1389                    cached = true;
     1390                }
     1391
     1392                if (g_str_equal(name, "audio/x-m4a")) {
    13901393                    cache.add(String("audio/aac"));
    13911394                    cache.add(String("audio/mp4"));
     1395                    cache.add(String("audio/x-m4a"));
    13921396                    cached = true;
    13931397                }
Note: See TracChangeset for help on using the changeset viewer.