Skip to content

Commit

Permalink
[mmalcodec] Report when support is compiled in
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix authored and Dom Cobley committed Feb 17, 2015
1 parent e578994 commit aea9df0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xbmc/cores/dvdplayer/DVDCodecs/DVDFactoryCodec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,11 @@ CDVDVideoCodec* CDVDFactoryCodec::CreateVideoCodec(CDVDStreamInfo &hint, unsigne
hwSupport += "iMXVPU:yes ";
#else
hwSupport += "iMXVPU:no ";
#endif
#if defined(HAS_MMAL)
hwSupport += "MMAL:yes ";
#else
hwSupport += "MMAL:no ";
#endif
CLog::Log(LOGDEBUG, "CDVDFactoryCodec: compiled in hardware support: %s", hwSupport.c_str());

Expand Down

0 comments on commit aea9df0

Please sign in to comment.