gnash-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gnash-dev] Complilation errors


From: Sandro Santilli
Subject: Re: [Gnash-dev] Complilation errors
Date: Sat, 7 May 2011 14:01:59 +0200

On Sat, May 07, 2011 at 12:38:05PM +0200, Roman B. wrote:
> Hi,
> 
> after last changes in master I get:
> 
> ffmpeg/VideoDecoderFfmpeg.cpp:37:27: fatal error: vaapi_utils.h: No
> such file or directory
> 
> apparently that's a problem with a path. In the file
> libmedia/ffmpeg/VideoDecoderFfmpeg.cpp there is a following include
> #include "vaapi_utils.h".
> 
> However the vaapi_utils.h is in libvaapi/ folder. Changing #include
> "vaapi_utils.h" to #include "../libvaapi/vaapi_utils.h" solves the
> problem.
> 
> Note that is not only one include of that type. There are several others.
> 
> So are those includes wrong and need to be changed?

Looks like HAVE_VAAPI conditional isn't set,
while HAVE_VAAPI macro is. If HAVE_VAAPI was set
the Makefile.am would have added appropriate -I flag.

In configure.ac:

AM_CONDITIONAL(HAVE_VAAPI, test x"${found_va_incl}" = xyes)

But there's no code, anywhere, setting found_va_incl variable,
so no wonder it doesnt' work.

Try changing that line to:

AM_CONDITIONAL(HAVE_VAAPI, test x"${have_ffmpeg_vaapi}" = xyes)

And see if it works for you. And, file a bug if you didn't yet.
Thank you.

--strk; 

  ()   Free GIS & Flash consultant/developer
  /\   http://strk.keybit.net/services.html



reply via email to

[Prev in Thread] Current Thread [Next in Thread]