Bug 849067 - Unbreak gstreamer builds again. r=cpearce

This commit is contained in:
John Schoenick 2013-03-07 16:58:48 -08:00
parent 0be8fda9a0
commit 641d5f2a6c
2 changed files with 9 additions and 7 deletions

View File

@ -182,6 +182,12 @@ static const char* const gH264Types[4] = {
nullptr
};
static bool
IsH264Type(const nsACString& aType)
{
return CodecListContains(gH264Types, aType);
}
static bool
IsGStreamerSupportedType(const nsACString& aMimeType)
{
@ -201,12 +207,6 @@ IsGStreamerSupportedType(const nsACString& aMimeType)
#endif
return false;
}
static bool
IsH264Type(const nsACString& aType)
{
return CodecListContains(gH264Types, aType);
}
#endif
#ifdef MOZ_WIDGET_GONK

View File

@ -83,4 +83,6 @@ include $(topsrcdir)/config/config.mk
include $(topsrcdir)/ipc/chromium/chromium-config.mk
include $(topsrcdir)/config/rules.mk
DEFINES += -D_IMPL_NS_LAYOUT
DEFINES += -D_IMPL_NS_LAYOUT
CFLAGS += $(GSTREAMER_CFLAGS)
CXXFLAGS += $(GSTREAMER_CFLAGS)