mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-12 10:40:12 +00:00
Bug 600540: Disable raw video by default. r=cpearce a=beltzer
--HG-- extra : rebase_source : 0ddea9a76805d6d8da3328c368c8393111ab7790
This commit is contained in:
parent
4911771a09
commit
4543eae00a
10
configure.in
10
configure.in
@ -5899,12 +5899,12 @@ if test -n "$MOZ_NO_FAST_LOAD"; then
|
||||
fi
|
||||
|
||||
dnl ========================================================
|
||||
dnl = Disable Raw Codecs
|
||||
dnl = Enable Raw Codecs
|
||||
dnl ========================================================
|
||||
MOZ_ARG_DISABLE_BOOL(raw,
|
||||
[ --disable-raw Disable support for RAW media],
|
||||
MOZ_RAW=,
|
||||
MOZ_RAW=1)
|
||||
MOZ_ARG_ENABLE_BOOL(raw,
|
||||
[ --enable-raw Enable support for RAW media],
|
||||
MOZ_RAW=1,
|
||||
MOZ_RAW=)
|
||||
|
||||
if test -n "$MOZ_RAW"; then
|
||||
AC_DEFINE(MOZ_RAW)
|
||||
|
@ -177,9 +177,11 @@ SHARED_LIBRARY_LIBS += \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
ifdef MOZ_RAW
|
||||
SHARED_LIBRARY_LIBS += \
|
||||
$(DEPTH)/content/media/raw/$(LIB_PREFIX)gkconraw_s.$(LIB_SUFFIX)\
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
ifdef MOZ_WEBM
|
||||
SHARED_LIBRARY_LIBS += \
|
||||
|
@ -585,7 +585,9 @@ static nsExtraMimeTypeEntry extraMimeEntries [] =
|
||||
{ VIDEO_WEBM, "webm", "Web Media Video" },
|
||||
{ AUDIO_WEBM, "webm", "Web Media Audio" },
|
||||
#endif
|
||||
#ifdef MOZ_RAW
|
||||
{ VIDEO_RAW, "yuv", "Raw YUV Video" },
|
||||
#endif
|
||||
{ AUDIO_WAV, "wav", "Waveform Audio" },
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user