Fix 9 warnings of "use of GNU old-style field designator extension
[-Wgnu-designator]" while bulding with clang.
Signed-off-by: Victor Toso <victortoso@redhat.com>
This was introduced either as error or to avoid -Wunused-parameter
from compiler. Still, self-assign warning is part of -Wall while
unused-parameter is on -Wextra.
Let's prioritize -Wall
tinyjpeg.c:864:8: warning: explicitly assigning value of variable of
type 'struct jdec_private *' to itself [-Wself-assign]
priv = priv;
~~~~ ^ ~~~~
Signed-off-by: Victor Toso <victortoso@redhat.com>
tinyjpeg.c: In function ‘parse_DHT’:
tinyjpeg.c:319:21: warning: variable ‘Th’ set but not used
unsigned char Tc, Th;
^~
Signed-off-by: Victor Toso <victortoso@redhat.com>
libva-utils is a new git repository that will host sample applications
for libva, conformance tests and others relevant to libva
It is using the same version as libva and it should follow libva version.
It is intended to be released together with libva
It has the same license as libva
Initial functionality ports the vainfo application from libva repository.
The git history for it will remain on libva. To port vainfo, also the
a common libva-display library was ported. The original tests for encoder
and decoder are also ported to this repository. debian folder for vainfo
was also ported
The basic tests are going to be substituted by a new set of tests based
on Gtest framework.
libva-utils will dynamically link libva, use pkg-config to compile and
link properly.
Signed-off-by: Daniel Charles <daniel.charles@intel.com>