OSDN Git Service

test/h264encode: refine the h264encode to support advanced mode
[android-x86/hardware-intel-common-libva.git] / test / common / va_display_android.cpp
1 /*
2  * Copyright (c) 2012 Intel Corporation. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include <va/va_android.h>
26 #include "va_display.h"
27
28 #include <binder/IPCThreadState.h>
29 #include <binder/ProcessState.h>
30 #include <binder/IServiceManager.h>
31 #include <utils/Log.h>
32 #include <gui/Surface.h>
33 #include <gui/SurfaceComposerClient.h>
34 #include <gui/ISurfaceComposer.h>
35 #include <ui/PixelFormat.h>
36 #include <ui/DisplayInfo.h>
37 #include <binder/MemoryHeapBase.h>
38
39 static unsigned int fake_display = 0xdeada01d;
40
41 using namespace android;
42
43 sp<SurfaceComposerClient> client;
44 sp<Surface> android_surface;
45 sp<ISurface> android_isurface;
46 sp<SurfaceControl> surface_ctrl;
47 #include "../android_winsys.cpp"
48
49 static VADisplay
50 va_open_display_android(void)
51 {
52     return vaGetDisplay(&fake_display);
53 }
54
55 static void
56 va_close_display_android(VADisplay va_dpy)
57 {
58 }
59
60 static VAStatus
61 va_put_surface_android(
62     VADisplay          va_dpy,
63     VASurfaceID        surface,
64     const VARectangle *src_rect,
65     const VARectangle *dst_rect
66 )
67 {
68     //sp<ProcessState> proc(ProcessState::self());
69     //ProcessState::self()->startThreadPool();
70     
71     printf("Create window0 for thread0\n");
72     SURFACE_CREATE(
73         client,
74         surface_ctrl,
75         android_surface,
76         android_isurface,
77         dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height);
78
79     return vaPutSurface(va_dpy, surface, android_isurface,
80                         src_rect->x, src_rect->y,
81                         src_rect->width, src_rect->height,
82                         dst_rect->x, dst_rect->y,
83                         dst_rect->width, dst_rect->height,
84                         NULL, 0,
85                         VA_FRAME_PICTURE);
86 }
87
88 extern "C"
89 const VADisplayHooks va_display_hooks_android = {
90     "android",
91     va_open_display_android,
92     va_close_display_android,
93     va_put_surface_android
94 };