-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. add interface VARenderDevice for output the video into an externa…
…l device when the WM is not aware of it 2. add interface VARenderMode for APP to swith between overlay and GPU post-processing 3. add VADisplayAttribOverlayColorKey/VADisplayAttribOverlayAutoPaintColorKey which is simliar to Xv for overlay post-processing 4. fix the build issue on Android 2.3 Signed-off-by: Austin Yuan <[email protected]> Signed-off-by: Jason Hu <[email protected]> Signed-off-by: Zhaohan Ren <[email protected]>
- Loading branch information
Austin Yuan
committed
Apr 1, 2011
1 parent
a259f9e
commit b305666
Showing
17 changed files
with
173 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,8 @@ rm -rf $RPM_BUILD_ROOT | |
%{_libdir}/libva-x11.so.%{libversion} | ||
%{_libdir}/libva-glx.so.1 | ||
%{_libdir}/libva-glx.so.%{libversion} | ||
%{_libdir}/libva-egl.so.1 | ||
%{_libdir}/libva-egl.so.%{libversion} | ||
%{_bindir}/vainfo | ||
%{_bindir}/test_* | ||
%{_bindir}/h264encode | ||
|
@@ -95,10 +97,12 @@ rm -rf $RPM_BUILD_ROOT | |
%{_libdir}/libva-tpi.so | ||
%{_libdir}/libva-x11.so | ||
%{_libdir}/libva-glx.so | ||
%{_libdir}/libva-egl.so | ||
%{_libdir}/pkgconfig/libva.pc | ||
%{_libdir}/pkgconfig/libva-tpi.pc | ||
%{_libdir}/pkgconfig/libva-x11.pc | ||
%{_libdir}/pkgconfig/libva-glx.pc | ||
%{_libdir}/pkgconfig/libva-egl.pc | ||
|
||
%changelog | ||
* Tue Jan 25 2011 Austin Yuan <[email protected]> 1.0.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
file=$(find . -name "*.[ch]" -o -name "*.cpp") | ||
for i in $file | ||
do | ||
echo $i | ||
astyle --style=linux -s4 -c -s -p -U -H -n $i | ||
done | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.