Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
MozillaFirefox.754
mozilla-disable-ogg.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File mozilla-disable-ogg.patch of Package MozillaFirefox.754
# HG changeset patch # Parent 33ebda2da37a0c1aa208bc904b5017f19c0dfb98 diff --git a/content/media/DecoderTraits.cpp b/content/media/DecoderTraits.cpp --- a/content/media/DecoderTraits.cpp +++ b/content/media/DecoderTraits.cpp @@ -8,18 +8,20 @@ #include "MediaDecoder.h" #include "nsCharSeparatedTokenizer.h" #include "mozilla/Preferences.h" #ifdef MOZ_MEDIA_PLUGINS #include "MediaPluginHost.h" #endif +#ifdef MOZ_WEBM #include "OggDecoder.h" #include "OggReader.h" +#endif #ifdef MOZ_WAVE #include "WaveDecoder.h" #include "WaveReader.h" #endif #ifdef MOZ_WEBM #include "WebMDecoder.h" #include "WebMReader.h" #endif @@ -474,20 +476,22 @@ InstantiateDecoder(const nsACString& aTy } #endif #ifdef MOZ_RAW if (IsRawType(aType)) { decoder = new RawDecoder(); return decoder.forget(); } #endif +#ifdef MOZ_WEBM if (IsOggType(aType)) { decoder = new OggDecoder(); return decoder.forget(); } +#endif #ifdef MOZ_WAVE if (IsWaveType(aType)) { decoder = new WaveDecoder(); return decoder.forget(); } #endif #ifdef MOZ_OMX_DECODER if (IsOmxSupportedType(aType)) { @@ -582,19 +586,21 @@ MediaDecoderReader* DecoderTraits::Creat decoderReader = new GStreamerReader(aDecoder); } else #endif #ifdef MOZ_RAW if (IsRawType(aType)) { decoderReader = new RawReader(aDecoder); } else #endif +#ifdef MOZ_WEBM if (IsOggType(aType)) { decoderReader = new OggReader(aDecoder); } else +#endif #ifdef MOZ_WAVE if (IsWaveType(aType)) { decoderReader = new WaveReader(aDecoder); } else #endif #ifdef MOZ_OMX_DECODER if (IsOmxSupportedType(aType)) { decoderReader = new MediaOmxReader(aDecoder);
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor