Re: [PATCH v8 0/6] dcc: Create a stream for non-gl/remote clients that want to use dmabuf (v8)

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

 



Hi,

Disclaimer I am not a Spice developer. But we are very interested in this patch series for our project, so I have tested it extensively.
For Qemu I used your vfio_dmabuf_2 branch.

First I tested it with intel gvt-g and it works perfectly.


In the next test, I used to passthrough a SR-IOV-partitioned Intel Flex 140 vGPU to a windows guest with this https://github.com/intel/Display-Virtualization-for-Windows-OS/tree/main virtualization Dirver. I also applied a few patches from: https://github.com/intel/iotg-yocto-ese-main/tree/master/recipes-devtools/qemu/qemu
to fix some flickering issue.


This setup also works but only from the Windows login screen onwards.

Before it produces a faulty image (see Attachment, its an windows boot screen) is also throwing this error repeatedly:

0:00:05.121613151 1502180 0x5555581ea920 ERROR vadisplay vasurfaceimage.c:171:va_create_surfaces: vaCreateSurfaces: resource allocation failed

and the encoding speed is very slow (before the login screen). I attached the libvalog. This happend with vapostproc and msdkh264enc. I also tested it with msdkvpp it throws the same error once and then crashes.

I debugged it a bit and found out that the code path that encodes DisplaySurface produces the errors while the code path that directly gets dmabuffer from the virto-gpu works without errors.

Regarding the image errors, I dumped the texture of DisplaySurface directly into a png as a test and it looks flawless. Whereas when I dumped the dmabuf created from the DisplaySurface (after egl_get_fd_for_texture) into a png, the same image errors as in spice occurred. So I assume there is something wrong with the texture to dmabuf conversion. When I force the whole exectuion of spice_gl_replace_fd_texture by removing the check for DRM_FORMAT_MOD_LINEAR the image errors are gone (which is wired) but crash / vaCreateSurfaces error/ image error still happens.

My launch parameters are:
"-m", "16384",
"-enable-kvm",
"-cpu", "host",
"-smp", "cores=16",
"-M", "q35",
"-snapshot",
"-drive", "file=/home/ms2489/Images/win10_v1.qcow2,format=qcow2,cache=none",
"-device", "vfio-pci,host=0000:0a:00.1",
"-device", "virtio-vga,max_outputs=1,blob=true",
"-spice", "gl=on,port=5901,disable-ticketing=on,preferred-codec=gstreamer:h264,rendernode=/dev/dri/renderD131",
"-object", "memory-backend-memfd,id=mem1,size=16G",
"-machine", "memory-backend=mem1",

The same also happens without the vGPU passthrough.


Greetings
Michael


On 10.06.24 20:34, Vivek Kasireddy wrote:
For clients that cannot accept a dmabuf fd directly (such as those
running on a remote system), this patch series provides a way for
the Spice server to stream the gl/dmabuf data/buffer instead. This
is mostly done by enabling the creation of Gst memory using a dmabuf
fd as the source. This ability is useful given that dmabuf is the
standard mechanism for sharing buffers between various drivers and
userspace in many Graphics and Media usecases. Currently, this is
tested with Qemu and remote-viewer using the x264enc/avdec_h264
and msdkh264enc/dec plugins to stream the Guest/VM desktop but it
can be easily extended to other plugins and applications.

Here is roughly how things work:
- The application (e.g, Qemu) chooses its preferred codec (a Gstreamer
   one) and calls gl_scanout (to update the fd) followed by gl_draw.
- In response, the Spice server checks to see if the client is capable
   of accepting a dmabuf fd directly or not. If yes, the fd is forwarded
   directly to the client; otherwise, a new stream is created.
- The Spice server then sends the dmabuf fd to the Gstreamer encoder
   which uses it as an input for creating an encoded buffer which is then
   sent to the client.
- Once the encoding process is done, an async completion cookie is sent
   to the application.

Here is a link to the previous version that used a drawable to share
the dmabuf fd with the Gstreamer encoder:
https://lists.freedesktop.org/archives/spice-devel/2023-January/052948.html

This version is tested together with following (required) patches in qemu:
https://gitlab.freedesktop.org/Vivek/qemu/-/commits/spice_gl_on_v4

Changelog:

v8:
- Added a new gstreamer-encoder patch to this series to convert drm format
   shared by the VMM to the appropriate Gstreamer format.

v7:
- Revert back to the previous design where we do not share fd with the stream
   and scanout is the sole owner of the fd. This is because sharing fd ownership
   opens up a lot of corner cases.

v6: (Frediano)
- Properly share ownership of the dmabuf fd between stream and scanout
- Ensure that a newly created stream is associated with all connected clients

v5:
- Addressed review comments from Frediano mainly regarding adding autoconf
   support for gstreamer-allocators dependency and not needing to access
   scanout as part of gl draw operation

v4:
- Test with Virgl enabled
- Associate dmabuf's y0_top with stream's top_down variable

v3:
- Updated the second patch to have a new primary surface created
   whenever a new stream gets created. This will avoid having to
   trigger primary surface creation from Qemu. And, this change
   also fixes the following error seen with v2:
   ../server/display-channel.cpp:2074:display_channel_create_surface:
   condition `!display->priv->surfaces[surface_id]' failed
- Rebase all patches on master

v2:
- Update all patches to address review comments from Frediano
- Tested this series with msdkh264enc/dec plugins that will be added
   in another patch series

Cc: Frediano Ziglio <freddy77@xxxxxxxxx>
Cc: Gerd Hoffmann <kraxel@xxxxxxxxxx>
Cc: Marc-André Lureau <marcandre.lureau@xxxxxxxxxx>
Cc: Dongwon Kim <dongwon.kim@xxxxxxxxx>

Vivek Kasireddy (6):
   dcc: Check to see if the client supports multiple codecs (v2)
   dcc: Create a stream associated with gl_draw for non-gl clients (v6)
   dcc-send: Encode and send gl_draw stream data to the remote client
     (v4)
   gstreamer-encoder: Add an encoder function that takes dmabuf fd as
     input (v3)
   gstreamer-encoder: Map the drm format to appropriate Gstreamer format
   video-stream: Don't stop a stream associated with gl_draw (v2)

  configure.ac                     |   2 +-
  meson.build                      |   2 +-
  server/dcc-send.cpp              | 159 ++++++++++++++++----
  server/dcc.cpp                   |  31 ++--
  server/dcc.h                     |   6 +
  server/display-channel-private.h |   1 +
  server/display-channel.cpp       |   1 +
  server/gstreamer-encoder.c       | 246 ++++++++++++++++++++++++++-----
  server/video-encoder.h           |  14 ++
  server/video-stream.cpp          | 205 ++++++++++++++++++++++----
  server/video-stream.h            |   4 +
  11 files changed, 563 insertions(+), 108 deletions(-)

Attachment: Screenshot.png
Description: PNG image

[51707.681649][ctx       none]==========va_TraceCreateSurfaces
[51707.681654][ctx       none]	width = 64
[51707.681654][ctx       none]	height = 64
[51707.681655][ctx       none]	format = 1
[51707.681655][ctx       none]	num_surfaces = 1
[51707.681655][ctx       none]		surfaces[0] = 0x00000000
[51707.681656][ctx       none]	attrib_list[0] =
[51707.681656][ctx       none]		type = 8
[51707.681656][ctx       none]		flags = 2
[51707.681656][ctx       none]		value.type = 1
[51707.681657][ctx       none]		value.value.i = 0x0000000c
[51707.681657][ctx       none]	attrib_list[1] =
[51707.681657][ctx       none]		type = 6
[51707.681657][ctx       none]		flags = 2
[51707.681658][ctx       none]		value.type = 1
[51707.681658][ctx       none]		value.value.i = 0x00000001
[51707.681658][ctx       none]	attrib_list[2] =
[51707.681658][ctx       none]		type = 1
[51707.681659][ctx       none]		flags = 2
[51707.681659][ctx       none]		value.type = 1
[51707.681659][ctx       none]		value.value.i = 0x3231564e
[51707.682001][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682013][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682014][ctx       none]	surfaceId = 0x00000000
[51707.682014][ctx       none]	memType   = 0x40000000
[51707.682014][ctx       none]	flags     = 0x00000007
[51707.682015][ctx       none]	fourcc      = 842094158
[51707.682015][ctx       none]	width       = 64
[51707.682015][ctx       none]	height      = 64
[51707.682015][ctx       none]	num_objects = 1
[51707.682016][ctx       none]	object 0, fd       = 1065
[51707.682016][ctx       none]	object 0, size     = 12288
[51707.682016][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682017][ctx       none]	num_objects = 2
[51707.682017][ctx       none]	layer 0, drm_format = 538982482
[51707.682017][ctx       none]	layer 0, size       = 1
[51707.682018][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682018][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682019][ctx       none]	layer 0, pitch      = [128, 0, 0, 0]
[51707.682019][ctx       none]	layer 1, drm_format = 943215175
[51707.682019][ctx       none]	layer 1, size       = 1
[51707.682020][ctx       none]	layer 1, object idx = [0, 0, 0, 0]
[51707.682020][ctx       none]	layer 1, offset     = [8192, 0, 0, 0]
[51707.682020][ctx       none]	layer 1, pitch      = [128, 0, 0, 0]
[51707.682021][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682022][ctx       none]==========va_TraceDestroySurfaces
[51707.682022][ctx       none]		surfaces[0] = 0x00000000
[51707.682031][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682041][ctx       none]==========va_TraceCreateSurfaces
[51707.682042][ctx       none]	width = 64
[51707.682042][ctx       none]	height = 64
[51707.682042][ctx       none]	format = 1
[51707.682042][ctx       none]	num_surfaces = 1
[51707.682043][ctx       none]		surfaces[0] = 0x00000000
[51707.682043][ctx       none]	attrib_list[0] =
[51707.682043][ctx       none]		type = 8
[51707.682044][ctx       none]		flags = 2
[51707.682044][ctx       none]		value.type = 1
[51707.682044][ctx       none]		value.value.i = 0x0000000c
[51707.682044][ctx       none]	attrib_list[1] =
[51707.682045][ctx       none]		type = 6
[51707.682045][ctx       none]		flags = 2
[51707.682045][ctx       none]		value.type = 1
[51707.682045][ctx       none]		value.value.i = 0x00000001
[51707.682045][ctx       none]	attrib_list[2] =
[51707.682046][ctx       none]		type = 1
[51707.682046][ctx       none]		flags = 2
[51707.682046][ctx       none]		value.type = 1
[51707.682046][ctx       none]		value.value.i = 0x30323449
[51707.682048][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682052][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682052][ctx       none]	surfaceId = 0x00000000
[51707.682053][ctx       none]	memType   = 0x40000000
[51707.682053][ctx       none]	flags     = 0x00000007
[51707.682053][ctx       none]	fourcc      = 808596553
[51707.682053][ctx       none]	width       = 64
[51707.682054][ctx       none]	height      = 64
[51707.682054][ctx       none]	num_objects = 1
[51707.682054][ctx       none]	object 0, fd       = 1066
[51707.682054][ctx       none]	object 0, size     = 12288
[51707.682055][ctx       none]	object 0, modifier = 0x0
[51707.682055][ctx       none]	num_objects = 3
[51707.682055][ctx       none]	layer 0, drm_format = 538982482
[51707.682056][ctx       none]	layer 0, size       = 1
[51707.682056][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682056][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682057][ctx       none]	layer 0, pitch      = [128, 0, 0, 0]
[51707.682057][ctx       none]	layer 1, drm_format = 538982482
[51707.682057][ctx       none]	layer 1, size       = 1
[51707.682058][ctx       none]	layer 1, object idx = [0, 0, 0, 0]
[51707.682058][ctx       none]	layer 1, offset     = [8192, 0, 0, 0]
[51707.682059][ctx       none]	layer 1, pitch      = [64, 0, 0, 0]
[51707.682059][ctx       none]	layer 2, drm_format = 538982482
[51707.682059][ctx       none]	layer 2, size       = 1
[51707.682059][ctx       none]	layer 2, object idx = [0, 0, 0, 0]
[51707.682060][ctx       none]	layer 2, offset     = [10240, 0, 0, 0]
[51707.682060][ctx       none]	layer 2, pitch      = [64, 0, 0, 0]
[51707.682061][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682062][ctx       none]==========va_TraceDestroySurfaces
[51707.682062][ctx       none]		surfaces[0] = 0x00000000
[51707.682069][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682075][ctx       none]==========va_TraceCreateSurfaces
[51707.682075][ctx       none]	width = 64
[51707.682075][ctx       none]	height = 64
[51707.682075][ctx       none]	format = 1
[51707.682076][ctx       none]	num_surfaces = 1
[51707.682076][ctx       none]		surfaces[0] = 0x00000000
[51707.682076][ctx       none]	attrib_list[0] =
[51707.682076][ctx       none]		type = 8
[51707.682077][ctx       none]		flags = 2
[51707.682077][ctx       none]		value.type = 1
[51707.682077][ctx       none]		value.value.i = 0x0000000c
[51707.682077][ctx       none]	attrib_list[1] =
[51707.682078][ctx       none]		type = 6
[51707.682078][ctx       none]		flags = 2
[51707.682078][ctx       none]		value.type = 1
[51707.682078][ctx       none]		value.value.i = 0x00000001
[51707.682079][ctx       none]	attrib_list[2] =
[51707.682079][ctx       none]		type = 1
[51707.682079][ctx       none]		flags = 2
[51707.682079][ctx       none]		value.type = 1
[51707.682079][ctx       none]		value.value.i = 0x32315659
[51707.682081][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682084][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682085][ctx       none]	surfaceId = 0x00000000
[51707.682085][ctx       none]	memType   = 0x40000000
[51707.682085][ctx       none]	flags     = 0x00000007
[51707.682085][ctx       none]	fourcc      = 842094169
[51707.682086][ctx       none]	width       = 64
[51707.682086][ctx       none]	height      = 64
[51707.682086][ctx       none]	num_objects = 1
[51707.682086][ctx       none]	object 0, fd       = 1067
[51707.682087][ctx       none]	object 0, size     = 12288
[51707.682087][ctx       none]	object 0, modifier = 0x0
[51707.682087][ctx       none]	num_objects = 3
[51707.682087][ctx       none]	layer 0, drm_format = 538982482
[51707.682088][ctx       none]	layer 0, size       = 1
[51707.682088][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682088][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682089][ctx       none]	layer 0, pitch      = [128, 0, 0, 0]
[51707.682089][ctx       none]	layer 1, drm_format = 538982482
[51707.682089][ctx       none]	layer 1, size       = 1
[51707.682090][ctx       none]	layer 1, object idx = [0, 0, 0, 0]
[51707.682090][ctx       none]	layer 1, offset     = [8192, 0, 0, 0]
[51707.682091][ctx       none]	layer 1, pitch      = [64, 0, 0, 0]
[51707.682091][ctx       none]	layer 2, drm_format = 538982482
[51707.682091][ctx       none]	layer 2, size       = 1
[51707.682091][ctx       none]	layer 2, object idx = [0, 0, 0, 0]
[51707.682092][ctx       none]	layer 2, offset     = [10240, 0, 0, 0]
[51707.682092][ctx       none]	layer 2, pitch      = [64, 0, 0, 0]
[51707.682093][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682094][ctx       none]==========va_TraceDestroySurfaces
[51707.682094][ctx       none]		surfaces[0] = 0x00000000
[51707.682100][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682107][ctx       none]==========va_TraceCreateSurfaces
[51707.682107][ctx       none]	width = 64
[51707.682108][ctx       none]	height = 64
[51707.682108][ctx       none]	format = 2
[51707.682108][ctx       none]	num_surfaces = 1
[51707.682108][ctx       none]		surfaces[0] = 0x00000000
[51707.682109][ctx       none]	attrib_list[0] =
[51707.682109][ctx       none]		type = 8
[51707.682109][ctx       none]		flags = 2
[51707.682109][ctx       none]		value.type = 1
[51707.682109][ctx       none]		value.value.i = 0x0000000c
[51707.682110][ctx       none]	attrib_list[1] =
[51707.682110][ctx       none]		type = 6
[51707.682110][ctx       none]		flags = 2
[51707.682110][ctx       none]		value.type = 1
[51707.682111][ctx       none]		value.value.i = 0x00000001
[51707.682111][ctx       none]	attrib_list[2] =
[51707.682111][ctx       none]		type = 1
[51707.682111][ctx       none]		flags = 2
[51707.682112][ctx       none]		value.type = 1
[51707.682112][ctx       none]		value.value.i = 0x32595559
[51707.682114][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682117][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682117][ctx       none]	surfaceId = 0x00000000
[51707.682117][ctx       none]	memType   = 0x40000000
[51707.682118][ctx       none]	flags     = 0x00000007
[51707.682118][ctx       none]	fourcc      = 844715353
[51707.682118][ctx       none]	width       = 64
[51707.682118][ctx       none]	height      = 64
[51707.682119][ctx       none]	num_objects = 1
[51707.682119][ctx       none]	object 0, fd       = 1068
[51707.682119][ctx       none]	object 0, size     = 12288
[51707.682119][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682120][ctx       none]	num_objects = 1
[51707.682120][ctx       none]	layer 0, drm_format = 1448695129
[51707.682120][ctx       none]	layer 0, size       = 1
[51707.682121][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682121][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682121][ctx       none]	layer 0, pitch      = [128, 0, 0, 0]
[51707.682122][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682123][ctx       none]==========va_TraceDestroySurfaces
[51707.682123][ctx       none]		surfaces[0] = 0x00000000
[51707.682126][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682132][ctx       none]==========va_TraceCreateSurfaces
[51707.682133][ctx       none]	width = 64
[51707.682133][ctx       none]	height = 64
[51707.682133][ctx       none]	format = 2
[51707.682133][ctx       none]	num_surfaces = 1
[51707.682134][ctx       none]		surfaces[0] = 0x00000000
[51707.682134][ctx       none]	attrib_list[0] =
[51707.682134][ctx       none]		type = 8
[51707.682134][ctx       none]		flags = 2
[51707.682135][ctx       none]		value.type = 1
[51707.682135][ctx       none]		value.value.i = 0x0000000c
[51707.682135][ctx       none]	attrib_list[1] =
[51707.682135][ctx       none]		type = 6
[51707.682136][ctx       none]		flags = 2
[51707.682136][ctx       none]		value.type = 1
[51707.682136][ctx       none]		value.value.i = 0x00000001
[51707.682136][ctx       none]	attrib_list[2] =
[51707.682136][ctx       none]		type = 1
[51707.682137][ctx       none]		flags = 2
[51707.682137][ctx       none]		value.type = 1
[51707.682137][ctx       none]		value.value.i = 0x48323234
[51707.682139][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682142][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682142][ctx       none]	surfaceId = 0x00000000
[51707.682143][ctx       none]	memType   = 0x40000000
[51707.682143][ctx       none]	flags     = 0x00000007
[51707.682143][ctx       none]	fourcc      = 1211249204
[51707.682143][ctx       none]	width       = 64
[51707.682144][ctx       none]	height      = 64
[51707.682144][ctx       none]	num_objects = 1
[51707.682144][ctx       none]	object 0, fd       = 1069
[51707.682144][ctx       none]	object 0, size     = 24576
[51707.682145][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682145][ctx       none]	num_objects = 3
[51707.682145][ctx       none]	layer 0, drm_format = 538982482
[51707.682146][ctx       none]	layer 0, size       = 1
[51707.682146][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682146][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682147][ctx       none]	layer 0, pitch      = [128, 0, 0, 0]
[51707.682147][ctx       none]	layer 1, drm_format = 538982482
[51707.682147][ctx       none]	layer 1, size       = 1
[51707.682148][ctx       none]	layer 1, object idx = [0, 0, 0, 0]
[51707.682148][ctx       none]	layer 1, offset     = [8192, 0, 0, 0]
[51707.682148][ctx       none]	layer 1, pitch      = [128, 0, 0, 0]
[51707.682149][ctx       none]	layer 2, drm_format = 538982482
[51707.682149][ctx       none]	layer 2, size       = 1
[51707.682149][ctx       none]	layer 2, object idx = [0, 0, 0, 0]
[51707.682150][ctx       none]	layer 2, offset     = [16384, 0, 0, 0]
[51707.682150][ctx       none]	layer 2, pitch      = [128, 0, 0, 0]
[51707.682151][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682151][ctx       none]==========va_TraceDestroySurfaces
[51707.682152][ctx       none]		surfaces[0] = 0x00000000
[51707.682158][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682164][ctx       none]==========va_TraceCreateSurfaces
[51707.682164][ctx       none]	width = 64
[51707.682164][ctx       none]	height = 64
[51707.682165][ctx       none]	format = 256
[51707.682165][ctx       none]	num_surfaces = 1
[51707.682165][ctx       none]		surfaces[0] = 0x00000000
[51707.682165][ctx       none]	attrib_list[0] =
[51707.682166][ctx       none]		type = 8
[51707.682166][ctx       none]		flags = 2
[51707.682166][ctx       none]		value.type = 1
[51707.682166][ctx       none]		value.value.i = 0x0000000c
[51707.682167][ctx       none]	attrib_list[1] =
[51707.682167][ctx       none]		type = 6
[51707.682167][ctx       none]		flags = 2
[51707.682167][ctx       none]		value.type = 1
[51707.682168][ctx       none]		value.value.i = 0x00000001
[51707.682168][ctx       none]	attrib_list[2] =
[51707.682168][ctx       none]		type = 1
[51707.682168][ctx       none]		flags = 2
[51707.682168][ctx       none]		value.type = 1
[51707.682169][ctx       none]		value.value.i = 0x30313050
[51707.682171][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682174][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682174][ctx       none]	surfaceId = 0x00000000
[51707.682174][ctx       none]	memType   = 0x40000000
[51707.682175][ctx       none]	flags     = 0x00000007
[51707.682175][ctx       none]	fourcc      = 808530000
[51707.682175][ctx       none]	width       = 64
[51707.682175][ctx       none]	height      = 64
[51707.682176][ctx       none]	num_objects = 1
[51707.682176][ctx       none]	object 0, fd       = 1070
[51707.682176][ctx       none]	object 0, size     = 12288
[51707.682176][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682177][ctx       none]	num_objects = 2
[51707.682177][ctx       none]	layer 0, drm_format = 540422482
[51707.682177][ctx       none]	layer 0, size       = 1
[51707.682178][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682178][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682178][ctx       none]	layer 0, pitch      = [128, 0, 0, 0]
[51707.682179][ctx       none]	layer 1, drm_format = 842224199
[51707.682179][ctx       none]	layer 1, size       = 1
[51707.682179][ctx       none]	layer 1, object idx = [0, 0, 0, 0]
[51707.682180][ctx       none]	layer 1, offset     = [8192, 0, 0, 0]
[51707.682180][ctx       none]	layer 1, pitch      = [128, 0, 0, 0]
[51707.682181][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682181][ctx       none]==========va_TraceDestroySurfaces
[51707.682182][ctx       none]		surfaces[0] = 0x00000000
[51707.682187][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682193][ctx       none]==========va_TraceCreateSurfaces
[51707.682193][ctx       none]	width = 64
[51707.682193][ctx       none]	height = 64
[51707.682194][ctx       none]	format = 131072
[51707.682194][ctx       none]	num_surfaces = 1
[51707.682194][ctx       none]		surfaces[0] = 0x00000000
[51707.682194][ctx       none]	attrib_list[0] =
[51707.682195][ctx       none]		type = 8
[51707.682195][ctx       none]		flags = 2
[51707.682195][ctx       none]		value.type = 1
[51707.682195][ctx       none]		value.value.i = 0x0000000c
[51707.682196][ctx       none]	attrib_list[1] =
[51707.682196][ctx       none]		type = 6
[51707.682196][ctx       none]		flags = 2
[51707.682196][ctx       none]		value.type = 1
[51707.682196][ctx       none]		value.value.i = 0x00000001
[51707.682197][ctx       none]	attrib_list[2] =
[51707.682197][ctx       none]		type = 1
[51707.682197][ctx       none]		flags = 2
[51707.682197][ctx       none]		value.type = 1
[51707.682198][ctx       none]		value.value.i = 0x34324752
[51707.682199][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682203][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682203][ctx       none]	surfaceId = 0x00000000
[51707.682203][ctx       none]	memType   = 0x40000000
[51707.682203][ctx       none]	flags     = 0x00000007
[51707.682204][ctx       none]	fourcc      = 875710290
[51707.682204][ctx       none]	width       = 64
[51707.682204][ctx       none]	height      = 64
[51707.682204][ctx       none]	num_objects = 1
[51707.682205][ctx       none]	object 0, fd       = 1071
[51707.682205][ctx       none]	object 0, size     = 16384
[51707.682205][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682205][ctx       none]	num_objects = 0
[51707.682206][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_ERROR_INVALID_SURFACE, invalid VASurfaceID 
[51707.682207][ctx       none]==========va_TraceDestroySurfaces
[51707.682207][ctx       none]		surfaces[0] = 0x00000000
[51707.682216][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682223][ctx       none]==========va_TraceCreateSurfaces
[51707.682223][ctx       none]	width = 64
[51707.682224][ctx       none]	height = 64
[51707.682224][ctx       none]	format = 131072
[51707.682224][ctx       none]	num_surfaces = 1
[51707.682224][ctx       none]		surfaces[0] = 0x00000000
[51707.682225][ctx       none]	attrib_list[0] =
[51707.682225][ctx       none]		type = 8
[51707.682225][ctx       none]		flags = 2
[51707.682225][ctx       none]		value.type = 1
[51707.682226][ctx       none]		value.value.i = 0x0000000c
[51707.682226][ctx       none]	attrib_list[1] =
[51707.682226][ctx       none]		type = 6
[51707.682226][ctx       none]		flags = 2
[51707.682226][ctx       none]		value.type = 1
[51707.682227][ctx       none]		value.value.i = 0x00000001
[51707.682227][ctx       none]	attrib_list[2] =
[51707.682227][ctx       none]		type = 1
[51707.682227][ctx       none]		flags = 2
[51707.682228][ctx       none]		value.type = 1
[51707.682228][ctx       none]		value.value.i = 0x42475241
[51707.682230][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682233][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682233][ctx       none]	surfaceId = 0x00000000
[51707.682233][ctx       none]	memType   = 0x40000000
[51707.682234][ctx       none]	flags     = 0x00000007
[51707.682234][ctx       none]	fourcc      = 1111970369
[51707.682234][ctx       none]	width       = 64
[51707.682234][ctx       none]	height      = 64
[51707.682235][ctx       none]	num_objects = 1
[51707.682235][ctx       none]	object 0, fd       = 1071
[51707.682235][ctx       none]	object 0, size     = 65536
[51707.682235][ctx       none]	object 0, modifier = 0x100000000000002
[51707.682236][ctx       none]	num_objects = 1
[51707.682236][ctx       none]	layer 0, drm_format = 875713089
[51707.682236][ctx       none]	layer 0, size       = 1
[51707.682237][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682237][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682237][ctx       none]	layer 0, pitch      = [512, 0, 0, 0]
[51707.682238][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682239][ctx       none]==========va_TraceDestroySurfaces
[51707.682239][ctx       none]		surfaces[0] = 0x00000000
[51707.682245][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682251][ctx       none]==========va_TraceCreateSurfaces
[51707.682251][ctx       none]	width = 64
[51707.682251][ctx       none]	height = 64
[51707.682251][ctx       none]	format = 131072
[51707.682252][ctx       none]	num_surfaces = 1
[51707.682252][ctx       none]		surfaces[0] = 0x00000000
[51707.682252][ctx       none]	attrib_list[0] =
[51707.682252][ctx       none]		type = 8
[51707.682253][ctx       none]		flags = 2
[51707.682253][ctx       none]		value.type = 1
[51707.682253][ctx       none]		value.value.i = 0x0000000c
[51707.682253][ctx       none]	attrib_list[1] =
[51707.682254][ctx       none]		type = 6
[51707.682254][ctx       none]		flags = 2
[51707.682254][ctx       none]		value.type = 1
[51707.682254][ctx       none]		value.value.i = 0x00000001
[51707.682254][ctx       none]	attrib_list[2] =
[51707.682255][ctx       none]		type = 1
[51707.682255][ctx       none]		flags = 2
[51707.682255][ctx       none]		value.type = 1
[51707.682255][ctx       none]		value.value.i = 0x52474241
[51707.682257][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682260][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682261][ctx       none]	surfaceId = 0x00000000
[51707.682261][ctx       none]	memType   = 0x40000000
[51707.682261][ctx       none]	flags     = 0x00000007
[51707.682261][ctx       none]	fourcc      = 1380401729
[51707.682262][ctx       none]	width       = 64
[51707.682262][ctx       none]	height      = 64
[51707.682262][ctx       none]	num_objects = 1
[51707.682262][ctx       none]	object 0, fd       = 1072
[51707.682263][ctx       none]	object 0, size     = 65536
[51707.682263][ctx       none]	object 0, modifier = 0x100000000000002
[51707.682263][ctx       none]	num_objects = 1
[51707.682263][ctx       none]	layer 0, drm_format = 875708993
[51707.682264][ctx       none]	layer 0, size       = 1
[51707.682264][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682264][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682265][ctx       none]	layer 0, pitch      = [512, 0, 0, 0]
[51707.682265][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682266][ctx       none]==========va_TraceDestroySurfaces
[51707.682266][ctx       none]		surfaces[0] = 0x00000000
[51707.682270][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682275][ctx       none]==========va_TraceCreateSurfaces
[51707.682275][ctx       none]	width = 64
[51707.682275][ctx       none]	height = 64
[51707.682276][ctx       none]	format = 131072
[51707.682276][ctx       none]	num_surfaces = 1
[51707.682276][ctx       none]		surfaces[0] = 0x00000000
[51707.682276][ctx       none]	attrib_list[0] =
[51707.682277][ctx       none]		type = 8
[51707.682277][ctx       none]		flags = 2
[51707.682277][ctx       none]		value.type = 1
[51707.682277][ctx       none]		value.value.i = 0x0000000c
[51707.682278][ctx       none]	attrib_list[1] =
[51707.682278][ctx       none]		type = 6
[51707.682278][ctx       none]		flags = 2
[51707.682278][ctx       none]		value.type = 1
[51707.682278][ctx       none]		value.value.i = 0x00000001
[51707.682279][ctx       none]	attrib_list[2] =
[51707.682279][ctx       none]		type = 1
[51707.682279][ctx       none]		flags = 2
[51707.682279][ctx       none]		value.type = 1
[51707.682280][ctx       none]		value.value.i = 0x30335241
[51707.682284][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682287][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682287][ctx       none]	surfaceId = 0x00000000
[51707.682288][ctx       none]	memType   = 0x40000000
[51707.682288][ctx       none]	flags     = 0x00000007
[51707.682288][ctx       none]	fourcc      = 808669761
[51707.682288][ctx       none]	width       = 64
[51707.682289][ctx       none]	height      = 64
[51707.682289][ctx       none]	num_objects = 1
[51707.682289][ctx       none]	object 0, fd       = 1073
[51707.682289][ctx       none]	object 0, size     = 65536
[51707.682290][ctx       none]	object 0, modifier = 0x100000000000002
[51707.682290][ctx       none]	num_objects = 1
[51707.682290][ctx       none]	layer 0, drm_format = 808669761
[51707.682290][ctx       none]	layer 0, size       = 1
[51707.682291][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682291][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682292][ctx       none]	layer 0, pitch      = [512, 0, 0, 0]
[51707.682292][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682293][ctx       none]==========va_TraceDestroySurfaces
[51707.682293][ctx       none]		surfaces[0] = 0x00000000
[51707.682296][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682303][ctx       none]==========va_TraceCreateSurfaces
[51707.682303][ctx       none]	width = 64
[51707.682303][ctx       none]	height = 64
[51707.682303][ctx       none]	format = 4
[51707.682304][ctx       none]	num_surfaces = 1
[51707.682304][ctx       none]		surfaces[0] = 0x00000000
[51707.682304][ctx       none]	attrib_list[0] =
[51707.682304][ctx       none]		type = 8
[51707.682305][ctx       none]		flags = 2
[51707.682305][ctx       none]		value.type = 1
[51707.682305][ctx       none]		value.value.i = 0x0000000c
[51707.682305][ctx       none]	attrib_list[1] =
[51707.682306][ctx       none]		type = 6
[51707.682306][ctx       none]		flags = 2
[51707.682306][ctx       none]		value.type = 1
[51707.682306][ctx       none]		value.value.i = 0x00000001
[51707.682306][ctx       none]	attrib_list[2] =
[51707.682307][ctx       none]		type = 1
[51707.682307][ctx       none]		flags = 2
[51707.682307][ctx       none]		value.type = 1
[51707.682307][ctx       none]		value.value.i = 0x56555941
[51707.682309][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682313][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682313][ctx       none]	surfaceId = 0x00000000
[51707.682313][ctx       none]	memType   = 0x40000000
[51707.682313][ctx       none]	flags     = 0x00000007
[51707.682314][ctx       none]	fourcc      = 1448433985
[51707.682314][ctx       none]	width       = 64
[51707.682314][ctx       none]	height      = 64
[51707.682314][ctx       none]	num_objects = 1
[51707.682315][ctx       none]	object 0, fd       = 1074
[51707.682315][ctx       none]	object 0, size     = 36864
[51707.682315][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682316][ctx       none]	num_objects = 1
[51707.682316][ctx       none]	layer 0, drm_format = 1448433985
[51707.682316][ctx       none]	layer 0, size       = 1
[51707.682316][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682317][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682317][ctx       none]	layer 0, pitch      = [384, 0, 0, 0]
[51707.682318][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682318][ctx       none]==========va_TraceDestroySurfaces
[51707.682319][ctx       none]		surfaces[0] = 0x00000000
[51707.682324][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682329][ctx       none]==========va_TraceCreateSurfaces
[51707.682329][ctx       none]	width = 64
[51707.682330][ctx       none]	height = 64
[51707.682330][ctx       none]	format = 512
[51707.682330][ctx       none]	num_surfaces = 1
[51707.682330][ctx       none]		surfaces[0] = 0x00000000
[51707.682331][ctx       none]	attrib_list[0] =
[51707.682331][ctx       none]		type = 8
[51707.682331][ctx       none]		flags = 2
[51707.682331][ctx       none]		value.type = 1
[51707.682332][ctx       none]		value.value.i = 0x0000000c
[51707.682332][ctx       none]	attrib_list[1] =
[51707.682332][ctx       none]		type = 6
[51707.682332][ctx       none]		flags = 2
[51707.682332][ctx       none]		value.type = 1
[51707.682333][ctx       none]		value.value.i = 0x00000001
[51707.682333][ctx       none]	attrib_list[2] =
[51707.682333][ctx       none]		type = 1
[51707.682333][ctx       none]		flags = 2
[51707.682334][ctx       none]		value.type = 1
[51707.682334][ctx       none]		value.value.i = 0x30313259
[51707.682336][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682339][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682339][ctx       none]	surfaceId = 0x00000000
[51707.682339][ctx       none]	memType   = 0x40000000
[51707.682340][ctx       none]	flags     = 0x00000007
[51707.682340][ctx       none]	fourcc      = 808530521
[51707.682340][ctx       none]	width       = 64
[51707.682340][ctx       none]	height      = 64
[51707.682340][ctx       none]	num_objects = 1
[51707.682341][ctx       none]	object 0, fd       = 1075
[51707.682341][ctx       none]	object 0, size     = 36864
[51707.682341][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682342][ctx       none]	num_objects = 1
[51707.682342][ctx       none]	layer 0, drm_format = 808530521
[51707.682342][ctx       none]	layer 0, size       = 1
[51707.682342][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682343][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682343][ctx       none]	layer 0, pitch      = [384, 0, 0, 0]
[51707.682344][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682344][ctx       none]==========va_TraceDestroySurfaces
[51707.682345][ctx       none]		surfaces[0] = 0x00000000
[51707.682348][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682353][ctx       none]==========va_TraceCreateSurfaces
[51707.682354][ctx       none]	width = 64
[51707.682354][ctx       none]	height = 64
[51707.682354][ctx       none]	format = 1024
[51707.682354][ctx       none]	num_surfaces = 1
[51707.682355][ctx       none]		surfaces[0] = 0x00000000
[51707.682355][ctx       none]	attrib_list[0] =
[51707.682355][ctx       none]		type = 8
[51707.682355][ctx       none]		flags = 2
[51707.682356][ctx       none]		value.type = 1
[51707.682356][ctx       none]		value.value.i = 0x0000000c
[51707.682356][ctx       none]	attrib_list[1] =
[51707.682356][ctx       none]		type = 6
[51707.682357][ctx       none]		flags = 2
[51707.682357][ctx       none]		value.type = 1
[51707.682357][ctx       none]		value.value.i = 0x00000001
[51707.682357][ctx       none]	attrib_list[2] =
[51707.682358][ctx       none]		type = 1
[51707.682358][ctx       none]		flags = 2
[51707.682358][ctx       none]		value.type = 1
[51707.682358][ctx       none]		value.value.i = 0x30313459
[51707.682360][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682363][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682363][ctx       none]	surfaceId = 0x00000000
[51707.682364][ctx       none]	memType   = 0x40000000
[51707.682364][ctx       none]	flags     = 0x00000007
[51707.682364][ctx       none]	fourcc      = 808531033
[51707.682364][ctx       none]	width       = 64
[51707.682365][ctx       none]	height      = 64
[51707.682365][ctx       none]	num_objects = 1
[51707.682365][ctx       none]	object 0, fd       = 1076
[51707.682365][ctx       none]	object 0, size     = 36864
[51707.682366][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682366][ctx       none]	num_objects = 1
[51707.682366][ctx       none]	layer 0, drm_format = 808531033
[51707.682366][ctx       none]	layer 0, size       = 1
[51707.682367][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682367][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682368][ctx       none]	layer 0, pitch      = [384, 0, 0, 0]
[51707.682368][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682369][ctx       none]==========va_TraceDestroySurfaces
[51707.682369][ctx       none]		surfaces[0] = 0x00000000
[51707.682375][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682381][ctx       none]==========va_TraceCreateSurfaces
[51707.682381][ctx       none]	width = 64
[51707.682381][ctx       none]	height = 64
[51707.682381][ctx       none]	format = 4096
[51707.682382][ctx       none]	num_surfaces = 1
[51707.682382][ctx       none]		surfaces[0] = 0x00000000
[51707.682382][ctx       none]	attrib_list[0] =
[51707.682382][ctx       none]		type = 8
[51707.682383][ctx       none]		flags = 2
[51707.682383][ctx       none]		value.type = 1
[51707.682383][ctx       none]		value.value.i = 0x0000000c
[51707.682383][ctx       none]	attrib_list[1] =
[51707.682384][ctx       none]		type = 6
[51707.682384][ctx       none]		flags = 2
[51707.682384][ctx       none]		value.type = 1
[51707.682384][ctx       none]		value.value.i = 0x00000001
[51707.682384][ctx       none]	attrib_list[2] =
[51707.682385][ctx       none]		type = 1
[51707.682385][ctx       none]		flags = 2
[51707.682385][ctx       none]		value.type = 1
[51707.682385][ctx       none]		value.value.i = 0x32313050
[51707.682387][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682390][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682390][ctx       none]	surfaceId = 0x00000000
[51707.682391][ctx       none]	memType   = 0x40000000
[51707.682391][ctx       none]	flags     = 0x00000007
[51707.682391][ctx       none]	fourcc      = 842084432
[51707.682391][ctx       none]	width       = 64
[51707.682392][ctx       none]	height      = 64
[51707.682392][ctx       none]	num_objects = 1
[51707.682392][ctx       none]	object 0, fd       = 1077
[51707.682392][ctx       none]	object 0, size     = 12288
[51707.682393][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682393][ctx       none]	num_objects = 2
[51707.682393][ctx       none]	layer 0, drm_format = 540422482
[51707.682394][ctx       none]	layer 0, size       = 1
[51707.682394][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682394][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682395][ctx       none]	layer 0, pitch      = [128, 0, 0, 0]
[51707.682395][ctx       none]	layer 1, drm_format = 842224199
[51707.682395][ctx       none]	layer 1, size       = 1
[51707.682396][ctx       none]	layer 1, object idx = [0, 0, 0, 0]
[51707.682396][ctx       none]	layer 1, offset     = [8192, 0, 0, 0]
[51707.682396][ctx       none]	layer 1, pitch      = [128, 0, 0, 0]
[51707.682397][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682398][ctx       none]==========va_TraceDestroySurfaces
[51707.682398][ctx       none]		surfaces[0] = 0x00000000
[51707.682401][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682406][ctx       none]==========va_TraceCreateSurfaces
[51707.682406][ctx       none]	width = 64
[51707.682406][ctx       none]	height = 64
[51707.682407][ctx       none]	format = 8192
[51707.682407][ctx       none]	num_surfaces = 1
[51707.682407][ctx       none]		surfaces[0] = 0x00000000
[51707.682407][ctx       none]	attrib_list[0] =
[51707.682408][ctx       none]		type = 8
[51707.682408][ctx       none]		flags = 2
[51707.682408][ctx       none]		value.type = 1
[51707.682408][ctx       none]		value.value.i = 0x0000000c
[51707.682409][ctx       none]	attrib_list[1] =
[51707.682409][ctx       none]		type = 6
[51707.682409][ctx       none]		flags = 2
[51707.682409][ctx       none]		value.type = 1
[51707.682410][ctx       none]		value.value.i = 0x00000001
[51707.682410][ctx       none]	attrib_list[2] =
[51707.682410][ctx       none]		type = 1
[51707.682410][ctx       none]		flags = 2
[51707.682410][ctx       none]		value.type = 1
[51707.682411][ctx       none]		value.value.i = 0x32313259
[51707.682415][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682418][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682419][ctx       none]	surfaceId = 0x00000000
[51707.682419][ctx       none]	memType   = 0x40000000
[51707.682419][ctx       none]	flags     = 0x00000007
[51707.682419][ctx       none]	fourcc      = 842084953
[51707.682420][ctx       none]	width       = 64
[51707.682420][ctx       none]	height      = 64
[51707.682420][ctx       none]	num_objects = 1
[51707.682420][ctx       none]	object 0, fd       = 1078
[51707.682421][ctx       none]	object 0, size     = 36864
[51707.682421][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682421][ctx       none]	num_objects = 1
[51707.682421][ctx       none]	layer 0, drm_format = 909193817
[51707.682422][ctx       none]	layer 0, size       = 1
[51707.682422][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682422][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682423][ctx       none]	layer 0, pitch      = [384, 0, 0, 0]
[51707.682423][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682424][ctx       none]==========va_TraceDestroySurfaces
[51707.682424][ctx       none]		surfaces[0] = 0x00000000
[51707.682428][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682433][ctx       none]==========va_TraceCreateSurfaces
[51707.682433][ctx       none]	width = 64
[51707.682433][ctx       none]	height = 64
[51707.682434][ctx       none]	format = 16384
[51707.682434][ctx       none]	num_surfaces = 1
[51707.682434][ctx       none]		surfaces[0] = 0x00000000
[51707.682434][ctx       none]	attrib_list[0] =
[51707.682435][ctx       none]		type = 8
[51707.682435][ctx       none]		flags = 2
[51707.682435][ctx       none]		value.type = 1
[51707.682435][ctx       none]		value.value.i = 0x0000000c
[51707.682436][ctx       none]	attrib_list[1] =
[51707.682436][ctx       none]		type = 6
[51707.682436][ctx       none]		flags = 2
[51707.682436][ctx       none]		value.type = 1
[51707.682436][ctx       none]		value.value.i = 0x00000001
[51707.682437][ctx       none]	attrib_list[2] =
[51707.682437][ctx       none]		type = 1
[51707.682437][ctx       none]		flags = 2
[51707.682437][ctx       none]		value.type = 1
[51707.682438][ctx       none]		value.value.i = 0x32313459
[51707.682439][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682442][ctx       none]==========va_TraceExportSurfaceHandle
[51707.682443][ctx       none]	surfaceId = 0x00000000
[51707.682443][ctx       none]	memType   = 0x40000000
[51707.682443][ctx       none]	flags     = 0x00000007
[51707.682443][ctx       none]	fourcc      = 842085465
[51707.682444][ctx       none]	width       = 64
[51707.682444][ctx       none]	height      = 64
[51707.682444][ctx       none]	num_objects = 1
[51707.682444][ctx       none]	object 0, fd       = 1079
[51707.682445][ctx       none]	object 0, size     = 61440
[51707.682445][ctx       none]	object 0, modifier = 0x100000000000009
[51707.682445][ctx       none]	num_objects = 1
[51707.682445][ctx       none]	layer 0, drm_format = 909194329
[51707.682446][ctx       none]	layer 0, size       = 1
[51707.682446][ctx       none]	layer 0, object idx = [0, 0, 0, 0]
[51707.682446][ctx       none]	layer 0, offset     = [0, 0, 0, 0]
[51707.682447][ctx       none]	layer 0, pitch      = [640, 0, 0, 0]
[51707.682447][ctx       none]=========vaExportSurfaceHandle ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682448][ctx       none]==========va_TraceDestroySurfaces
[51707.682448][ctx       none]		surfaces[0] = 0x00000000
[51707.682455][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682743][ctx       none]=========vaGetConfigAttributes ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682866][ctx       none]=========vaGetConfigAttributes ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682890][ctx       none]==========va_TraceCreateSurfaces
[51707.682891][ctx       none]	width = 1280
[51707.682891][ctx       none]	height = 800
[51707.682891][ctx       none]	format = 1
[51707.682892][ctx       none]	num_surfaces = 1
[51707.682892][ctx       none]		surfaces[0] = 0x00000000
[51707.682892][ctx       none]	attrib_list[0] =
[51707.682893][ctx       none]		type = 1
[51707.682893][ctx       none]		flags = 2
[51707.682893][ctx       none]		value.type = 1
[51707.682893][ctx       none]		value.value.i = 0x3231564e
[51707.682898][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682902][ctx       none]==========va_TraceCreateSurfaces
[51707.682902][ctx       none]	width = 1280
[51707.682902][ctx       none]	height = 800
[51707.682903][ctx       none]	format = 1
[51707.682903][ctx       none]	num_surfaces = 1
[51707.682903][ctx       none]		surfaces[0] = 0x00000001
[51707.682903][ctx       none]	attrib_list[0] =
[51707.682904][ctx       none]		type = 1
[51707.682904][ctx       none]		flags = 2
[51707.682904][ctx       none]		value.type = 1
[51707.682904][ctx       none]		value.value.i = 0x3231564e
[51707.682906][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682913][ctx       none]==========va_TraceCreateSurfaces
[51707.682913][ctx       none]	width = 1280
[51707.682914][ctx       none]	height = 800
[51707.682914][ctx       none]	format = 1
[51707.682914][ctx       none]	num_surfaces = 1
[51707.682914][ctx       none]		surfaces[0] = 0x00000002
[51707.682915][ctx       none]	attrib_list[0] =
[51707.682915][ctx       none]		type = 1
[51707.682915][ctx       none]		flags = 2
[51707.682915][ctx       none]		value.type = 1
[51707.682916][ctx       none]		value.value.i = 0x3231564e
[51707.682917][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682922][ctx       none]=========vaQueryConfigEntrypoints ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682922][ctx       none]=========vaGetConfigAttributes ret = VA_STATUS_SUCCESS, success (no error) 
[51707.682926][ctx       none]==========va_TraceCreateConfig
[51707.682926][ctx       none]	profile = 7, VAProfileH264High
[51707.682926][ctx       none]	entrypoint = 8, VAEntrypointEncSliceLP
[51707.682927][ctx       none]	num_attribs = 2
[51707.682927][ctx       none]		attrib_list[0].type = 0x00000000, VAConfigAttribRTFormat
[51707.682928][ctx       none]		attrib_list[0].value = 0x00000001
[51707.682928][ctx       none]		attrib_list[1].type = 0x00000005, VAConfigAttribRateControl
[51707.682928][ctx       none]		attrib_list[1].value = 0x00000010
[51707.682930][ctx       none]=========vaCreateConfig ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684334][ctx 0x20000000]==========va_TraceCreateContext
[51707.684334][ctx 0x20000000]	context = 0x20000000 va_trace_flag 0x1
[51707.684335][ctx 0x20000000]	profile = 7,VAProfileH264High entrypoint = 8,VAEntrypointEncSliceLP
[51707.684335][ctx 0x20000000]	config = 0x00000408
[51707.684336][ctx 0x20000000]	width = 1280
[51707.684336][ctx 0x20000000]	height = 800
[51707.684337][ctx 0x20000000]	flag = 0x00000001
[51707.684337][ctx 0x20000000]	num_render_targets = 3
[51707.684337][ctx 0x20000000]		render_targets[0] = 0x00000000
[51707.684338][ctx 0x20000000]		render_targets[1] = 0x00000001
[51707.684338][ctx 0x20000000]		render_targets[2] = 0x00000002
[51707.684339][ctx       none]=========vaCreateContext ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684355][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684356][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684357][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684358][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684358][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684359][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684360][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684360][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684361][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684362][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684362][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684363][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684364][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684364][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684365][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684389][ctx 0x20000000]==========va_TraceCreateBuffer
[51707.684389][ctx 0x20000000]	buf_type=VAEncCodedBufferType
[51707.684390][ctx 0x20000000]	buf_id=0x5
[51707.684390][ctx 0x20000000]	size=4800000
[51707.684390][ctx 0x20000000]	num_elements=1
[51707.684400][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684821][ctx       none]==========va_TraceCreateSurfaces
[51707.684822][ctx       none]	width = 1280
[51707.684822][ctx       none]	height = 800
[51707.684822][ctx       none]	format = 1
[51707.684823][ctx       none]	num_surfaces = 1
[51707.684823][ctx       none]		surfaces[0] = 0x00000003
[51707.684823][ctx       none]	attrib_list[0] =
[51707.684824][ctx       none]		type = 8
[51707.684824][ctx       none]		flags = 2
[51707.684824][ctx       none]		value.type = 1
[51707.684824][ctx       none]		value.value.i = 0x00000000
[51707.684825][ctx       none]	attrib_list[1] =
[51707.684825][ctx       none]		type = 6
[51707.684825][ctx       none]		flags = 2
[51707.684825][ctx       none]		value.type = 1
[51707.684825][ctx       none]		value.value.i = 0x00000001
[51707.684826][ctx       none]	attrib_list[2] =
[51707.684826][ctx       none]		type = 1
[51707.684826][ctx       none]		flags = 2
[51707.684826][ctx       none]		value.type = 1
[51707.684827][ctx       none]		value.value.i = 0x3231564e
[51707.684830][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684832][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.684833][ctx       none]	render_target = 0x00000003
[51707.684833][ctx       none]	status = 0x00000004
[51707.684835][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684838][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684840][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684840][ctx       none]==========va_TraceDestroySurfaces
[51707.684841][ctx       none]		surfaces[0] = 0x00000003
[51707.684849][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684866][ctx       none]==========va_TraceCreateSurfaces
[51707.684866][ctx       none]	width = 1280
[51707.684867][ctx       none]	height = 800
[51707.684867][ctx       none]	format = 1
[51707.684867][ctx       none]	num_surfaces = 1
[51707.684867][ctx       none]		surfaces[0] = 0x00000003
[51707.684868][ctx       none]	attrib_list[0] =
[51707.684868][ctx       none]		type = 8
[51707.684868][ctx       none]		flags = 2
[51707.684868][ctx       none]		value.type = 1
[51707.684869][ctx       none]		value.value.i = 0x00000000
[51707.684869][ctx       none]	attrib_list[1] =
[51707.684869][ctx       none]		type = 6
[51707.684869][ctx       none]		flags = 2
[51707.684870][ctx       none]		value.type = 1
[51707.684870][ctx       none]		value.value.i = 0x00000001
[51707.684870][ctx       none]	attrib_list[2] =
[51707.684870][ctx       none]		type = 1
[51707.684870][ctx       none]		flags = 2
[51707.684871][ctx       none]		value.type = 1
[51707.684871][ctx       none]		value.value.i = 0x3231564e
[51707.684877][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684878][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.684879][ctx       none]	render_target = 0x00000003
[51707.684879][ctx       none]	status = 0x00000004
[51707.684881][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684882][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684883][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684884][ctx       none]==========va_TraceDestroySurfaces
[51707.684884][ctx       none]		surfaces[0] = 0x00000003
[51707.684889][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684932][ctx       none]==========va_TraceCreateSurfaces
[51707.684932][ctx       none]	width = 1280
[51707.684932][ctx       none]	height = 800
[51707.684932][ctx       none]	format = 1
[51707.684933][ctx       none]	num_surfaces = 1
[51707.684933][ctx       none]		surfaces[0] = 0x00000003
[51707.684933][ctx       none]	attrib_list[0] =
[51707.684934][ctx       none]		type = 8
[51707.684934][ctx       none]		flags = 2
[51707.684934][ctx       none]		value.type = 1
[51707.684934][ctx       none]		value.value.i = 0x00000000
[51707.684935][ctx       none]	attrib_list[1] =
[51707.684935][ctx       none]		type = 6
[51707.684935][ctx       none]		flags = 2
[51707.684935][ctx       none]		value.type = 1
[51707.684935][ctx       none]		value.value.i = 0x00000001
[51707.684936][ctx       none]	attrib_list[2] =
[51707.684936][ctx       none]		type = 1
[51707.684936][ctx       none]		flags = 2
[51707.684936][ctx       none]		value.type = 1
[51707.684937][ctx       none]		value.value.i = 0x3231564e
[51707.684939][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684941][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.684941][ctx       none]	render_target = 0x00000003
[51707.684941][ctx       none]	status = 0x00000004
[51707.684943][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684944][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684945][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684946][ctx       none]==========va_TraceDestroySurfaces
[51707.684946][ctx       none]		surfaces[0] = 0x00000003
[51707.684951][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684963][ctx       none]==========va_TraceCreateSurfaces
[51707.684963][ctx       none]	width = 1280
[51707.684963][ctx       none]	height = 800
[51707.684964][ctx       none]	format = 1
[51707.684964][ctx       none]	num_surfaces = 1
[51707.684964][ctx       none]		surfaces[0] = 0x00000003
[51707.684964][ctx       none]	attrib_list[0] =
[51707.684965][ctx       none]		type = 8
[51707.684965][ctx       none]		flags = 2
[51707.684965][ctx       none]		value.type = 1
[51707.684965][ctx       none]		value.value.i = 0x00000000
[51707.684965][ctx       none]	attrib_list[1] =
[51707.684966][ctx       none]		type = 6
[51707.684966][ctx       none]		flags = 2
[51707.684966][ctx       none]		value.type = 1
[51707.684966][ctx       none]		value.value.i = 0x00000001
[51707.684967][ctx       none]	attrib_list[2] =
[51707.684967][ctx       none]		type = 1
[51707.684967][ctx       none]		flags = 2
[51707.684967][ctx       none]		value.type = 1
[51707.684967][ctx       none]		value.value.i = 0x3231564e
[51707.684970][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684971][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.684971][ctx       none]	render_target = 0x00000003
[51707.684971][ctx       none]	status = 0x00000004
[51707.684977][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684978][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684979][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.684980][ctx       none]==========va_TraceDestroySurfaces
[51707.684980][ctx       none]		surfaces[0] = 0x00000003
[51707.684985][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685011][ctx       none]==========va_TraceCreateSurfaces
[51707.685012][ctx       none]	width = 1280
[51707.685012][ctx       none]	height = 800
[51707.685012][ctx       none]	format = 1
[51707.685013][ctx       none]	num_surfaces = 1
[51707.685013][ctx       none]		surfaces[0] = 0x00000003
[51707.685013][ctx       none]	attrib_list[0] =
[51707.685013][ctx       none]		type = 8
[51707.685014][ctx       none]		flags = 2
[51707.685014][ctx       none]		value.type = 1
[51707.685014][ctx       none]		value.value.i = 0x00000008
[51707.685014][ctx       none]	attrib_list[1] =
[51707.685015][ctx       none]		type = 6
[51707.685015][ctx       none]		flags = 2
[51707.685015][ctx       none]		value.type = 1
[51707.685015][ctx       none]		value.value.i = 0x00000001
[51707.685015][ctx       none]	attrib_list[2] =
[51707.685016][ctx       none]		type = 1
[51707.685016][ctx       none]		flags = 2
[51707.685016][ctx       none]		value.type = 1
[51707.685016][ctx       none]		value.value.i = 0x3231564e
[51707.685019][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685020][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.685020][ctx       none]	render_target = 0x00000003
[51707.685020][ctx       none]	status = 0x00000004
[51707.685022][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685023][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685024][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685025][ctx       none]==========va_TraceDestroySurfaces
[51707.685025][ctx       none]		surfaces[0] = 0x00000003
[51707.685030][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685073][ctx       none]==========va_TraceCreateSurfaces
[51707.685074][ctx       none]	width = 1280
[51707.685074][ctx       none]	height = 800
[51707.685074][ctx       none]	format = 1
[51707.685074][ctx       none]	num_surfaces = 1
[51707.685075][ctx       none]		surfaces[0] = 0x00000003
[51707.685075][ctx       none]	attrib_list[0] =
[51707.685075][ctx       none]		type = 8
[51707.685076][ctx       none]		flags = 2
[51707.685076][ctx       none]		value.type = 1
[51707.685076][ctx       none]		value.value.i = 0x00000008
[51707.685076][ctx       none]	attrib_list[1] =
[51707.685076][ctx       none]		type = 6
[51707.685077][ctx       none]		flags = 2
[51707.685077][ctx       none]		value.type = 1
[51707.685077][ctx       none]		value.value.i = 0x00000001
[51707.685077][ctx       none]	attrib_list[2] =
[51707.685078][ctx       none]		type = 1
[51707.685078][ctx       none]		flags = 2
[51707.685078][ctx       none]		value.type = 1
[51707.685078][ctx       none]		value.value.i = 0x3231564e
[51707.685081][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685091][ctx       none]==========va_TraceCreateSurfaces
[51707.685091][ctx       none]	width = 1280
[51707.685091][ctx       none]	height = 800
[51707.685092][ctx       none]	format = 1
[51707.685092][ctx       none]	num_surfaces = 1
[51707.685092][ctx       none]		surfaces[0] = 0x00000004
[51707.685092][ctx       none]	attrib_list[0] =
[51707.685093][ctx       none]		type = 8
[51707.685093][ctx       none]		flags = 2
[51707.685093][ctx       none]		value.type = 1
[51707.685093][ctx       none]		value.value.i = 0x00000008
[51707.685093][ctx       none]	attrib_list[1] =
[51707.685094][ctx       none]		type = 6
[51707.685094][ctx       none]		flags = 2
[51707.685094][ctx       none]		value.type = 1
[51707.685094][ctx       none]		value.value.i = 0x00000001
[51707.685095][ctx       none]	attrib_list[2] =
[51707.685095][ctx       none]		type = 1
[51707.685095][ctx       none]		flags = 2
[51707.685095][ctx       none]		value.type = 1
[51707.685095][ctx       none]		value.value.i = 0x3231564e
[51707.685101][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685119][ctx       none]==========va_TraceCreateSurfaces
[51707.685119][ctx       none]	width = 1280
[51707.685120][ctx       none]	height = 800
[51707.685120][ctx       none]	format = 131072
[51707.685120][ctx       none]	num_surfaces = 1
[51707.685120][ctx       none]		surfaces[0] = 0x00000000
[51707.685121][ctx       none]	attrib_list[0] =
[51707.685121][ctx       none]		type = 8
[51707.685121][ctx       none]		flags = 2
[51707.685121][ctx       none]		value.type = 1
[51707.685122][ctx       none]		value.value.i = 0x0000000c
[51707.685122][ctx       none]	attrib_list[1] =
[51707.685122][ctx       none]		type = 6
[51707.685122][ctx       none]		flags = 2
[51707.685123][ctx       none]		value.type = 1
[51707.685123][ctx       none]		value.value.i = 0x40000000
[51707.685123][ctx       none]	attrib_list[2] =
[51707.685123][ctx       none]		type = 1
[51707.685123][ctx       none]		flags = 2
[51707.685124][ctx       none]		value.type = 1
[51707.685124][ctx       none]		value.value.i = 0x52474241
[51707.685124][ctx       none]	attrib_list[3] =
[51707.685124][ctx       none]		type = 7
[51707.685125][ctx       none]		flags = 2
[51707.685125][ctx       none]		value.type = 3
[51707.685125][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51707.685125][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51707.685126][ctx       none]		  pixel_format=0x52474241
[51707.685126][ctx       none]		  width=1280
[51707.685126][ctx       none]		  height=800
[51707.685126][ctx       none]		  num_objects=0x00000001
[51707.685127][ctx       none]			objects[0].fd=71
[51707.685127][ctx       none]			objects[0].size=4194304
[51707.685127][ctx       none]			objects[0].drm_format_modifier=0
[51707.685128][ctx       none]		  num_layers=1
[51707.685128][ctx       none]			layers[0].drm_format=0x34324241
[51707.685128][ctx       none]			layers[0].num_planes=0x1
[51707.685129][ctx       none]				layers[0].object_index[0]=0x0
[51707.685129][ctx       none]				layers[0].offset[0]=0x0
[51707.685129][ctx       none]				layers[0].pitch[0]=0x5120
[51707.685129][ctx       none]				layers[0].object_index[1]=0x0
[51707.685130][ctx       none]				layers[0].offset[1]=0x0
[51707.685130][ctx       none]				layers[0].pitch[1]=0x0
[51707.685130][ctx       none]				layers[0].object_index[2]=0x0
[51707.685131][ctx       none]				layers[0].offset[2]=0x0
[51707.685131][ctx       none]				layers[0].pitch[2]=0x0
[51707.685131][ctx       none]				layers[0].object_index[3]=0x0
[51707.685132][ctx       none]				layers[0].offset[3]=0x0
[51707.685132][ctx       none]				layers[0].pitch[3]=0x0
[51707.685134][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51707.685184][ctx       none]==========va_TraceCreateSurfaces
[51707.685184][ctx       none]	width = 1280
[51707.685185][ctx       none]	height = 800
[51707.685185][ctx       none]	format = 131072
[51707.685185][ctx       none]	num_surfaces = 1
[51707.685185][ctx       none]		surfaces[0] = 0x00000005
[51707.685186][ctx       none]	attrib_list[0] =
[51707.685186][ctx       none]		type = 8
[51707.685186][ctx       none]		flags = 2
[51707.685186][ctx       none]		value.type = 1
[51707.685187][ctx       none]		value.value.i = 0x00000004
[51707.685187][ctx       none]	attrib_list[1] =
[51707.685187][ctx       none]		type = 6
[51707.685187][ctx       none]		flags = 2
[51707.685188][ctx       none]		value.type = 1
[51707.685188][ctx       none]		value.value.i = 0x00000001
[51707.685188][ctx       none]	attrib_list[2] =
[51707.685188][ctx       none]		type = 1
[51707.685189][ctx       none]		flags = 2
[51707.685189][ctx       none]		value.type = 1
[51707.685189][ctx       none]		value.value.i = 0x52474241
[51707.685195][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685197][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.685197][ctx       none]	render_target = 0x00000005
[51707.685197][ctx       none]	status = 0x00000004
[51707.685199][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685200][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685201][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685202][ctx       none]==========va_TraceDestroySurfaces
[51707.685202][ctx       none]		surfaces[0] = 0x00000005
[51707.685208][ctx       none]=========vaDestroySurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685216][ctx       none]==========va_TraceCreateSurfaces
[51707.685216][ctx       none]	width = 1280
[51707.685216][ctx       none]	height = 800
[51707.685217][ctx       none]	format = 131072
[51707.685217][ctx       none]	num_surfaces = 1
[51707.685217][ctx       none]		surfaces[0] = 0x00000005
[51707.685218][ctx       none]	attrib_list[0] =
[51707.685218][ctx       none]		type = 8
[51707.685218][ctx       none]		flags = 2
[51707.685218][ctx       none]		value.type = 1
[51707.685218][ctx       none]		value.value.i = 0x00000004
[51707.685219][ctx       none]	attrib_list[1] =
[51707.685219][ctx       none]		type = 6
[51707.685219][ctx       none]		flags = 2
[51707.685219][ctx       none]		value.type = 1
[51707.685220][ctx       none]		value.value.i = 0x00000001
[51707.685220][ctx       none]	attrib_list[2] =
[51707.685220][ctx       none]		type = 1
[51707.685220][ctx       none]		flags = 2
[51707.685221][ctx       none]		value.type = 1
[51707.685221][ctx       none]		value.value.i = 0x52474241
[51707.685223][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685238][ctx       none]==========va_TraceSyncSurface
[51707.685238][ctx       none]	render_target = 0x00000005
[51707.685240][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685241][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.685241][ctx       none]	render_target = 0x00000005
[51707.685242][ctx       none]	status = 0x00000004
[51707.685243][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685244][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.685251][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910070][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910072][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910130][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.910130][ctx       none]	render_target = 0x00000005
[51707.910131][ctx       none]	status = 0x00000004
[51707.910135][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910137][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.910137][ctx       none]	render_target = 0x00000003
[51707.910138][ctx       none]	status = 0x00000004
[51707.910139][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910141][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910143][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910144][ctx 0x40000000]==========va_TraceBeginPicture
[51707.910144][ctx 0x40000000]	context = 0x40000000
[51707.910145][ctx 0x40000000]	render_targets = 0x00000003
[51707.910145][ctx 0x40000000]	frame_count  = #0
[51707.910152][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910153][ctx 0x40000000]==========va_TraceRenderPicture
[51707.910153][ctx 0x40000000]	context = 0x40000000
[51707.910153][ctx 0x40000000]	num_buffers = 1
[51707.910154][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910154][ctx 0x40000000]	---------------------------
[51707.910154][ctx 0x40000000]	buffers[0] = 0x00000006
[51707.910155][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51707.910155][ctx 0x40000000]	  size = 224
[51707.910156][ctx 0x40000000]	  num_elements = 1
[51707.910156][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910157][ctx 0x40000000]	element[0] =
[51707.910158][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51707.910158][ctx 0x40000000]	  surface = 0x00000005
[51707.910159][ctx 0x40000000]	  surface_region
[51707.910159][ctx 0x40000000]	    x = 0
[51707.910159][ctx 0x40000000]	    y = 0
[51707.910159][ctx 0x40000000]	    width = 1280
[51707.910160][ctx 0x40000000]	    height = 800
[51707.910160][ctx 0x40000000]	  surface_color_standard = 8
[51707.910160][ctx 0x40000000]	  output_region
[51707.910161][ctx 0x40000000]	    x = 0
[51707.910161][ctx 0x40000000]	    y = 0
[51707.910161][ctx 0x40000000]	    width = 1280
[51707.910161][ctx 0x40000000]	    height = 800
[51707.910162][ctx 0x40000000]	  output_background_color = 0xff000000
[51707.910162][ctx 0x40000000]	  output_color_standard = 2
[51707.910162][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51707.910163][ctx 0x40000000]	  filter_flags = 0x00000000
[51707.910163][ctx 0x40000000]	  num_filters = 0
[51707.910164][ctx 0x40000000]	  filters = (nil)
[51707.910164][ctx 0x40000000]	  num_forward_references = 0x00000000
[51707.910164][ctx 0x40000000]	  num_backward_references = 0x00000000
[51707.910166][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910172][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910173][ctx 0x40000000]==========va_TraceEndPicture
[51707.910173][ctx 0x40000000]	context = 0x40000000
[51707.910173][ctx 0x40000000]	render_targets = 0x00000003
[51707.910581][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51707.910583][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51707.917299][ctx       none]==========va_TraceCreateSurfaces
[51707.917300][ctx       none]	width = 1280
[51707.917300][ctx       none]	height = 800
[51707.917300][ctx       none]	format = 131072
[51707.917301][ctx       none]	num_surfaces = 1
[51707.917301][ctx       none]		surfaces[0] = 0x00000000
[51707.917302][ctx       none]	attrib_list[0] =
[51707.917302][ctx       none]		type = 8
[51707.917302][ctx       none]		flags = 2
[51707.917302][ctx       none]		value.type = 1
[51707.917303][ctx       none]		value.value.i = 0x0000000c
[51707.917303][ctx       none]	attrib_list[1] =
[51707.917303][ctx       none]		type = 6
[51707.917303][ctx       none]		flags = 2
[51707.917304][ctx       none]		value.type = 1
[51707.917304][ctx       none]		value.value.i = 0x40000000
[51707.917304][ctx       none]	attrib_list[2] =
[51707.917304][ctx       none]		type = 1
[51707.917305][ctx       none]		flags = 2
[51707.917305][ctx       none]		value.type = 1
[51707.917305][ctx       none]		value.value.i = 0x52474241
[51707.917305][ctx       none]	attrib_list[3] =
[51707.917305][ctx       none]		type = 7
[51707.917306][ctx       none]		flags = 2
[51707.917306][ctx       none]		value.type = 3
[51707.917306][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51707.917306][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51707.917307][ctx       none]		  pixel_format=0x52474241
[51707.917307][ctx       none]		  width=1280
[51707.917307][ctx       none]		  height=800
[51707.917307][ctx       none]		  num_objects=0x00000001
[51707.917308][ctx       none]			objects[0].fd=71
[51707.917308][ctx       none]			objects[0].size=4194304
[51707.917308][ctx       none]			objects[0].drm_format_modifier=0
[51707.917309][ctx       none]		  num_layers=1
[51707.917309][ctx       none]			layers[0].drm_format=0x34324241
[51707.917309][ctx       none]			layers[0].num_planes=0x1
[51707.917310][ctx       none]				layers[0].object_index[0]=0x0
[51707.917310][ctx       none]				layers[0].offset[0]=0x0
[51707.917310][ctx       none]				layers[0].pitch[0]=0x5120
[51707.917311][ctx       none]				layers[0].object_index[1]=0x0
[51707.917311][ctx       none]				layers[0].offset[1]=0x0
[51707.917311][ctx       none]				layers[0].pitch[1]=0x0
[51707.917311][ctx       none]				layers[0].object_index[2]=0x0
[51707.917312][ctx       none]				layers[0].offset[2]=0x0
[51707.917312][ctx       none]				layers[0].pitch[2]=0x0
[51707.917312][ctx       none]				layers[0].object_index[3]=0x0
[51707.917313][ctx       none]				layers[0].offset[3]=0x0
[51707.917313][ctx       none]				layers[0].pitch[3]=0x0
[51707.917324][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51707.917347][ctx       none]==========va_TraceSyncSurface
[51707.917347][ctx       none]	render_target = 0x00000005
[51707.917350][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51707.917351][ctx       none]==========va_TraceQuerySurfaceStatus
[51707.917351][ctx       none]	render_target = 0x00000005
[51707.917352][ctx       none]	status = 0x00000004
[51707.917354][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51707.917355][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51707.917358][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142430][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142432][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142483][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.142483][ctx       none]	render_target = 0x00000005
[51708.142484][ctx       none]	status = 0x00000004
[51708.142487][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142489][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.142490][ctx       none]	render_target = 0x00000004
[51708.142490][ctx       none]	status = 0x00000004
[51708.142492][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142493][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142495][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142495][ctx 0x40000000]==========va_TraceBeginPicture
[51708.142496][ctx 0x40000000]	context = 0x40000000
[51708.142496][ctx 0x40000000]	render_targets = 0x00000004
[51708.142496][ctx 0x40000000]	frame_count  = #1
[51708.142499][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142500][ctx 0x40000000]==========va_TraceRenderPicture
[51708.142500][ctx 0x40000000]	context = 0x40000000
[51708.142501][ctx 0x40000000]	num_buffers = 1
[51708.142501][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142501][ctx 0x40000000]	---------------------------
[51708.142502][ctx 0x40000000]	buffers[0] = 0x00000016
[51708.142502][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51708.142502][ctx 0x40000000]	  size = 224
[51708.142503][ctx 0x40000000]	  num_elements = 1
[51708.142503][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142504][ctx 0x40000000]	element[0] =
[51708.142504][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51708.142505][ctx 0x40000000]	  surface = 0x00000005
[51708.142505][ctx 0x40000000]	  surface_region
[51708.142505][ctx 0x40000000]	    x = 0
[51708.142506][ctx 0x40000000]	    y = 0
[51708.142506][ctx 0x40000000]	    width = 1280
[51708.142506][ctx 0x40000000]	    height = 800
[51708.142506][ctx 0x40000000]	  surface_color_standard = 8
[51708.142507][ctx 0x40000000]	  output_region
[51708.142507][ctx 0x40000000]	    x = 0
[51708.142507][ctx 0x40000000]	    y = 0
[51708.142508][ctx 0x40000000]	    width = 1280
[51708.142508][ctx 0x40000000]	    height = 800
[51708.142508][ctx 0x40000000]	  output_background_color = 0xff000000
[51708.142509][ctx 0x40000000]	  output_color_standard = 2
[51708.142509][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51708.142509][ctx 0x40000000]	  filter_flags = 0x00000000
[51708.142510][ctx 0x40000000]	  num_filters = 0
[51708.142510][ctx 0x40000000]	  filters = (nil)
[51708.142510][ctx 0x40000000]	  num_forward_references = 0x00000000
[51708.142511][ctx 0x40000000]	  num_backward_references = 0x00000000
[51708.142516][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142520][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142520][ctx 0x40000000]==========va_TraceEndPicture
[51708.142521][ctx 0x40000000]	context = 0x40000000
[51708.142521][ctx 0x40000000]	render_targets = 0x00000004
[51708.142675][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.142676][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.157703][ctx       none]==========va_TraceCreateSurfaces
[51708.157704][ctx       none]	width = 1280
[51708.157704][ctx       none]	height = 800
[51708.157704][ctx       none]	format = 131072
[51708.157705][ctx       none]	num_surfaces = 1
[51708.157705][ctx       none]		surfaces[0] = 0x00000000
[51708.157705][ctx       none]	attrib_list[0] =
[51708.157706][ctx       none]		type = 8
[51708.157706][ctx       none]		flags = 2
[51708.157706][ctx       none]		value.type = 1
[51708.157706][ctx       none]		value.value.i = 0x0000000c
[51708.157707][ctx       none]	attrib_list[1] =
[51708.157707][ctx       none]		type = 6
[51708.157707][ctx       none]		flags = 2
[51708.157707][ctx       none]		value.type = 1
[51708.157708][ctx       none]		value.value.i = 0x40000000
[51708.157708][ctx       none]	attrib_list[2] =
[51708.157708][ctx       none]		type = 1
[51708.157708][ctx       none]		flags = 2
[51708.157709][ctx       none]		value.type = 1
[51708.157709][ctx       none]		value.value.i = 0x52474241
[51708.157709][ctx       none]	attrib_list[3] =
[51708.157709][ctx       none]		type = 7
[51708.157709][ctx       none]		flags = 2
[51708.157710][ctx       none]		value.type = 3
[51708.157710][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51708.157710][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51708.157710][ctx       none]		  pixel_format=0x52474241
[51708.157711][ctx       none]		  width=1280
[51708.157711][ctx       none]		  height=800
[51708.157711][ctx       none]		  num_objects=0x00000001
[51708.157711][ctx       none]			objects[0].fd=71
[51708.157712][ctx       none]			objects[0].size=4194304
[51708.157712][ctx       none]			objects[0].drm_format_modifier=0
[51708.157712][ctx       none]		  num_layers=1
[51708.157713][ctx       none]			layers[0].drm_format=0x34324241
[51708.157713][ctx       none]			layers[0].num_planes=0x1
[51708.157713][ctx       none]				layers[0].object_index[0]=0x0
[51708.157714][ctx       none]				layers[0].offset[0]=0x0
[51708.157714][ctx       none]				layers[0].pitch[0]=0x5120
[51708.157714][ctx       none]				layers[0].object_index[1]=0x0
[51708.157714][ctx       none]				layers[0].offset[1]=0x0
[51708.157715][ctx       none]				layers[0].pitch[1]=0x0
[51708.157715][ctx       none]				layers[0].object_index[2]=0x0
[51708.157715][ctx       none]				layers[0].offset[2]=0x0
[51708.157716][ctx       none]				layers[0].pitch[2]=0x0
[51708.157716][ctx       none]				layers[0].object_index[3]=0x0
[51708.157716][ctx       none]				layers[0].offset[3]=0x0
[51708.157717][ctx       none]				layers[0].pitch[3]=0x0
[51708.157722][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51708.157742][ctx       none]==========va_TraceSyncSurface
[51708.157742][ctx       none]	render_target = 0x00000005
[51708.157749][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51708.157750][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.157751][ctx       none]	render_target = 0x00000005
[51708.157751][ctx       none]	status = 0x00000004
[51708.157753][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.157755][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.157757][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382764][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382765][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382818][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.382819][ctx       none]	render_target = 0x00000005
[51708.382819][ctx       none]	status = 0x00000004
[51708.382823][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382825][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.382825][ctx       none]	render_target = 0x00000003
[51708.382826][ctx       none]	status = 0x00000004
[51708.382827][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382828][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382831][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382831][ctx 0x40000000]==========va_TraceBeginPicture
[51708.382832][ctx 0x40000000]	context = 0x40000000
[51708.382832][ctx 0x40000000]	render_targets = 0x00000003
[51708.382832][ctx 0x40000000]	frame_count  = #2
[51708.382835][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382836][ctx 0x40000000]==========va_TraceRenderPicture
[51708.382836][ctx 0x40000000]	context = 0x40000000
[51708.382836][ctx 0x40000000]	num_buffers = 1
[51708.382837][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382837][ctx 0x40000000]	---------------------------
[51708.382837][ctx 0x40000000]	buffers[0] = 0x00000016
[51708.382838][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51708.382838][ctx 0x40000000]	  size = 224
[51708.382838][ctx 0x40000000]	  num_elements = 1
[51708.382839][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382839][ctx 0x40000000]	element[0] =
[51708.382840][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51708.382840][ctx 0x40000000]	  surface = 0x00000005
[51708.382841][ctx 0x40000000]	  surface_region
[51708.382841][ctx 0x40000000]	    x = 0
[51708.382841][ctx 0x40000000]	    y = 0
[51708.382841][ctx 0x40000000]	    width = 1280
[51708.382842][ctx 0x40000000]	    height = 800
[51708.382842][ctx 0x40000000]	  surface_color_standard = 8
[51708.382842][ctx 0x40000000]	  output_region
[51708.382843][ctx 0x40000000]	    x = 0
[51708.382843][ctx 0x40000000]	    y = 0
[51708.382843][ctx 0x40000000]	    width = 1280
[51708.382843][ctx 0x40000000]	    height = 800
[51708.382844][ctx 0x40000000]	  output_background_color = 0xff000000
[51708.382844][ctx 0x40000000]	  output_color_standard = 2
[51708.382844][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51708.382845][ctx 0x40000000]	  filter_flags = 0x00000000
[51708.382845][ctx 0x40000000]	  num_filters = 0
[51708.382845][ctx 0x40000000]	  filters = (nil)
[51708.382846][ctx 0x40000000]	  num_forward_references = 0x00000000
[51708.382846][ctx 0x40000000]	  num_backward_references = 0x00000000
[51708.382848][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382851][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382852][ctx 0x40000000]==========va_TraceEndPicture
[51708.382852][ctx 0x40000000]	context = 0x40000000
[51708.382853][ctx 0x40000000]	render_targets = 0x00000003
[51708.382991][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.382993][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.398792][ctx       none]==========va_TraceCreateSurfaces
[51708.398793][ctx       none]	width = 1280
[51708.398793][ctx       none]	height = 800
[51708.398794][ctx       none]	format = 131072
[51708.398794][ctx       none]	num_surfaces = 1
[51708.398795][ctx       none]		surfaces[0] = 0x00000000
[51708.398796][ctx       none]	attrib_list[0] =
[51708.398796][ctx       none]		type = 8
[51708.398797][ctx       none]		flags = 2
[51708.398797][ctx       none]		value.type = 1
[51708.398798][ctx       none]		value.value.i = 0x0000000c
[51708.398798][ctx       none]	attrib_list[1] =
[51708.398799][ctx       none]		type = 6
[51708.398799][ctx       none]		flags = 2
[51708.398799][ctx       none]		value.type = 1
[51708.398800][ctx       none]		value.value.i = 0x40000000
[51708.398800][ctx       none]	attrib_list[2] =
[51708.398801][ctx       none]		type = 1
[51708.398801][ctx       none]		flags = 2
[51708.398802][ctx       none]		value.type = 1
[51708.398802][ctx       none]		value.value.i = 0x52474241
[51708.398802][ctx       none]	attrib_list[3] =
[51708.398803][ctx       none]		type = 7
[51708.398803][ctx       none]		flags = 2
[51708.398804][ctx       none]		value.type = 3
[51708.398804][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51708.398805][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51708.398805][ctx       none]		  pixel_format=0x52474241
[51708.398806][ctx       none]		  width=1280
[51708.398806][ctx       none]		  height=800
[51708.398807][ctx       none]		  num_objects=0x00000001
[51708.398807][ctx       none]			objects[0].fd=71
[51708.398808][ctx       none]			objects[0].size=4194304
[51708.398808][ctx       none]			objects[0].drm_format_modifier=0
[51708.398809][ctx       none]		  num_layers=1
[51708.398809][ctx       none]			layers[0].drm_format=0x34324241
[51708.398810][ctx       none]			layers[0].num_planes=0x1
[51708.398810][ctx       none]				layers[0].object_index[0]=0x0
[51708.398811][ctx       none]				layers[0].offset[0]=0x0
[51708.398812][ctx       none]				layers[0].pitch[0]=0x5120
[51708.398812][ctx       none]				layers[0].object_index[1]=0x0
[51708.398813][ctx       none]				layers[0].offset[1]=0x0
[51708.398813][ctx       none]				layers[0].pitch[1]=0x0
[51708.398814][ctx       none]				layers[0].object_index[2]=0x0
[51708.398814][ctx       none]				layers[0].offset[2]=0x0
[51708.398815][ctx       none]				layers[0].pitch[2]=0x0
[51708.398815][ctx       none]				layers[0].object_index[3]=0x0
[51708.398816][ctx       none]				layers[0].offset[3]=0x0
[51708.398816][ctx       none]				layers[0].pitch[3]=0x0
[51708.398826][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51708.398978][ctx       none]==========va_TraceSyncSurface
[51708.398978][ctx       none]	render_target = 0x00000005
[51708.398983][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51708.398986][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.398986][ctx       none]	render_target = 0x00000005
[51708.398987][ctx       none]	status = 0x00000004
[51708.398990][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.398993][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.398998][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624015][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624016][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624068][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.624069][ctx       none]	render_target = 0x00000005
[51708.624069][ctx       none]	status = 0x00000004
[51708.624077][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624079][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.624079][ctx       none]	render_target = 0x00000004
[51708.624079][ctx       none]	status = 0x00000004
[51708.624086][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624088][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624089][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624090][ctx 0x40000000]==========va_TraceBeginPicture
[51708.624091][ctx 0x40000000]	context = 0x40000000
[51708.624091][ctx 0x40000000]	render_targets = 0x00000004
[51708.624091][ctx 0x40000000]	frame_count  = #3
[51708.624094][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624095][ctx 0x40000000]==========va_TraceRenderPicture
[51708.624095][ctx 0x40000000]	context = 0x40000000
[51708.624096][ctx 0x40000000]	num_buffers = 1
[51708.624096][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624096][ctx 0x40000000]	---------------------------
[51708.624097][ctx 0x40000000]	buffers[0] = 0x00000016
[51708.624097][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51708.624097][ctx 0x40000000]	  size = 224
[51708.624098][ctx 0x40000000]	  num_elements = 1
[51708.624098][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624099][ctx 0x40000000]	element[0] =
[51708.624099][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51708.624100][ctx 0x40000000]	  surface = 0x00000005
[51708.624100][ctx 0x40000000]	  surface_region
[51708.624100][ctx 0x40000000]	    x = 0
[51708.624101][ctx 0x40000000]	    y = 0
[51708.624101][ctx 0x40000000]	    width = 1280
[51708.624101][ctx 0x40000000]	    height = 800
[51708.624101][ctx 0x40000000]	  surface_color_standard = 8
[51708.624102][ctx 0x40000000]	  output_region
[51708.624102][ctx 0x40000000]	    x = 0
[51708.624102][ctx 0x40000000]	    y = 0
[51708.624103][ctx 0x40000000]	    width = 1280
[51708.624103][ctx 0x40000000]	    height = 800
[51708.624103][ctx 0x40000000]	  output_background_color = 0xff000000
[51708.624103][ctx 0x40000000]	  output_color_standard = 2
[51708.624104][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51708.624104][ctx 0x40000000]	  filter_flags = 0x00000000
[51708.624104][ctx 0x40000000]	  num_filters = 0
[51708.624105][ctx 0x40000000]	  filters = (nil)
[51708.624105][ctx 0x40000000]	  num_forward_references = 0x00000000
[51708.624105][ctx 0x40000000]	  num_backward_references = 0x00000000
[51708.624107][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624111][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624111][ctx 0x40000000]==========va_TraceEndPicture
[51708.624112][ctx 0x40000000]	context = 0x40000000
[51708.624112][ctx 0x40000000]	render_targets = 0x00000004
[51708.624255][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.624256][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.645985][ctx       none]==========va_TraceCreateSurfaces
[51708.645986][ctx       none]	width = 1280
[51708.645986][ctx       none]	height = 800
[51708.645986][ctx       none]	format = 131072
[51708.645986][ctx       none]	num_surfaces = 1
[51708.645987][ctx       none]		surfaces[0] = 0x00000000
[51708.645987][ctx       none]	attrib_list[0] =
[51708.645987][ctx       none]		type = 8
[51708.645987][ctx       none]		flags = 2
[51708.645988][ctx       none]		value.type = 1
[51708.645988][ctx       none]		value.value.i = 0x0000000c
[51708.645988][ctx       none]	attrib_list[1] =
[51708.645988][ctx       none]		type = 6
[51708.645989][ctx       none]		flags = 2
[51708.645989][ctx       none]		value.type = 1
[51708.645989][ctx       none]		value.value.i = 0x40000000
[51708.645989][ctx       none]	attrib_list[2] =
[51708.645990][ctx       none]		type = 1
[51708.645990][ctx       none]		flags = 2
[51708.645990][ctx       none]		value.type = 1
[51708.645990][ctx       none]		value.value.i = 0x52474241
[51708.645991][ctx       none]	attrib_list[3] =
[51708.645991][ctx       none]		type = 7
[51708.645991][ctx       none]		flags = 2
[51708.645991][ctx       none]		value.type = 3
[51708.645991][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51708.645992][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51708.645992][ctx       none]		  pixel_format=0x52474241
[51708.645992][ctx       none]		  width=1280
[51708.645992][ctx       none]		  height=800
[51708.645993][ctx       none]		  num_objects=0x00000001
[51708.645993][ctx       none]			objects[0].fd=71
[51708.645993][ctx       none]			objects[0].size=4194304
[51708.645994][ctx       none]			objects[0].drm_format_modifier=0
[51708.645994][ctx       none]		  num_layers=1
[51708.645994][ctx       none]			layers[0].drm_format=0x34324241
[51708.645994][ctx       none]			layers[0].num_planes=0x1
[51708.645995][ctx       none]				layers[0].object_index[0]=0x0
[51708.645995][ctx       none]				layers[0].offset[0]=0x0
[51708.645995][ctx       none]				layers[0].pitch[0]=0x5120
[51708.645996][ctx       none]				layers[0].object_index[1]=0x0
[51708.645996][ctx       none]				layers[0].offset[1]=0x0
[51708.645996][ctx       none]				layers[0].pitch[1]=0x0
[51708.645997][ctx       none]				layers[0].object_index[2]=0x0
[51708.645997][ctx       none]				layers[0].offset[2]=0x0
[51708.645997][ctx       none]				layers[0].pitch[2]=0x0
[51708.645997][ctx       none]				layers[0].object_index[3]=0x0
[51708.645998][ctx       none]				layers[0].offset[3]=0x0
[51708.645998][ctx       none]				layers[0].pitch[3]=0x0
[51708.646008][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51708.646199][ctx       none]==========va_TraceSyncSurface
[51708.646199][ctx       none]	render_target = 0x00000005
[51708.646202][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51708.646203][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.646204][ctx       none]	render_target = 0x00000005
[51708.646204][ctx       none]	status = 0x00000004
[51708.646205][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.646208][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.646210][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871142][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871143][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871207][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.871207][ctx       none]	render_target = 0x00000005
[51708.871208][ctx       none]	status = 0x00000004
[51708.871211][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871213][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.871214][ctx       none]	render_target = 0x00000003
[51708.871214][ctx       none]	status = 0x00000004
[51708.871216][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871217][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871219][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871219][ctx 0x40000000]==========va_TraceBeginPicture
[51708.871220][ctx 0x40000000]	context = 0x40000000
[51708.871220][ctx 0x40000000]	render_targets = 0x00000003
[51708.871220][ctx 0x40000000]	frame_count  = #4
[51708.871223][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871224][ctx 0x40000000]==========va_TraceRenderPicture
[51708.871224][ctx 0x40000000]	context = 0x40000000
[51708.871224][ctx 0x40000000]	num_buffers = 1
[51708.871225][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871225][ctx 0x40000000]	---------------------------
[51708.871226][ctx 0x40000000]	buffers[0] = 0x00000016
[51708.871226][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51708.871226][ctx 0x40000000]	  size = 224
[51708.871227][ctx 0x40000000]	  num_elements = 1
[51708.871227][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871228][ctx 0x40000000]	element[0] =
[51708.871228][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51708.871229][ctx 0x40000000]	  surface = 0x00000005
[51708.871229][ctx 0x40000000]	  surface_region
[51708.871229][ctx 0x40000000]	    x = 0
[51708.871229][ctx 0x40000000]	    y = 0
[51708.871230][ctx 0x40000000]	    width = 1280
[51708.871230][ctx 0x40000000]	    height = 800
[51708.871230][ctx 0x40000000]	  surface_color_standard = 8
[51708.871231][ctx 0x40000000]	  output_region
[51708.871231][ctx 0x40000000]	    x = 0
[51708.871231][ctx 0x40000000]	    y = 0
[51708.871231][ctx 0x40000000]	    width = 1280
[51708.871232][ctx 0x40000000]	    height = 800
[51708.871232][ctx 0x40000000]	  output_background_color = 0xff000000
[51708.871232][ctx 0x40000000]	  output_color_standard = 2
[51708.871233][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51708.871233][ctx 0x40000000]	  filter_flags = 0x00000000
[51708.871233][ctx 0x40000000]	  num_filters = 0
[51708.871234][ctx 0x40000000]	  filters = (nil)
[51708.871234][ctx 0x40000000]	  num_forward_references = 0x00000000
[51708.871234][ctx 0x40000000]	  num_backward_references = 0x00000000
[51708.871240][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871244][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871244][ctx 0x40000000]==========va_TraceEndPicture
[51708.871244][ctx 0x40000000]	context = 0x40000000
[51708.871245][ctx 0x40000000]	render_targets = 0x00000003
[51708.871410][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51708.871412][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51708.968623][ctx       none]==========va_TraceCreateSurfaces
[51708.968624][ctx       none]	width = 1280
[51708.968624][ctx       none]	height = 800
[51708.968624][ctx       none]	format = 131072
[51708.968624][ctx       none]	num_surfaces = 1
[51708.968625][ctx       none]		surfaces[0] = 0x00000000
[51708.968625][ctx       none]	attrib_list[0] =
[51708.968625][ctx       none]		type = 8
[51708.968626][ctx       none]		flags = 2
[51708.968626][ctx       none]		value.type = 1
[51708.968626][ctx       none]		value.value.i = 0x0000000c
[51708.968626][ctx       none]	attrib_list[1] =
[51708.968627][ctx       none]		type = 6
[51708.968627][ctx       none]		flags = 2
[51708.968627][ctx       none]		value.type = 1
[51708.968627][ctx       none]		value.value.i = 0x40000000
[51708.968628][ctx       none]	attrib_list[2] =
[51708.968628][ctx       none]		type = 1
[51708.968628][ctx       none]		flags = 2
[51708.968628][ctx       none]		value.type = 1
[51708.968628][ctx       none]		value.value.i = 0x52474241
[51708.968629][ctx       none]	attrib_list[3] =
[51708.968629][ctx       none]		type = 7
[51708.968629][ctx       none]		flags = 2
[51708.968629][ctx       none]		value.type = 3
[51708.968630][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51708.968630][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51708.968630][ctx       none]		  pixel_format=0x52474241
[51708.968630][ctx       none]		  width=1280
[51708.968631][ctx       none]		  height=800
[51708.968631][ctx       none]		  num_objects=0x00000001
[51708.968631][ctx       none]			objects[0].fd=71
[51708.968631][ctx       none]			objects[0].size=4194304
[51708.968632][ctx       none]			objects[0].drm_format_modifier=0
[51708.968632][ctx       none]		  num_layers=1
[51708.968632][ctx       none]			layers[0].drm_format=0x34324241
[51708.968633][ctx       none]			layers[0].num_planes=0x1
[51708.968633][ctx       none]				layers[0].object_index[0]=0x0
[51708.968633][ctx       none]				layers[0].offset[0]=0x0
[51708.968633][ctx       none]				layers[0].pitch[0]=0x5120
[51708.968634][ctx       none]				layers[0].object_index[1]=0x0
[51708.968634][ctx       none]				layers[0].offset[1]=0x0
[51708.968634][ctx       none]				layers[0].pitch[1]=0x0
[51708.968635][ctx       none]				layers[0].object_index[2]=0x0
[51708.968635][ctx       none]				layers[0].offset[2]=0x0
[51708.968635][ctx       none]				layers[0].pitch[2]=0x0
[51708.968635][ctx       none]				layers[0].object_index[3]=0x0
[51708.968636][ctx       none]				layers[0].offset[3]=0x0
[51708.968636][ctx       none]				layers[0].pitch[3]=0x0
[51708.968647][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51708.969200][ctx       none]==========va_TraceSyncSurface
[51708.969200][ctx       none]	render_target = 0x00000005
[51708.969203][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51708.969204][ctx       none]==========va_TraceQuerySurfaceStatus
[51708.969205][ctx       none]	render_target = 0x00000005
[51708.969205][ctx       none]	status = 0x00000004
[51708.969207][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51708.969209][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51708.969211][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194356][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194357][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194409][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.194409][ctx       none]	render_target = 0x00000005
[51709.194409][ctx       none]	status = 0x00000004
[51709.194413][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194415][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.194416][ctx       none]	render_target = 0x00000004
[51709.194416][ctx       none]	status = 0x00000004
[51709.194418][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194419][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194421][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194422][ctx 0x40000000]==========va_TraceBeginPicture
[51709.194422][ctx 0x40000000]	context = 0x40000000
[51709.194423][ctx 0x40000000]	render_targets = 0x00000004
[51709.194423][ctx 0x40000000]	frame_count  = #5
[51709.194426][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194427][ctx 0x40000000]==========va_TraceRenderPicture
[51709.194427][ctx 0x40000000]	context = 0x40000000
[51709.194427][ctx 0x40000000]	num_buffers = 1
[51709.194428][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194428][ctx 0x40000000]	---------------------------
[51709.194428][ctx 0x40000000]	buffers[0] = 0x00000016
[51709.194429][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51709.194429][ctx 0x40000000]	  size = 224
[51709.194429][ctx 0x40000000]	  num_elements = 1
[51709.194430][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194430][ctx 0x40000000]	element[0] =
[51709.194431][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51709.194431][ctx 0x40000000]	  surface = 0x00000005
[51709.194432][ctx 0x40000000]	  surface_region
[51709.194432][ctx 0x40000000]	    x = 0
[51709.194432][ctx 0x40000000]	    y = 0
[51709.194432][ctx 0x40000000]	    width = 1280
[51709.194433][ctx 0x40000000]	    height = 800
[51709.194433][ctx 0x40000000]	  surface_color_standard = 8
[51709.194433][ctx 0x40000000]	  output_region
[51709.194433][ctx 0x40000000]	    x = 0
[51709.194434][ctx 0x40000000]	    y = 0
[51709.194434][ctx 0x40000000]	    width = 1280
[51709.194434][ctx 0x40000000]	    height = 800
[51709.194435][ctx 0x40000000]	  output_background_color = 0xff000000
[51709.194435][ctx 0x40000000]	  output_color_standard = 2
[51709.194435][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51709.194436][ctx 0x40000000]	  filter_flags = 0x00000000
[51709.194436][ctx 0x40000000]	  num_filters = 0
[51709.194436][ctx 0x40000000]	  filters = (nil)
[51709.194437][ctx 0x40000000]	  num_forward_references = 0x00000000
[51709.194437][ctx 0x40000000]	  num_backward_references = 0x00000000
[51709.194443][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194446][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194447][ctx 0x40000000]==========va_TraceEndPicture
[51709.194447][ctx 0x40000000]	context = 0x40000000
[51709.194448][ctx 0x40000000]	render_targets = 0x00000004
[51709.194587][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.194589][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.209934][ctx       none]==========va_TraceCreateSurfaces
[51709.209934][ctx       none]	width = 1280
[51709.209935][ctx       none]	height = 800
[51709.209935][ctx       none]	format = 131072
[51709.209935][ctx       none]	num_surfaces = 1
[51709.209935][ctx       none]		surfaces[0] = 0x00000000
[51709.209936][ctx       none]	attrib_list[0] =
[51709.209936][ctx       none]		type = 8
[51709.209937][ctx       none]		flags = 2
[51709.209937][ctx       none]		value.type = 1
[51709.209937][ctx       none]		value.value.i = 0x0000000c
[51709.209937][ctx       none]	attrib_list[1] =
[51709.209938][ctx       none]		type = 6
[51709.209938][ctx       none]		flags = 2
[51709.209938][ctx       none]		value.type = 1
[51709.209938][ctx       none]		value.value.i = 0x40000000
[51709.209938][ctx       none]	attrib_list[2] =
[51709.209939][ctx       none]		type = 1
[51709.209939][ctx       none]		flags = 2
[51709.209939][ctx       none]		value.type = 1
[51709.209939][ctx       none]		value.value.i = 0x52474241
[51709.209940][ctx       none]	attrib_list[3] =
[51709.209940][ctx       none]		type = 7
[51709.209940][ctx       none]		flags = 2
[51709.209940][ctx       none]		value.type = 3
[51709.209941][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51709.209941][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51709.209941][ctx       none]		  pixel_format=0x52474241
[51709.209941][ctx       none]		  width=1280
[51709.209942][ctx       none]		  height=800
[51709.209942][ctx       none]		  num_objects=0x00000001
[51709.209942][ctx       none]			objects[0].fd=71
[51709.209942][ctx       none]			objects[0].size=4194304
[51709.209943][ctx       none]			objects[0].drm_format_modifier=0
[51709.209943][ctx       none]		  num_layers=1
[51709.209943][ctx       none]			layers[0].drm_format=0x34324241
[51709.209944][ctx       none]			layers[0].num_planes=0x1
[51709.209944][ctx       none]				layers[0].object_index[0]=0x0
[51709.209944][ctx       none]				layers[0].offset[0]=0x0
[51709.209944][ctx       none]				layers[0].pitch[0]=0x5120
[51709.209945][ctx       none]				layers[0].object_index[1]=0x0
[51709.209945][ctx       none]				layers[0].offset[1]=0x0
[51709.209945][ctx       none]				layers[0].pitch[1]=0x0
[51709.209946][ctx       none]				layers[0].object_index[2]=0x0
[51709.209946][ctx       none]				layers[0].offset[2]=0x0
[51709.209946][ctx       none]				layers[0].pitch[2]=0x0
[51709.209946][ctx       none]				layers[0].object_index[3]=0x0
[51709.209947][ctx       none]				layers[0].offset[3]=0x0
[51709.209947][ctx       none]				layers[0].pitch[3]=0x0
[51709.209953][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51709.210076][ctx       none]==========va_TraceSyncSurface
[51709.210076][ctx       none]	render_target = 0x00000005
[51709.210079][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51709.210080][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.210080][ctx       none]	render_target = 0x00000005
[51709.210081][ctx       none]	status = 0x00000004
[51709.210082][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.210084][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.210087][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435101][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435103][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435156][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.435157][ctx       none]	render_target = 0x00000005
[51709.435157][ctx       none]	status = 0x00000004
[51709.435165][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435168][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.435169][ctx       none]	render_target = 0x00000003
[51709.435169][ctx       none]	status = 0x00000004
[51709.435170][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435172][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435173][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435174][ctx 0x40000000]==========va_TraceBeginPicture
[51709.435175][ctx 0x40000000]	context = 0x40000000
[51709.435175][ctx 0x40000000]	render_targets = 0x00000003
[51709.435175][ctx 0x40000000]	frame_count  = #6
[51709.435178][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435179][ctx 0x40000000]==========va_TraceRenderPicture
[51709.435179][ctx 0x40000000]	context = 0x40000000
[51709.435179][ctx 0x40000000]	num_buffers = 1
[51709.435180][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435180][ctx 0x40000000]	---------------------------
[51709.435181][ctx 0x40000000]	buffers[0] = 0x00000016
[51709.435181][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51709.435181][ctx 0x40000000]	  size = 224
[51709.435182][ctx 0x40000000]	  num_elements = 1
[51709.435182][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435183][ctx 0x40000000]	element[0] =
[51709.435183][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51709.435184][ctx 0x40000000]	  surface = 0x00000005
[51709.435184][ctx 0x40000000]	  surface_region
[51709.435184][ctx 0x40000000]	    x = 0
[51709.435185][ctx 0x40000000]	    y = 0
[51709.435185][ctx 0x40000000]	    width = 1280
[51709.435185][ctx 0x40000000]	    height = 800
[51709.435185][ctx 0x40000000]	  surface_color_standard = 8
[51709.435186][ctx 0x40000000]	  output_region
[51709.435186][ctx 0x40000000]	    x = 0
[51709.435186][ctx 0x40000000]	    y = 0
[51709.435186][ctx 0x40000000]	    width = 1280
[51709.435187][ctx 0x40000000]	    height = 800
[51709.435187][ctx 0x40000000]	  output_background_color = 0xff000000
[51709.435187][ctx 0x40000000]	  output_color_standard = 2
[51709.435188][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51709.435188][ctx 0x40000000]	  filter_flags = 0x00000000
[51709.435188][ctx 0x40000000]	  num_filters = 0
[51709.435189][ctx 0x40000000]	  filters = (nil)
[51709.435189][ctx 0x40000000]	  num_forward_references = 0x00000000
[51709.435189][ctx 0x40000000]	  num_backward_references = 0x00000000
[51709.435191][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435195][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435195][ctx 0x40000000]==========va_TraceEndPicture
[51709.435196][ctx 0x40000000]	context = 0x40000000
[51709.435196][ctx 0x40000000]	render_targets = 0x00000003
[51709.435340][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.435342][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.450760][ctx       none]==========va_TraceCreateSurfaces
[51709.450761][ctx       none]	width = 1280
[51709.450761][ctx       none]	height = 800
[51709.450762][ctx       none]	format = 131072
[51709.450762][ctx       none]	num_surfaces = 1
[51709.450762][ctx       none]		surfaces[0] = 0x00000000
[51709.450763][ctx       none]	attrib_list[0] =
[51709.450763][ctx       none]		type = 8
[51709.450763][ctx       none]		flags = 2
[51709.450763][ctx       none]		value.type = 1
[51709.450764][ctx       none]		value.value.i = 0x0000000c
[51709.450764][ctx       none]	attrib_list[1] =
[51709.450764][ctx       none]		type = 6
[51709.450764][ctx       none]		flags = 2
[51709.450765][ctx       none]		value.type = 1
[51709.450765][ctx       none]		value.value.i = 0x40000000
[51709.450765][ctx       none]	attrib_list[2] =
[51709.450765][ctx       none]		type = 1
[51709.450765][ctx       none]		flags = 2
[51709.450766][ctx       none]		value.type = 1
[51709.450766][ctx       none]		value.value.i = 0x52474241
[51709.450766][ctx       none]	attrib_list[3] =
[51709.450766][ctx       none]		type = 7
[51709.450767][ctx       none]		flags = 2
[51709.450767][ctx       none]		value.type = 3
[51709.450767][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51709.450767][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51709.450768][ctx       none]		  pixel_format=0x52474241
[51709.450768][ctx       none]		  width=1280
[51709.450768][ctx       none]		  height=800
[51709.450768][ctx       none]		  num_objects=0x00000001
[51709.450769][ctx       none]			objects[0].fd=71
[51709.450769][ctx       none]			objects[0].size=4194304
[51709.450769][ctx       none]			objects[0].drm_format_modifier=0
[51709.450769][ctx       none]		  num_layers=1
[51709.450770][ctx       none]			layers[0].drm_format=0x34324241
[51709.450770][ctx       none]			layers[0].num_planes=0x1
[51709.450770][ctx       none]				layers[0].object_index[0]=0x0
[51709.450771][ctx       none]				layers[0].offset[0]=0x0
[51709.450771][ctx       none]				layers[0].pitch[0]=0x5120
[51709.450771][ctx       none]				layers[0].object_index[1]=0x0
[51709.450772][ctx       none]				layers[0].offset[1]=0x0
[51709.450772][ctx       none]				layers[0].pitch[1]=0x0
[51709.450772][ctx       none]				layers[0].object_index[2]=0x0
[51709.450772][ctx       none]				layers[0].offset[2]=0x0
[51709.450773][ctx       none]				layers[0].pitch[2]=0x0
[51709.450773][ctx       none]				layers[0].object_index[3]=0x0
[51709.450773][ctx       none]				layers[0].offset[3]=0x0
[51709.450774][ctx       none]				layers[0].pitch[3]=0x0
[51709.450784][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51709.450955][ctx       none]==========va_TraceSyncSurface
[51709.450956][ctx       none]	render_target = 0x00000005
[51709.450958][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51709.450960][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.450960][ctx       none]	render_target = 0x00000005
[51709.450960][ctx       none]	status = 0x00000004
[51709.450962][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.450964][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.450966][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51709.675939][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.675941][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.675993][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.675993][ctx       none]	render_target = 0x00000005
[51709.675993][ctx       none]	status = 0x00000004
[51709.675998][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676000][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.676000][ctx       none]	render_target = 0x00000004
[51709.676001][ctx       none]	status = 0x00000004
[51709.676002][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676003][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676005][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676006][ctx 0x40000000]==========va_TraceBeginPicture
[51709.676006][ctx 0x40000000]	context = 0x40000000
[51709.676007][ctx 0x40000000]	render_targets = 0x00000004
[51709.676007][ctx 0x40000000]	frame_count  = #7
[51709.676013][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676014][ctx 0x40000000]==========va_TraceRenderPicture
[51709.676014][ctx 0x40000000]	context = 0x40000000
[51709.676015][ctx 0x40000000]	num_buffers = 1
[51709.676015][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676016][ctx 0x40000000]	---------------------------
[51709.676016][ctx 0x40000000]	buffers[0] = 0x00000016
[51709.676016][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51709.676017][ctx 0x40000000]	  size = 224
[51709.676017][ctx 0x40000000]	  num_elements = 1
[51709.676018][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676018][ctx 0x40000000]	element[0] =
[51709.676019][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51709.676019][ctx 0x40000000]	  surface = 0x00000005
[51709.676019][ctx 0x40000000]	  surface_region
[51709.676019][ctx 0x40000000]	    x = 0
[51709.676020][ctx 0x40000000]	    y = 0
[51709.676020][ctx 0x40000000]	    width = 1280
[51709.676020][ctx 0x40000000]	    height = 800
[51709.676021][ctx 0x40000000]	  surface_color_standard = 8
[51709.676021][ctx 0x40000000]	  output_region
[51709.676021][ctx 0x40000000]	    x = 0
[51709.676021][ctx 0x40000000]	    y = 0
[51709.676022][ctx 0x40000000]	    width = 1280
[51709.676022][ctx 0x40000000]	    height = 800
[51709.676022][ctx 0x40000000]	  output_background_color = 0xff000000
[51709.676023][ctx 0x40000000]	  output_color_standard = 2
[51709.676023][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51709.676023][ctx 0x40000000]	  filter_flags = 0x00000000
[51709.676024][ctx 0x40000000]	  num_filters = 0
[51709.676024][ctx 0x40000000]	  filters = (nil)
[51709.676024][ctx 0x40000000]	  num_forward_references = 0x00000000
[51709.676025][ctx 0x40000000]	  num_backward_references = 0x00000000
[51709.676027][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676030][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676030][ctx 0x40000000]==========va_TraceEndPicture
[51709.676031][ctx 0x40000000]	context = 0x40000000
[51709.676031][ctx 0x40000000]	render_targets = 0x00000004
[51709.676174][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.676176][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.691865][ctx       none]==========va_TraceCreateSurfaces
[51709.691865][ctx       none]	width = 1280
[51709.691866][ctx       none]	height = 800
[51709.691866][ctx       none]	format = 131072
[51709.691866][ctx       none]	num_surfaces = 1
[51709.691866][ctx       none]		surfaces[0] = 0x00000000
[51709.691867][ctx       none]	attrib_list[0] =
[51709.691867][ctx       none]		type = 8
[51709.691867][ctx       none]		flags = 2
[51709.691868][ctx       none]		value.type = 1
[51709.691868][ctx       none]		value.value.i = 0x0000000c
[51709.691868][ctx       none]	attrib_list[1] =
[51709.691868][ctx       none]		type = 6
[51709.691869][ctx       none]		flags = 2
[51709.691869][ctx       none]		value.type = 1
[51709.691869][ctx       none]		value.value.i = 0x40000000
[51709.691869][ctx       none]	attrib_list[2] =
[51709.691870][ctx       none]		type = 1
[51709.691870][ctx       none]		flags = 2
[51709.691870][ctx       none]		value.type = 1
[51709.691870][ctx       none]		value.value.i = 0x52474241
[51709.691871][ctx       none]	attrib_list[3] =
[51709.691871][ctx       none]		type = 7
[51709.691871][ctx       none]		flags = 2
[51709.691871][ctx       none]		value.type = 3
[51709.691871][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51709.691872][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51709.691872][ctx       none]		  pixel_format=0x52474241
[51709.691872][ctx       none]		  width=1280
[51709.691872][ctx       none]		  height=800
[51709.691873][ctx       none]		  num_objects=0x00000001
[51709.691873][ctx       none]			objects[0].fd=71
[51709.691873][ctx       none]			objects[0].size=4194304
[51709.691873][ctx       none]			objects[0].drm_format_modifier=0
[51709.691874][ctx       none]		  num_layers=1
[51709.691874][ctx       none]			layers[0].drm_format=0x34324241
[51709.691874][ctx       none]			layers[0].num_planes=0x1
[51709.691875][ctx       none]				layers[0].object_index[0]=0x0
[51709.691875][ctx       none]				layers[0].offset[0]=0x0
[51709.691875][ctx       none]				layers[0].pitch[0]=0x5120
[51709.691876][ctx       none]				layers[0].object_index[1]=0x0
[51709.691876][ctx       none]				layers[0].offset[1]=0x0
[51709.691876][ctx       none]				layers[0].pitch[1]=0x0
[51709.691876][ctx       none]				layers[0].object_index[2]=0x0
[51709.691877][ctx       none]				layers[0].offset[2]=0x0
[51709.691877][ctx       none]				layers[0].pitch[2]=0x0
[51709.691877][ctx       none]				layers[0].object_index[3]=0x0
[51709.691878][ctx       none]				layers[0].offset[3]=0x0
[51709.691878][ctx       none]				layers[0].pitch[3]=0x0
[51709.691888][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51709.692055][ctx       none]==========va_TraceSyncSurface
[51709.692056][ctx       none]	render_target = 0x00000005
[51709.692058][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51709.692060][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.692060][ctx       none]	render_target = 0x00000005
[51709.692060][ctx       none]	status = 0x00000004
[51709.692062][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.692064][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.692066][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917048][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917049][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917099][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.917099][ctx       none]	render_target = 0x00000005
[51709.917100][ctx       none]	status = 0x00000004
[51709.917103][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917106][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.917106][ctx       none]	render_target = 0x00000003
[51709.917106][ctx       none]	status = 0x00000004
[51709.917108][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917109][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917111][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917111][ctx 0x40000000]==========va_TraceBeginPicture
[51709.917112][ctx 0x40000000]	context = 0x40000000
[51709.917112][ctx 0x40000000]	render_targets = 0x00000003
[51709.917112][ctx 0x40000000]	frame_count  = #8
[51709.917115][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917116][ctx 0x40000000]==========va_TraceRenderPicture
[51709.917116][ctx 0x40000000]	context = 0x40000000
[51709.917116][ctx 0x40000000]	num_buffers = 1
[51709.917117][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917117][ctx 0x40000000]	---------------------------
[51709.917117][ctx 0x40000000]	buffers[0] = 0x00000016
[51709.917118][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51709.917118][ctx 0x40000000]	  size = 224
[51709.917118][ctx 0x40000000]	  num_elements = 1
[51709.917119][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917119][ctx 0x40000000]	element[0] =
[51709.917120][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51709.917120][ctx 0x40000000]	  surface = 0x00000005
[51709.917121][ctx 0x40000000]	  surface_region
[51709.917121][ctx 0x40000000]	    x = 0
[51709.917121][ctx 0x40000000]	    y = 0
[51709.917121][ctx 0x40000000]	    width = 1280
[51709.917122][ctx 0x40000000]	    height = 800
[51709.917122][ctx 0x40000000]	  surface_color_standard = 8
[51709.917122][ctx 0x40000000]	  output_region
[51709.917122][ctx 0x40000000]	    x = 0
[51709.917123][ctx 0x40000000]	    y = 0
[51709.917123][ctx 0x40000000]	    width = 1280
[51709.917123][ctx 0x40000000]	    height = 800
[51709.917124][ctx 0x40000000]	  output_background_color = 0xff000000
[51709.917124][ctx 0x40000000]	  output_color_standard = 2
[51709.917124][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51709.917125][ctx 0x40000000]	  filter_flags = 0x00000000
[51709.917125][ctx 0x40000000]	  num_filters = 0
[51709.917125][ctx 0x40000000]	  filters = (nil)
[51709.917126][ctx 0x40000000]	  num_forward_references = 0x00000000
[51709.917126][ctx 0x40000000]	  num_backward_references = 0x00000000
[51709.917132][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917135][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917136][ctx 0x40000000]==========va_TraceEndPicture
[51709.917136][ctx 0x40000000]	context = 0x40000000
[51709.917137][ctx 0x40000000]	render_targets = 0x00000003
[51709.917277][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51709.917278][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51709.932651][ctx       none]==========va_TraceCreateSurfaces
[51709.932652][ctx       none]	width = 1280
[51709.932652][ctx       none]	height = 800
[51709.932652][ctx       none]	format = 131072
[51709.932653][ctx       none]	num_surfaces = 1
[51709.932653][ctx       none]		surfaces[0] = 0x00000000
[51709.932653][ctx       none]	attrib_list[0] =
[51709.932654][ctx       none]		type = 8
[51709.932654][ctx       none]		flags = 2
[51709.932654][ctx       none]		value.type = 1
[51709.932654][ctx       none]		value.value.i = 0x0000000c
[51709.932654][ctx       none]	attrib_list[1] =
[51709.932655][ctx       none]		type = 6
[51709.932655][ctx       none]		flags = 2
[51709.932655][ctx       none]		value.type = 1
[51709.932655][ctx       none]		value.value.i = 0x40000000
[51709.932656][ctx       none]	attrib_list[2] =
[51709.932656][ctx       none]		type = 1
[51709.932656][ctx       none]		flags = 2
[51709.932656][ctx       none]		value.type = 1
[51709.932656][ctx       none]		value.value.i = 0x52474241
[51709.932657][ctx       none]	attrib_list[3] =
[51709.932657][ctx       none]		type = 7
[51709.932657][ctx       none]		flags = 2
[51709.932657][ctx       none]		value.type = 3
[51709.932658][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51709.932658][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51709.932658][ctx       none]		  pixel_format=0x52474241
[51709.932658][ctx       none]		  width=1280
[51709.932659][ctx       none]		  height=800
[51709.932659][ctx       none]		  num_objects=0x00000001
[51709.932659][ctx       none]			objects[0].fd=71
[51709.932659][ctx       none]			objects[0].size=4194304
[51709.932660][ctx       none]			objects[0].drm_format_modifier=0
[51709.932660][ctx       none]		  num_layers=1
[51709.932660][ctx       none]			layers[0].drm_format=0x34324241
[51709.932661][ctx       none]			layers[0].num_planes=0x1
[51709.932661][ctx       none]				layers[0].object_index[0]=0x0
[51709.932661][ctx       none]				layers[0].offset[0]=0x0
[51709.932662][ctx       none]				layers[0].pitch[0]=0x5120
[51709.932662][ctx       none]				layers[0].object_index[1]=0x0
[51709.932662][ctx       none]				layers[0].offset[1]=0x0
[51709.932662][ctx       none]				layers[0].pitch[1]=0x0
[51709.932663][ctx       none]				layers[0].object_index[2]=0x0
[51709.932663][ctx       none]				layers[0].offset[2]=0x0
[51709.932663][ctx       none]				layers[0].pitch[2]=0x0
[51709.932664][ctx       none]				layers[0].object_index[3]=0x0
[51709.932664][ctx       none]				layers[0].offset[3]=0x0
[51709.932664][ctx       none]				layers[0].pitch[3]=0x0
[51709.932674][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51709.932856][ctx       none]==========va_TraceSyncSurface
[51709.932856][ctx       none]	render_target = 0x00000005
[51709.932859][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51709.932860][ctx       none]==========va_TraceQuerySurfaceStatus
[51709.932860][ctx       none]	render_target = 0x00000005
[51709.932860][ctx       none]	status = 0x00000004
[51709.932862][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51709.932864][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51709.932867][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157802][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157803][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157854][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.157854][ctx       none]	render_target = 0x00000005
[51710.157854][ctx       none]	status = 0x00000004
[51710.157858][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157861][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.157861][ctx       none]	render_target = 0x00000004
[51710.157861][ctx       none]	status = 0x00000004
[51710.157863][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157864][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157866][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157866][ctx 0x40000000]==========va_TraceBeginPicture
[51710.157867][ctx 0x40000000]	context = 0x40000000
[51710.157867][ctx 0x40000000]	render_targets = 0x00000004
[51710.157867][ctx 0x40000000]	frame_count  = #9
[51710.157870][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157871][ctx 0x40000000]==========va_TraceRenderPicture
[51710.157871][ctx 0x40000000]	context = 0x40000000
[51710.157871][ctx 0x40000000]	num_buffers = 1
[51710.157872][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157872][ctx 0x40000000]	---------------------------
[51710.157872][ctx 0x40000000]	buffers[0] = 0x00000016
[51710.157873][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51710.157873][ctx 0x40000000]	  size = 224
[51710.157873][ctx 0x40000000]	  num_elements = 1
[51710.157874][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157874][ctx 0x40000000]	element[0] =
[51710.157875][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51710.157875][ctx 0x40000000]	  surface = 0x00000005
[51710.157876][ctx 0x40000000]	  surface_region
[51710.157876][ctx 0x40000000]	    x = 0
[51710.157876][ctx 0x40000000]	    y = 0
[51710.157876][ctx 0x40000000]	    width = 1280
[51710.157877][ctx 0x40000000]	    height = 800
[51710.157877][ctx 0x40000000]	  surface_color_standard = 8
[51710.157877][ctx 0x40000000]	  output_region
[51710.157877][ctx 0x40000000]	    x = 0
[51710.157878][ctx 0x40000000]	    y = 0
[51710.157878][ctx 0x40000000]	    width = 1280
[51710.157878][ctx 0x40000000]	    height = 800
[51710.157879][ctx 0x40000000]	  output_background_color = 0xff000000
[51710.157879][ctx 0x40000000]	  output_color_standard = 2
[51710.157879][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51710.157879][ctx 0x40000000]	  filter_flags = 0x00000000
[51710.157880][ctx 0x40000000]	  num_filters = 0
[51710.157880][ctx 0x40000000]	  filters = (nil)
[51710.157881][ctx 0x40000000]	  num_forward_references = 0x00000000
[51710.157881][ctx 0x40000000]	  num_backward_references = 0x00000000
[51710.157883][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157886][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.157887][ctx 0x40000000]==========va_TraceEndPicture
[51710.157887][ctx 0x40000000]	context = 0x40000000
[51710.157887][ctx 0x40000000]	render_targets = 0x00000004
[51710.158031][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.158033][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.173645][ctx       none]==========va_TraceCreateSurfaces
[51710.173646][ctx       none]	width = 1280
[51710.173647][ctx       none]	height = 800
[51710.173647][ctx       none]	format = 131072
[51710.173648][ctx       none]	num_surfaces = 1
[51710.173648][ctx       none]		surfaces[0] = 0x00000000
[51710.173649][ctx       none]	attrib_list[0] =
[51710.173649][ctx       none]		type = 8
[51710.173650][ctx       none]		flags = 2
[51710.173650][ctx       none]		value.type = 1
[51710.173651][ctx       none]		value.value.i = 0x0000000c
[51710.173651][ctx       none]	attrib_list[1] =
[51710.173652][ctx       none]		type = 6
[51710.173652][ctx       none]		flags = 2
[51710.173652][ctx       none]		value.type = 1
[51710.173653][ctx       none]		value.value.i = 0x40000000
[51710.173653][ctx       none]	attrib_list[2] =
[51710.173654][ctx       none]		type = 1
[51710.173654][ctx       none]		flags = 2
[51710.173655][ctx       none]		value.type = 1
[51710.173655][ctx       none]		value.value.i = 0x52474241
[51710.173655][ctx       none]	attrib_list[3] =
[51710.173656][ctx       none]		type = 7
[51710.173656][ctx       none]		flags = 2
[51710.173657][ctx       none]		value.type = 3
[51710.173657][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51710.173658][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51710.173658][ctx       none]		  pixel_format=0x52474241
[51710.173659][ctx       none]		  width=1280
[51710.173659][ctx       none]		  height=800
[51710.173660][ctx       none]		  num_objects=0x00000001
[51710.173660][ctx       none]			objects[0].fd=71
[51710.173661][ctx       none]			objects[0].size=4194304
[51710.173661][ctx       none]			objects[0].drm_format_modifier=0
[51710.173662][ctx       none]		  num_layers=1
[51710.173662][ctx       none]			layers[0].drm_format=0x34324241
[51710.173663][ctx       none]			layers[0].num_planes=0x1
[51710.173663][ctx       none]				layers[0].object_index[0]=0x0
[51710.173664][ctx       none]				layers[0].offset[0]=0x0
[51710.173665][ctx       none]				layers[0].pitch[0]=0x5120
[51710.173665][ctx       none]				layers[0].object_index[1]=0x0
[51710.173666][ctx       none]				layers[0].offset[1]=0x0
[51710.173666][ctx       none]				layers[0].pitch[1]=0x0
[51710.173667][ctx       none]				layers[0].object_index[2]=0x0
[51710.173667][ctx       none]				layers[0].offset[2]=0x0
[51710.173668][ctx       none]				layers[0].pitch[2]=0x0
[51710.173668][ctx       none]				layers[0].object_index[3]=0x0
[51710.173669][ctx       none]				layers[0].offset[3]=0x0
[51710.173669][ctx       none]				layers[0].pitch[3]=0x0
[51710.173679][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51710.173852][ctx       none]==========va_TraceSyncSurface
[51710.173853][ctx       none]	render_target = 0x00000005
[51710.173858][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51710.173860][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.173861][ctx       none]	render_target = 0x00000005
[51710.173861][ctx       none]	status = 0x00000004
[51710.173864][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.173868][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.173872][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398830][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398832][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398868][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.398869][ctx       none]	render_target = 0x00000005
[51710.398869][ctx       none]	status = 0x00000004
[51710.398877][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398880][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.398880][ctx       none]	render_target = 0x00000003
[51710.398881][ctx       none]	status = 0x00000004
[51710.398882][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398883][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398885][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398886][ctx 0x40000000]==========va_TraceBeginPicture
[51710.398887][ctx 0x40000000]	context = 0x40000000
[51710.398887][ctx 0x40000000]	render_targets = 0x00000003
[51710.398887][ctx 0x40000000]	frame_count  = #10
[51710.398890][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398890][ctx 0x40000000]==========va_TraceRenderPicture
[51710.398891][ctx 0x40000000]	context = 0x40000000
[51710.398891][ctx 0x40000000]	num_buffers = 1
[51710.398892][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398892][ctx 0x40000000]	---------------------------
[51710.398892][ctx 0x40000000]	buffers[0] = 0x00000016
[51710.398893][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51710.398893][ctx 0x40000000]	  size = 224
[51710.398893][ctx 0x40000000]	  num_elements = 1
[51710.398894][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398894][ctx 0x40000000]	element[0] =
[51710.398895][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51710.398895][ctx 0x40000000]	  surface = 0x00000005
[51710.398895][ctx 0x40000000]	  surface_region
[51710.398896][ctx 0x40000000]	    x = 0
[51710.398896][ctx 0x40000000]	    y = 0
[51710.398896][ctx 0x40000000]	    width = 1280
[51710.398897][ctx 0x40000000]	    height = 800
[51710.398897][ctx 0x40000000]	  surface_color_standard = 8
[51710.398897][ctx 0x40000000]	  output_region
[51710.398897][ctx 0x40000000]	    x = 0
[51710.398898][ctx 0x40000000]	    y = 0
[51710.398898][ctx 0x40000000]	    width = 1280
[51710.398898][ctx 0x40000000]	    height = 800
[51710.398898][ctx 0x40000000]	  output_background_color = 0xff000000
[51710.398899][ctx 0x40000000]	  output_color_standard = 2
[51710.398899][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51710.398899][ctx 0x40000000]	  filter_flags = 0x00000000
[51710.398900][ctx 0x40000000]	  num_filters = 0
[51710.398900][ctx 0x40000000]	  filters = (nil)
[51710.398901][ctx 0x40000000]	  num_forward_references = 0x00000000
[51710.398901][ctx 0x40000000]	  num_backward_references = 0x00000000
[51710.398903][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398906][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.398907][ctx 0x40000000]==========va_TraceEndPicture
[51710.398907][ctx 0x40000000]	context = 0x40000000
[51710.398907][ctx 0x40000000]	render_targets = 0x00000003
[51710.399048][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.399050][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.414878][ctx       none]==========va_TraceCreateSurfaces
[51710.414879][ctx       none]	width = 1280
[51710.414879][ctx       none]	height = 800
[51710.414879][ctx       none]	format = 131072
[51710.414879][ctx       none]	num_surfaces = 1
[51710.414880][ctx       none]		surfaces[0] = 0x00000000
[51710.414880][ctx       none]	attrib_list[0] =
[51710.414880][ctx       none]		type = 8
[51710.414881][ctx       none]		flags = 2
[51710.414881][ctx       none]		value.type = 1
[51710.414881][ctx       none]		value.value.i = 0x0000000c
[51710.414881][ctx       none]	attrib_list[1] =
[51710.414882][ctx       none]		type = 6
[51710.414882][ctx       none]		flags = 2
[51710.414882][ctx       none]		value.type = 1
[51710.414882][ctx       none]		value.value.i = 0x40000000
[51710.414882][ctx       none]	attrib_list[2] =
[51710.414883][ctx       none]		type = 1
[51710.414883][ctx       none]		flags = 2
[51710.414883][ctx       none]		value.type = 1
[51710.414883][ctx       none]		value.value.i = 0x52474241
[51710.414884][ctx       none]	attrib_list[3] =
[51710.414884][ctx       none]		type = 7
[51710.414884][ctx       none]		flags = 2
[51710.414884][ctx       none]		value.type = 3
[51710.414884][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51710.414885][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51710.414885][ctx       none]		  pixel_format=0x52474241
[51710.414885][ctx       none]		  width=1280
[51710.414886][ctx       none]		  height=800
[51710.414886][ctx       none]		  num_objects=0x00000001
[51710.414886][ctx       none]			objects[0].fd=71
[51710.414886][ctx       none]			objects[0].size=4194304
[51710.414887][ctx       none]			objects[0].drm_format_modifier=0
[51710.414887][ctx       none]		  num_layers=1
[51710.414887][ctx       none]			layers[0].drm_format=0x34324241
[51710.414888][ctx       none]			layers[0].num_planes=0x1
[51710.414888][ctx       none]				layers[0].object_index[0]=0x0
[51710.414888][ctx       none]				layers[0].offset[0]=0x0
[51710.414888][ctx       none]				layers[0].pitch[0]=0x5120
[51710.414889][ctx       none]				layers[0].object_index[1]=0x0
[51710.414889][ctx       none]				layers[0].offset[1]=0x0
[51710.414889][ctx       none]				layers[0].pitch[1]=0x0
[51710.414890][ctx       none]				layers[0].object_index[2]=0x0
[51710.414890][ctx       none]				layers[0].offset[2]=0x0
[51710.414890][ctx       none]				layers[0].pitch[2]=0x0
[51710.414890][ctx       none]				layers[0].object_index[3]=0x0
[51710.414891][ctx       none]				layers[0].offset[3]=0x0
[51710.414891][ctx       none]				layers[0].pitch[3]=0x0
[51710.414901][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51710.415042][ctx       none]==========va_TraceSyncSurface
[51710.415042][ctx       none]	render_target = 0x00000005
[51710.415045][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51710.415046][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.415046][ctx       none]	render_target = 0x00000005
[51710.415047][ctx       none]	status = 0x00000004
[51710.415048][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.415050][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.415053][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51710.639992][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.639993][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640047][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.640047][ctx       none]	render_target = 0x00000005
[51710.640047][ctx       none]	status = 0x00000004
[51710.640051][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640054][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.640054][ctx       none]	render_target = 0x00000004
[51710.640054][ctx       none]	status = 0x00000004
[51710.640056][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640057][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640059][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640060][ctx 0x40000000]==========va_TraceBeginPicture
[51710.640060][ctx 0x40000000]	context = 0x40000000
[51710.640061][ctx 0x40000000]	render_targets = 0x00000004
[51710.640061][ctx 0x40000000]	frame_count  = #11
[51710.640064][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640064][ctx 0x40000000]==========va_TraceRenderPicture
[51710.640065][ctx 0x40000000]	context = 0x40000000
[51710.640065][ctx 0x40000000]	num_buffers = 1
[51710.640065][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640066][ctx 0x40000000]	---------------------------
[51710.640066][ctx 0x40000000]	buffers[0] = 0x00000016
[51710.640066][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51710.640067][ctx 0x40000000]	  size = 224
[51710.640067][ctx 0x40000000]	  num_elements = 1
[51710.640067][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640068][ctx 0x40000000]	element[0] =
[51710.640068][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51710.640069][ctx 0x40000000]	  surface = 0x00000005
[51710.640069][ctx 0x40000000]	  surface_region
[51710.640069][ctx 0x40000000]	    x = 0
[51710.640070][ctx 0x40000000]	    y = 0
[51710.640070][ctx 0x40000000]	    width = 1280
[51710.640070][ctx 0x40000000]	    height = 800
[51710.640070][ctx 0x40000000]	  surface_color_standard = 8
[51710.640071][ctx 0x40000000]	  output_region
[51710.640071][ctx 0x40000000]	    x = 0
[51710.640071][ctx 0x40000000]	    y = 0
[51710.640072][ctx 0x40000000]	    width = 1280
[51710.640072][ctx 0x40000000]	    height = 800
[51710.640072][ctx 0x40000000]	  output_background_color = 0xff000000
[51710.640072][ctx 0x40000000]	  output_color_standard = 2
[51710.640073][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51710.640073][ctx 0x40000000]	  filter_flags = 0x00000000
[51710.640074][ctx 0x40000000]	  num_filters = 0
[51710.640074][ctx 0x40000000]	  filters = (nil)
[51710.640074][ctx 0x40000000]	  num_forward_references = 0x00000000
[51710.640075][ctx 0x40000000]	  num_backward_references = 0x00000000
[51710.640081][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640084][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640085][ctx 0x40000000]==========va_TraceEndPicture
[51710.640085][ctx 0x40000000]	context = 0x40000000
[51710.640085][ctx 0x40000000]	render_targets = 0x00000004
[51710.640232][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.640234][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.655852][ctx       none]==========va_TraceCreateSurfaces
[51710.655852][ctx       none]	width = 1280
[51710.655852][ctx       none]	height = 800
[51710.655853][ctx       none]	format = 131072
[51710.655853][ctx       none]	num_surfaces = 1
[51710.655853][ctx       none]		surfaces[0] = 0x00000000
[51710.655854][ctx       none]	attrib_list[0] =
[51710.655854][ctx       none]		type = 8
[51710.655854][ctx       none]		flags = 2
[51710.655854][ctx       none]		value.type = 1
[51710.655855][ctx       none]		value.value.i = 0x0000000c
[51710.655855][ctx       none]	attrib_list[1] =
[51710.655855][ctx       none]		type = 6
[51710.655855][ctx       none]		flags = 2
[51710.655855][ctx       none]		value.type = 1
[51710.655856][ctx       none]		value.value.i = 0x40000000
[51710.655856][ctx       none]	attrib_list[2] =
[51710.655856][ctx       none]		type = 1
[51710.655856][ctx       none]		flags = 2
[51710.655857][ctx       none]		value.type = 1
[51710.655857][ctx       none]		value.value.i = 0x52474241
[51710.655857][ctx       none]	attrib_list[3] =
[51710.655857][ctx       none]		type = 7
[51710.655858][ctx       none]		flags = 2
[51710.655858][ctx       none]		value.type = 3
[51710.655858][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51710.655858][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51710.655858][ctx       none]		  pixel_format=0x52474241
[51710.655859][ctx       none]		  width=1280
[51710.655859][ctx       none]		  height=800
[51710.655859][ctx       none]		  num_objects=0x00000001
[51710.655859][ctx       none]			objects[0].fd=71
[51710.655860][ctx       none]			objects[0].size=4194304
[51710.655860][ctx       none]			objects[0].drm_format_modifier=0
[51710.655860][ctx       none]		  num_layers=1
[51710.655861][ctx       none]			layers[0].drm_format=0x34324241
[51710.655861][ctx       none]			layers[0].num_planes=0x1
[51710.655861][ctx       none]				layers[0].object_index[0]=0x0
[51710.655862][ctx       none]				layers[0].offset[0]=0x0
[51710.655862][ctx       none]				layers[0].pitch[0]=0x5120
[51710.655862][ctx       none]				layers[0].object_index[1]=0x0
[51710.655862][ctx       none]				layers[0].offset[1]=0x0
[51710.655863][ctx       none]				layers[0].pitch[1]=0x0
[51710.655863][ctx       none]				layers[0].object_index[2]=0x0
[51710.655863][ctx       none]				layers[0].offset[2]=0x0
[51710.655864][ctx       none]				layers[0].pitch[2]=0x0
[51710.655864][ctx       none]				layers[0].object_index[3]=0x0
[51710.655864][ctx       none]				layers[0].offset[3]=0x0
[51710.655864][ctx       none]				layers[0].pitch[3]=0x0
[51710.655875][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51710.656022][ctx       none]==========va_TraceSyncSurface
[51710.656022][ctx       none]	render_target = 0x00000005
[51710.656025][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51710.656026][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.656026][ctx       none]	render_target = 0x00000005
[51710.656027][ctx       none]	status = 0x00000004
[51710.656028][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.656030][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.656033][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51710.880987][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.880988][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881048][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.881048][ctx       none]	render_target = 0x00000005
[51710.881049][ctx       none]	status = 0x00000004
[51710.881052][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881055][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.881055][ctx       none]	render_target = 0x00000003
[51710.881055][ctx       none]	status = 0x00000004
[51710.881057][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881058][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881060][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881061][ctx 0x40000000]==========va_TraceBeginPicture
[51710.881061][ctx 0x40000000]	context = 0x40000000
[51710.881061][ctx 0x40000000]	render_targets = 0x00000003
[51710.881061][ctx 0x40000000]	frame_count  = #12
[51710.881064][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881065][ctx 0x40000000]==========va_TraceRenderPicture
[51710.881065][ctx 0x40000000]	context = 0x40000000
[51710.881065][ctx 0x40000000]	num_buffers = 1
[51710.881066][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881066][ctx 0x40000000]	---------------------------
[51710.881067][ctx 0x40000000]	buffers[0] = 0x00000016
[51710.881067][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51710.881067][ctx 0x40000000]	  size = 224
[51710.881068][ctx 0x40000000]	  num_elements = 1
[51710.881068][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881069][ctx 0x40000000]	element[0] =
[51710.881069][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51710.881069][ctx 0x40000000]	  surface = 0x00000005
[51710.881070][ctx 0x40000000]	  surface_region
[51710.881070][ctx 0x40000000]	    x = 0
[51710.881070][ctx 0x40000000]	    y = 0
[51710.881071][ctx 0x40000000]	    width = 1280
[51710.881071][ctx 0x40000000]	    height = 800
[51710.881071][ctx 0x40000000]	  surface_color_standard = 8
[51710.881071][ctx 0x40000000]	  output_region
[51710.881072][ctx 0x40000000]	    x = 0
[51710.881072][ctx 0x40000000]	    y = 0
[51710.881072][ctx 0x40000000]	    width = 1280
[51710.881073][ctx 0x40000000]	    height = 800
[51710.881073][ctx 0x40000000]	  output_background_color = 0xff000000
[51710.881073][ctx 0x40000000]	  output_color_standard = 2
[51710.881073][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51710.881074][ctx 0x40000000]	  filter_flags = 0x00000000
[51710.881074][ctx 0x40000000]	  num_filters = 0
[51710.881074][ctx 0x40000000]	  filters = (nil)
[51710.881075][ctx 0x40000000]	  num_forward_references = 0x00000000
[51710.881075][ctx 0x40000000]	  num_backward_references = 0x00000000
[51710.881081][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881084][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881085][ctx 0x40000000]==========va_TraceEndPicture
[51710.881085][ctx 0x40000000]	context = 0x40000000
[51710.881085][ctx 0x40000000]	render_targets = 0x00000003
[51710.881227][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51710.881229][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51710.896719][ctx       none]==========va_TraceCreateSurfaces
[51710.896720][ctx       none]	width = 1280
[51710.896720][ctx       none]	height = 800
[51710.896720][ctx       none]	format = 131072
[51710.896720][ctx       none]	num_surfaces = 1
[51710.896721][ctx       none]		surfaces[0] = 0x00000000
[51710.896721][ctx       none]	attrib_list[0] =
[51710.896721][ctx       none]		type = 8
[51710.896722][ctx       none]		flags = 2
[51710.896722][ctx       none]		value.type = 1
[51710.896722][ctx       none]		value.value.i = 0x0000000c
[51710.896722][ctx       none]	attrib_list[1] =
[51710.896723][ctx       none]		type = 6
[51710.896723][ctx       none]		flags = 2
[51710.896723][ctx       none]		value.type = 1
[51710.896723][ctx       none]		value.value.i = 0x40000000
[51710.896723][ctx       none]	attrib_list[2] =
[51710.896724][ctx       none]		type = 1
[51710.896724][ctx       none]		flags = 2
[51710.896724][ctx       none]		value.type = 1
[51710.896724][ctx       none]		value.value.i = 0x52474241
[51710.896725][ctx       none]	attrib_list[3] =
[51710.896725][ctx       none]		type = 7
[51710.896725][ctx       none]		flags = 2
[51710.896725][ctx       none]		value.type = 3
[51710.896725][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51710.896726][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51710.896726][ctx       none]		  pixel_format=0x52474241
[51710.896726][ctx       none]		  width=1280
[51710.896726][ctx       none]		  height=800
[51710.896727][ctx       none]		  num_objects=0x00000001
[51710.896727][ctx       none]			objects[0].fd=71
[51710.896727][ctx       none]			objects[0].size=4194304
[51710.896728][ctx       none]			objects[0].drm_format_modifier=0
[51710.896728][ctx       none]		  num_layers=1
[51710.896728][ctx       none]			layers[0].drm_format=0x34324241
[51710.896728][ctx       none]			layers[0].num_planes=0x1
[51710.896729][ctx       none]				layers[0].object_index[0]=0x0
[51710.896729][ctx       none]				layers[0].offset[0]=0x0
[51710.896729][ctx       none]				layers[0].pitch[0]=0x5120
[51710.896730][ctx       none]				layers[0].object_index[1]=0x0
[51710.896730][ctx       none]				layers[0].offset[1]=0x0
[51710.896730][ctx       none]				layers[0].pitch[1]=0x0
[51710.896731][ctx       none]				layers[0].object_index[2]=0x0
[51710.896731][ctx       none]				layers[0].offset[2]=0x0
[51710.896731][ctx       none]				layers[0].pitch[2]=0x0
[51710.896731][ctx       none]				layers[0].object_index[3]=0x0
[51710.896732][ctx       none]				layers[0].offset[3]=0x0
[51710.896732][ctx       none]				layers[0].pitch[3]=0x0
[51710.896738][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51710.896910][ctx       none]==========va_TraceSyncSurface
[51710.896910][ctx       none]	render_target = 0x00000005
[51710.896913][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51710.896914][ctx       none]==========va_TraceQuerySurfaceStatus
[51710.896914][ctx       none]	render_target = 0x00000005
[51710.896915][ctx       none]	status = 0x00000004
[51710.896921][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51710.896923][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51710.896925][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121894][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121896][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121931][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.121932][ctx       none]	render_target = 0x00000005
[51711.121932][ctx       none]	status = 0x00000004
[51711.121936][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121939][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.121939][ctx       none]	render_target = 0x00000004
[51711.121939][ctx       none]	status = 0x00000004
[51711.121941][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121942][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121944][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121945][ctx 0x40000000]==========va_TraceBeginPicture
[51711.121945][ctx 0x40000000]	context = 0x40000000
[51711.121945][ctx 0x40000000]	render_targets = 0x00000004
[51711.121946][ctx 0x40000000]	frame_count  = #13
[51711.121948][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121949][ctx 0x40000000]==========va_TraceRenderPicture
[51711.121949][ctx 0x40000000]	context = 0x40000000
[51711.121950][ctx 0x40000000]	num_buffers = 1
[51711.121950][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121950][ctx 0x40000000]	---------------------------
[51711.121951][ctx 0x40000000]	buffers[0] = 0x00000016
[51711.121951][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51711.121951][ctx 0x40000000]	  size = 224
[51711.121952][ctx 0x40000000]	  num_elements = 1
[51711.121952][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121952][ctx 0x40000000]	element[0] =
[51711.121953][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51711.121953][ctx 0x40000000]	  surface = 0x00000005
[51711.121954][ctx 0x40000000]	  surface_region
[51711.121954][ctx 0x40000000]	    x = 0
[51711.121954][ctx 0x40000000]	    y = 0
[51711.121955][ctx 0x40000000]	    width = 1280
[51711.121955][ctx 0x40000000]	    height = 800
[51711.121955][ctx 0x40000000]	  surface_color_standard = 8
[51711.121955][ctx 0x40000000]	  output_region
[51711.121956][ctx 0x40000000]	    x = 0
[51711.121956][ctx 0x40000000]	    y = 0
[51711.121956][ctx 0x40000000]	    width = 1280
[51711.121957][ctx 0x40000000]	    height = 800
[51711.121957][ctx 0x40000000]	  output_background_color = 0xff000000
[51711.121957][ctx 0x40000000]	  output_color_standard = 2
[51711.121957][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51711.121958][ctx 0x40000000]	  filter_flags = 0x00000000
[51711.121958][ctx 0x40000000]	  num_filters = 0
[51711.121958][ctx 0x40000000]	  filters = (nil)
[51711.121959][ctx 0x40000000]	  num_forward_references = 0x00000000
[51711.121959][ctx 0x40000000]	  num_backward_references = 0x00000000
[51711.121961][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121964][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.121965][ctx 0x40000000]==========va_TraceEndPicture
[51711.121965][ctx 0x40000000]	context = 0x40000000
[51711.121965][ctx 0x40000000]	render_targets = 0x00000004
[51711.122104][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.122105][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.137806][ctx       none]==========va_TraceCreateSurfaces
[51711.137807][ctx       none]	width = 1280
[51711.137807][ctx       none]	height = 800
[51711.137808][ctx       none]	format = 131072
[51711.137808][ctx       none]	num_surfaces = 1
[51711.137809][ctx       none]		surfaces[0] = 0x00000000
[51711.137809][ctx       none]	attrib_list[0] =
[51711.137810][ctx       none]		type = 8
[51711.137810][ctx       none]		flags = 2
[51711.137811][ctx       none]		value.type = 1
[51711.137811][ctx       none]		value.value.i = 0x0000000c
[51711.137812][ctx       none]	attrib_list[1] =
[51711.137812][ctx       none]		type = 6
[51711.137813][ctx       none]		flags = 2
[51711.137813][ctx       none]		value.type = 1
[51711.137814][ctx       none]		value.value.i = 0x40000000
[51711.137814][ctx       none]	attrib_list[2] =
[51711.137814][ctx       none]		type = 1
[51711.137815][ctx       none]		flags = 2
[51711.137815][ctx       none]		value.type = 1
[51711.137816][ctx       none]		value.value.i = 0x52474241
[51711.137816][ctx       none]	attrib_list[3] =
[51711.137817][ctx       none]		type = 7
[51711.137817][ctx       none]		flags = 2
[51711.137817][ctx       none]		value.type = 3
[51711.137818][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51711.137818][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51711.137819][ctx       none]		  pixel_format=0x52474241
[51711.137819][ctx       none]		  width=1280
[51711.137820][ctx       none]		  height=800
[51711.137820][ctx       none]		  num_objects=0x00000001
[51711.137821][ctx       none]			objects[0].fd=71
[51711.137821][ctx       none]			objects[0].size=4194304
[51711.137822][ctx       none]			objects[0].drm_format_modifier=0
[51711.137822][ctx       none]		  num_layers=1
[51711.137823][ctx       none]			layers[0].drm_format=0x34324241
[51711.137823][ctx       none]			layers[0].num_planes=0x1
[51711.137824][ctx       none]				layers[0].object_index[0]=0x0
[51711.137825][ctx       none]				layers[0].offset[0]=0x0
[51711.137825][ctx       none]				layers[0].pitch[0]=0x5120
[51711.137826][ctx       none]				layers[0].object_index[1]=0x0
[51711.137826][ctx       none]				layers[0].offset[1]=0x0
[51711.137827][ctx       none]				layers[0].pitch[1]=0x0
[51711.137827][ctx       none]				layers[0].object_index[2]=0x0
[51711.137828][ctx       none]				layers[0].offset[2]=0x0
[51711.137828][ctx       none]				layers[0].pitch[2]=0x0
[51711.137829][ctx       none]				layers[0].object_index[3]=0x0
[51711.137829][ctx       none]				layers[0].offset[3]=0x0
[51711.137830][ctx       none]				layers[0].pitch[3]=0x0
[51711.137861][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51711.137903][ctx       none]==========va_TraceSyncSurface
[51711.137904][ctx       none]	render_target = 0x00000005
[51711.137908][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51711.137911][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.137911][ctx       none]	render_target = 0x00000005
[51711.137912][ctx       none]	status = 0x00000004
[51711.137915][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.137918][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.137923][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51711.362959][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.362961][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363376][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.363377][ctx       none]	render_target = 0x00000005
[51711.363377][ctx       none]	status = 0x00000004
[51711.363381][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363383][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.363383][ctx       none]	render_target = 0x00000003
[51711.363383][ctx       none]	status = 0x00000004
[51711.363385][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363386][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363388][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363389][ctx 0x40000000]==========va_TraceBeginPicture
[51711.363389][ctx 0x40000000]	context = 0x40000000
[51711.363389][ctx 0x40000000]	render_targets = 0x00000003
[51711.363390][ctx 0x40000000]	frame_count  = #14
[51711.363396][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363397][ctx 0x40000000]==========va_TraceRenderPicture
[51711.363397][ctx 0x40000000]	context = 0x40000000
[51711.363397][ctx 0x40000000]	num_buffers = 1
[51711.363398][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363398][ctx 0x40000000]	---------------------------
[51711.363398][ctx 0x40000000]	buffers[0] = 0x00000016
[51711.363399][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51711.363399][ctx 0x40000000]	  size = 224
[51711.363399][ctx 0x40000000]	  num_elements = 1
[51711.363400][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363400][ctx 0x40000000]	element[0] =
[51711.363401][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51711.363401][ctx 0x40000000]	  surface = 0x00000005
[51711.363402][ctx 0x40000000]	  surface_region
[51711.363402][ctx 0x40000000]	    x = 0
[51711.363402][ctx 0x40000000]	    y = 0
[51711.363402][ctx 0x40000000]	    width = 1280
[51711.363403][ctx 0x40000000]	    height = 800
[51711.363403][ctx 0x40000000]	  surface_color_standard = 8
[51711.363403][ctx 0x40000000]	  output_region
[51711.363404][ctx 0x40000000]	    x = 0
[51711.363404][ctx 0x40000000]	    y = 0
[51711.363404][ctx 0x40000000]	    width = 1280
[51711.363404][ctx 0x40000000]	    height = 800
[51711.363405][ctx 0x40000000]	  output_background_color = 0xff000000
[51711.363405][ctx 0x40000000]	  output_color_standard = 2
[51711.363405][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51711.363406][ctx 0x40000000]	  filter_flags = 0x00000000
[51711.363406][ctx 0x40000000]	  num_filters = 0
[51711.363406][ctx 0x40000000]	  filters = (nil)
[51711.363407][ctx 0x40000000]	  num_forward_references = 0x00000000
[51711.363407][ctx 0x40000000]	  num_backward_references = 0x00000000
[51711.363409][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363412][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363413][ctx 0x40000000]==========va_TraceEndPicture
[51711.363413][ctx 0x40000000]	context = 0x40000000
[51711.363413][ctx 0x40000000]	render_targets = 0x00000003
[51711.363560][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.363562][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.378707][ctx       none]==========va_TraceCreateSurfaces
[51711.378708][ctx       none]	width = 1280
[51711.378708][ctx       none]	height = 800
[51711.378708][ctx       none]	format = 131072
[51711.378709][ctx       none]	num_surfaces = 1
[51711.378709][ctx       none]		surfaces[0] = 0x00000000
[51711.378709][ctx       none]	attrib_list[0] =
[51711.378710][ctx       none]		type = 8
[51711.378710][ctx       none]		flags = 2
[51711.378710][ctx       none]		value.type = 1
[51711.378710][ctx       none]		value.value.i = 0x0000000c
[51711.378711][ctx       none]	attrib_list[1] =
[51711.378711][ctx       none]		type = 6
[51711.378711][ctx       none]		flags = 2
[51711.378711][ctx       none]		value.type = 1
[51711.378711][ctx       none]		value.value.i = 0x40000000
[51711.378712][ctx       none]	attrib_list[2] =
[51711.378712][ctx       none]		type = 1
[51711.378712][ctx       none]		flags = 2
[51711.378712][ctx       none]		value.type = 1
[51711.378713][ctx       none]		value.value.i = 0x52474241
[51711.378713][ctx       none]	attrib_list[3] =
[51711.378713][ctx       none]		type = 7
[51711.378713][ctx       none]		flags = 2
[51711.378713][ctx       none]		value.type = 3
[51711.378714][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51711.378714][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51711.378714][ctx       none]		  pixel_format=0x52474241
[51711.378714][ctx       none]		  width=1280
[51711.378715][ctx       none]		  height=800
[51711.378715][ctx       none]		  num_objects=0x00000001
[51711.378715][ctx       none]			objects[0].fd=71
[51711.378715][ctx       none]			objects[0].size=4194304
[51711.378716][ctx       none]			objects[0].drm_format_modifier=0
[51711.378716][ctx       none]		  num_layers=1
[51711.378716][ctx       none]			layers[0].drm_format=0x34324241
[51711.378717][ctx       none]			layers[0].num_planes=0x1
[51711.378717][ctx       none]				layers[0].object_index[0]=0x0
[51711.378717][ctx       none]				layers[0].offset[0]=0x0
[51711.378718][ctx       none]				layers[0].pitch[0]=0x5120
[51711.378718][ctx       none]				layers[0].object_index[1]=0x0
[51711.378718][ctx       none]				layers[0].offset[1]=0x0
[51711.378718][ctx       none]				layers[0].pitch[1]=0x0
[51711.378719][ctx       none]				layers[0].object_index[2]=0x0
[51711.378719][ctx       none]				layers[0].offset[2]=0x0
[51711.378719][ctx       none]				layers[0].pitch[2]=0x0
[51711.378720][ctx       none]				layers[0].object_index[3]=0x0
[51711.378720][ctx       none]				layers[0].offset[3]=0x0
[51711.378720][ctx       none]				layers[0].pitch[3]=0x0
[51711.378730][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51711.378757][ctx       none]==========va_TraceSyncSurface
[51711.378757][ctx       none]	render_target = 0x00000005
[51711.378759][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51711.378761][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.378761][ctx       none]	render_target = 0x00000005
[51711.378761][ctx       none]	status = 0x00000004
[51711.378763][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.378765][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.378767][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603809][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603810][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603862][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.603862][ctx       none]	render_target = 0x00000005
[51711.603863][ctx       none]	status = 0x00000004
[51711.603867][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603869][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.603870][ctx       none]	render_target = 0x00000004
[51711.603870][ctx       none]	status = 0x00000004
[51711.603871][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603873][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603874][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603875][ctx 0x40000000]==========va_TraceBeginPicture
[51711.603875][ctx 0x40000000]	context = 0x40000000
[51711.603876][ctx 0x40000000]	render_targets = 0x00000004
[51711.603876][ctx 0x40000000]	frame_count  = #15
[51711.603879][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603879][ctx 0x40000000]==========va_TraceRenderPicture
[51711.603880][ctx 0x40000000]	context = 0x40000000
[51711.603880][ctx 0x40000000]	num_buffers = 1
[51711.603880][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603881][ctx 0x40000000]	---------------------------
[51711.603881][ctx 0x40000000]	buffers[0] = 0x00000016
[51711.603881][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51711.603882][ctx 0x40000000]	  size = 224
[51711.603882][ctx 0x40000000]	  num_elements = 1
[51711.603883][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603883][ctx 0x40000000]	element[0] =
[51711.603884][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51711.603884][ctx 0x40000000]	  surface = 0x00000005
[51711.603884][ctx 0x40000000]	  surface_region
[51711.603884][ctx 0x40000000]	    x = 0
[51711.603885][ctx 0x40000000]	    y = 0
[51711.603885][ctx 0x40000000]	    width = 1280
[51711.603885][ctx 0x40000000]	    height = 800
[51711.603886][ctx 0x40000000]	  surface_color_standard = 8
[51711.603886][ctx 0x40000000]	  output_region
[51711.603886][ctx 0x40000000]	    x = 0
[51711.603886][ctx 0x40000000]	    y = 0
[51711.603887][ctx 0x40000000]	    width = 1280
[51711.603887][ctx 0x40000000]	    height = 800
[51711.603887][ctx 0x40000000]	  output_background_color = 0xff000000
[51711.603888][ctx 0x40000000]	  output_color_standard = 2
[51711.603888][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51711.603888][ctx 0x40000000]	  filter_flags = 0x00000000
[51711.603889][ctx 0x40000000]	  num_filters = 0
[51711.603889][ctx 0x40000000]	  filters = (nil)
[51711.603889][ctx 0x40000000]	  num_forward_references = 0x00000000
[51711.603890][ctx 0x40000000]	  num_backward_references = 0x00000000
[51711.603895][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603899][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.603899][ctx 0x40000000]==========va_TraceEndPicture
[51711.603899][ctx 0x40000000]	context = 0x40000000
[51711.603900][ctx 0x40000000]	render_targets = 0x00000004
[51711.604040][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.604042][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.619693][ctx       none]==========va_TraceCreateSurfaces
[51711.619694][ctx       none]	width = 1280
[51711.619694][ctx       none]	height = 800
[51711.619695][ctx       none]	format = 131072
[51711.619695][ctx       none]	num_surfaces = 1
[51711.619695][ctx       none]		surfaces[0] = 0x00000000
[51711.619696][ctx       none]	attrib_list[0] =
[51711.619696][ctx       none]		type = 8
[51711.619696][ctx       none]		flags = 2
[51711.619696][ctx       none]		value.type = 1
[51711.619697][ctx       none]		value.value.i = 0x0000000c
[51711.619697][ctx       none]	attrib_list[1] =
[51711.619697][ctx       none]		type = 6
[51711.619697][ctx       none]		flags = 2
[51711.619698][ctx       none]		value.type = 1
[51711.619698][ctx       none]		value.value.i = 0x40000000
[51711.619698][ctx       none]	attrib_list[2] =
[51711.619698][ctx       none]		type = 1
[51711.619698][ctx       none]		flags = 2
[51711.619699][ctx       none]		value.type = 1
[51711.619699][ctx       none]		value.value.i = 0x52474241
[51711.619699][ctx       none]	attrib_list[3] =
[51711.619699][ctx       none]		type = 7
[51711.619700][ctx       none]		flags = 2
[51711.619700][ctx       none]		value.type = 3
[51711.619700][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51711.619700][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51711.619701][ctx       none]		  pixel_format=0x52474241
[51711.619701][ctx       none]		  width=1280
[51711.619701][ctx       none]		  height=800
[51711.619701][ctx       none]		  num_objects=0x00000001
[51711.619701][ctx       none]			objects[0].fd=71
[51711.619702][ctx       none]			objects[0].size=4194304
[51711.619702][ctx       none]			objects[0].drm_format_modifier=0
[51711.619702][ctx       none]		  num_layers=1
[51711.619703][ctx       none]			layers[0].drm_format=0x34324241
[51711.619703][ctx       none]			layers[0].num_planes=0x1
[51711.619703][ctx       none]				layers[0].object_index[0]=0x0
[51711.619704][ctx       none]				layers[0].offset[0]=0x0
[51711.619704][ctx       none]				layers[0].pitch[0]=0x5120
[51711.619704][ctx       none]				layers[0].object_index[1]=0x0
[51711.619704][ctx       none]				layers[0].offset[1]=0x0
[51711.619705][ctx       none]				layers[0].pitch[1]=0x0
[51711.619705][ctx       none]				layers[0].object_index[2]=0x0
[51711.619705][ctx       none]				layers[0].offset[2]=0x0
[51711.619706][ctx       none]				layers[0].pitch[2]=0x0
[51711.619706][ctx       none]				layers[0].object_index[3]=0x0
[51711.619706][ctx       none]				layers[0].offset[3]=0x0
[51711.619706][ctx       none]				layers[0].pitch[3]=0x0
[51711.619716][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51711.619741][ctx       none]==========va_TraceSyncSurface
[51711.619741][ctx       none]	render_target = 0x00000005
[51711.619744][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51711.619745][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.619745][ctx       none]	render_target = 0x00000005
[51711.619745][ctx       none]	status = 0x00000004
[51711.619747][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.619749][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.619752][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844746][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844748][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844805][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.844805][ctx       none]	render_target = 0x00000005
[51711.844805][ctx       none]	status = 0x00000004
[51711.844809][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844812][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.844812][ctx       none]	render_target = 0x00000003
[51711.844812][ctx       none]	status = 0x00000004
[51711.844814][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844815][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844817][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844818][ctx 0x40000000]==========va_TraceBeginPicture
[51711.844818][ctx 0x40000000]	context = 0x40000000
[51711.844818][ctx 0x40000000]	render_targets = 0x00000003
[51711.844818][ctx 0x40000000]	frame_count  = #16
[51711.844821][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844822][ctx 0x40000000]==========va_TraceRenderPicture
[51711.844822][ctx 0x40000000]	context = 0x40000000
[51711.844822][ctx 0x40000000]	num_buffers = 1
[51711.844823][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844823][ctx 0x40000000]	---------------------------
[51711.844823][ctx 0x40000000]	buffers[0] = 0x00000016
[51711.844824][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51711.844824][ctx 0x40000000]	  size = 224
[51711.844824][ctx 0x40000000]	  num_elements = 1
[51711.844825][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844825][ctx 0x40000000]	element[0] =
[51711.844826][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51711.844826][ctx 0x40000000]	  surface = 0x00000005
[51711.844827][ctx 0x40000000]	  surface_region
[51711.844827][ctx 0x40000000]	    x = 0
[51711.844827][ctx 0x40000000]	    y = 0
[51711.844828][ctx 0x40000000]	    width = 1280
[51711.844828][ctx 0x40000000]	    height = 800
[51711.844828][ctx 0x40000000]	  surface_color_standard = 8
[51711.844828][ctx 0x40000000]	  output_region
[51711.844829][ctx 0x40000000]	    x = 0
[51711.844829][ctx 0x40000000]	    y = 0
[51711.844829][ctx 0x40000000]	    width = 1280
[51711.844830][ctx 0x40000000]	    height = 800
[51711.844830][ctx 0x40000000]	  output_background_color = 0xff000000
[51711.844830][ctx 0x40000000]	  output_color_standard = 2
[51711.844830][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51711.844831][ctx 0x40000000]	  filter_flags = 0x00000000
[51711.844831][ctx 0x40000000]	  num_filters = 0
[51711.844832][ctx 0x40000000]	  filters = (nil)
[51711.844832][ctx 0x40000000]	  num_forward_references = 0x00000000
[51711.844832][ctx 0x40000000]	  num_backward_references = 0x00000000
[51711.844838][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844841][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844842][ctx 0x40000000]==========va_TraceEndPicture
[51711.844842][ctx 0x40000000]	context = 0x40000000
[51711.844843][ctx 0x40000000]	render_targets = 0x00000003
[51711.844982][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51711.844983][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51711.860780][ctx       none]==========va_TraceCreateSurfaces
[51711.860781][ctx       none]	width = 1280
[51711.860781][ctx       none]	height = 800
[51711.860781][ctx       none]	format = 131072
[51711.860782][ctx       none]	num_surfaces = 1
[51711.860782][ctx       none]		surfaces[0] = 0x00000000
[51711.860782][ctx       none]	attrib_list[0] =
[51711.860783][ctx       none]		type = 8
[51711.860783][ctx       none]		flags = 2
[51711.860783][ctx       none]		value.type = 1
[51711.860783][ctx       none]		value.value.i = 0x0000000c
[51711.860784][ctx       none]	attrib_list[1] =
[51711.860784][ctx       none]		type = 6
[51711.860784][ctx       none]		flags = 2
[51711.860784][ctx       none]		value.type = 1
[51711.860785][ctx       none]		value.value.i = 0x40000000
[51711.860785][ctx       none]	attrib_list[2] =
[51711.860785][ctx       none]		type = 1
[51711.860785][ctx       none]		flags = 2
[51711.860785][ctx       none]		value.type = 1
[51711.860786][ctx       none]		value.value.i = 0x52474241
[51711.860786][ctx       none]	attrib_list[3] =
[51711.860786][ctx       none]		type = 7
[51711.860786][ctx       none]		flags = 2
[51711.860787][ctx       none]		value.type = 3
[51711.860787][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51711.860787][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51711.860787][ctx       none]		  pixel_format=0x52474241
[51711.860788][ctx       none]		  width=1280
[51711.860788][ctx       none]		  height=800
[51711.860788][ctx       none]		  num_objects=0x00000001
[51711.860788][ctx       none]			objects[0].fd=71
[51711.860789][ctx       none]			objects[0].size=4194304
[51711.860789][ctx       none]			objects[0].drm_format_modifier=0
[51711.860789][ctx       none]		  num_layers=1
[51711.860789][ctx       none]			layers[0].drm_format=0x34324241
[51711.860790][ctx       none]			layers[0].num_planes=0x1
[51711.860790][ctx       none]				layers[0].object_index[0]=0x0
[51711.860790][ctx       none]				layers[0].offset[0]=0x0
[51711.860791][ctx       none]				layers[0].pitch[0]=0x5120
[51711.860791][ctx       none]				layers[0].object_index[1]=0x0
[51711.860791][ctx       none]				layers[0].offset[1]=0x0
[51711.860792][ctx       none]				layers[0].pitch[1]=0x0
[51711.860792][ctx       none]				layers[0].object_index[2]=0x0
[51711.860792][ctx       none]				layers[0].offset[2]=0x0
[51711.860792][ctx       none]				layers[0].pitch[2]=0x0
[51711.860793][ctx       none]				layers[0].object_index[3]=0x0
[51711.860793][ctx       none]				layers[0].offset[3]=0x0
[51711.860793][ctx       none]				layers[0].pitch[3]=0x0
[51711.860799][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51711.860828][ctx       none]==========va_TraceSyncSurface
[51711.860828][ctx       none]	render_target = 0x00000005
[51711.860830][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51711.860832][ctx       none]==========va_TraceQuerySurfaceStatus
[51711.860832][ctx       none]	render_target = 0x00000005
[51711.860832][ctx       none]	status = 0x00000004
[51711.860834][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51711.860836][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51711.860838][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085890][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085891][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085919][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.085919][ctx       none]	render_target = 0x00000005
[51712.085919][ctx       none]	status = 0x00000004
[51712.085928][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085931][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.085931][ctx       none]	render_target = 0x00000004
[51712.085931][ctx       none]	status = 0x00000004
[51712.085933][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085934][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085936][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085937][ctx 0x40000000]==========va_TraceBeginPicture
[51712.085937][ctx 0x40000000]	context = 0x40000000
[51712.085937][ctx 0x40000000]	render_targets = 0x00000004
[51712.085937][ctx 0x40000000]	frame_count  = #17
[51712.085940][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085941][ctx 0x40000000]==========va_TraceRenderPicture
[51712.085941][ctx 0x40000000]	context = 0x40000000
[51712.085942][ctx 0x40000000]	num_buffers = 1
[51712.085942][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085942][ctx 0x40000000]	---------------------------
[51712.085943][ctx 0x40000000]	buffers[0] = 0x00000016
[51712.085943][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51712.085943][ctx 0x40000000]	  size = 224
[51712.085944][ctx 0x40000000]	  num_elements = 1
[51712.085944][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085945][ctx 0x40000000]	element[0] =
[51712.085945][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51712.085946][ctx 0x40000000]	  surface = 0x00000005
[51712.085946][ctx 0x40000000]	  surface_region
[51712.085946][ctx 0x40000000]	    x = 0
[51712.085947][ctx 0x40000000]	    y = 0
[51712.085947][ctx 0x40000000]	    width = 1280
[51712.085947][ctx 0x40000000]	    height = 800
[51712.085947][ctx 0x40000000]	  surface_color_standard = 8
[51712.085948][ctx 0x40000000]	  output_region
[51712.085948][ctx 0x40000000]	    x = 0
[51712.085948][ctx 0x40000000]	    y = 0
[51712.085949][ctx 0x40000000]	    width = 1280
[51712.085949][ctx 0x40000000]	    height = 800
[51712.085949][ctx 0x40000000]	  output_background_color = 0xff000000
[51712.085949][ctx 0x40000000]	  output_color_standard = 2
[51712.085950][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51712.085950][ctx 0x40000000]	  filter_flags = 0x00000000
[51712.085951][ctx 0x40000000]	  num_filters = 0
[51712.085951][ctx 0x40000000]	  filters = (nil)
[51712.085951][ctx 0x40000000]	  num_forward_references = 0x00000000
[51712.085952][ctx 0x40000000]	  num_backward_references = 0x00000000
[51712.085954][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085957][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.085957][ctx 0x40000000]==========va_TraceEndPicture
[51712.085958][ctx 0x40000000]	context = 0x40000000
[51712.085958][ctx 0x40000000]	render_targets = 0x00000004
[51712.086097][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.086098][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.101785][ctx       none]==========va_TraceCreateSurfaces
[51712.101785][ctx       none]	width = 1280
[51712.101786][ctx       none]	height = 800
[51712.101786][ctx       none]	format = 131072
[51712.101786][ctx       none]	num_surfaces = 1
[51712.101786][ctx       none]		surfaces[0] = 0x00000000
[51712.101787][ctx       none]	attrib_list[0] =
[51712.101787][ctx       none]		type = 8
[51712.101787][ctx       none]		flags = 2
[51712.101788][ctx       none]		value.type = 1
[51712.101788][ctx       none]		value.value.i = 0x0000000c
[51712.101788][ctx       none]	attrib_list[1] =
[51712.101788][ctx       none]		type = 6
[51712.101789][ctx       none]		flags = 2
[51712.101789][ctx       none]		value.type = 1
[51712.101789][ctx       none]		value.value.i = 0x40000000
[51712.101789][ctx       none]	attrib_list[2] =
[51712.101789][ctx       none]		type = 1
[51712.101790][ctx       none]		flags = 2
[51712.101790][ctx       none]		value.type = 1
[51712.101790][ctx       none]		value.value.i = 0x52474241
[51712.101790][ctx       none]	attrib_list[3] =
[51712.101791][ctx       none]		type = 7
[51712.101791][ctx       none]		flags = 2
[51712.101791][ctx       none]		value.type = 3
[51712.101791][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51712.101792][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51712.101792][ctx       none]		  pixel_format=0x52474241
[51712.101792][ctx       none]		  width=1280
[51712.101792][ctx       none]		  height=800
[51712.101793][ctx       none]		  num_objects=0x00000001
[51712.101793][ctx       none]			objects[0].fd=71
[51712.101793][ctx       none]			objects[0].size=4194304
[51712.101793][ctx       none]			objects[0].drm_format_modifier=0
[51712.101794][ctx       none]		  num_layers=1
[51712.101794][ctx       none]			layers[0].drm_format=0x34324241
[51712.101794][ctx       none]			layers[0].num_planes=0x1
[51712.101795][ctx       none]				layers[0].object_index[0]=0x0
[51712.101795][ctx       none]				layers[0].offset[0]=0x0
[51712.101795][ctx       none]				layers[0].pitch[0]=0x5120
[51712.101796][ctx       none]				layers[0].object_index[1]=0x0
[51712.101796][ctx       none]				layers[0].offset[1]=0x0
[51712.101796][ctx       none]				layers[0].pitch[1]=0x0
[51712.101796][ctx       none]				layers[0].object_index[2]=0x0
[51712.101797][ctx       none]				layers[0].offset[2]=0x0
[51712.101797][ctx       none]				layers[0].pitch[2]=0x0
[51712.101797][ctx       none]				layers[0].object_index[3]=0x0
[51712.101798][ctx       none]				layers[0].offset[3]=0x0
[51712.101798][ctx       none]				layers[0].pitch[3]=0x0
[51712.101808][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51712.101834][ctx       none]==========va_TraceSyncSurface
[51712.101834][ctx       none]	render_target = 0x00000005
[51712.101836][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51712.101838][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.101838][ctx       none]	render_target = 0x00000005
[51712.101838][ctx       none]	status = 0x00000004
[51712.101840][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.101842][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.101844][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326879][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326880][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326907][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.326907][ctx       none]	render_target = 0x00000005
[51712.326908][ctx       none]	status = 0x00000004
[51712.326911][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326913][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.326914][ctx       none]	render_target = 0x00000003
[51712.326914][ctx       none]	status = 0x00000004
[51712.326916][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326917][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326919][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326919][ctx 0x40000000]==========va_TraceBeginPicture
[51712.326920][ctx 0x40000000]	context = 0x40000000
[51712.326920][ctx 0x40000000]	render_targets = 0x00000003
[51712.326920][ctx 0x40000000]	frame_count  = #18
[51712.326926][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326927][ctx 0x40000000]==========va_TraceRenderPicture
[51712.326927][ctx 0x40000000]	context = 0x40000000
[51712.326928][ctx 0x40000000]	num_buffers = 1
[51712.326928][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326928][ctx 0x40000000]	---------------------------
[51712.326929][ctx 0x40000000]	buffers[0] = 0x00000016
[51712.326929][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51712.326929][ctx 0x40000000]	  size = 224
[51712.326930][ctx 0x40000000]	  num_elements = 1
[51712.326930][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326931][ctx 0x40000000]	element[0] =
[51712.326931][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51712.326932][ctx 0x40000000]	  surface = 0x00000005
[51712.326932][ctx 0x40000000]	  surface_region
[51712.326932][ctx 0x40000000]	    x = 0
[51712.326933][ctx 0x40000000]	    y = 0
[51712.326933][ctx 0x40000000]	    width = 1280
[51712.326933][ctx 0x40000000]	    height = 800
[51712.326933][ctx 0x40000000]	  surface_color_standard = 8
[51712.326934][ctx 0x40000000]	  output_region
[51712.326934][ctx 0x40000000]	    x = 0
[51712.326934][ctx 0x40000000]	    y = 0
[51712.326934][ctx 0x40000000]	    width = 1280
[51712.326935][ctx 0x40000000]	    height = 800
[51712.326935][ctx 0x40000000]	  output_background_color = 0xff000000
[51712.326935][ctx 0x40000000]	  output_color_standard = 2
[51712.326936][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51712.326936][ctx 0x40000000]	  filter_flags = 0x00000000
[51712.326936][ctx 0x40000000]	  num_filters = 0
[51712.326937][ctx 0x40000000]	  filters = (nil)
[51712.326937][ctx 0x40000000]	  num_forward_references = 0x00000000
[51712.326937][ctx 0x40000000]	  num_backward_references = 0x00000000
[51712.326939][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326943][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.326943][ctx 0x40000000]==========va_TraceEndPicture
[51712.326944][ctx 0x40000000]	context = 0x40000000
[51712.326944][ctx 0x40000000]	render_targets = 0x00000003
[51712.327084][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.327085][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.342983][ctx       none]==========va_TraceCreateSurfaces
[51712.342984][ctx       none]	width = 1280
[51712.342984][ctx       none]	height = 800
[51712.342984][ctx       none]	format = 131072
[51712.342985][ctx       none]	num_surfaces = 1
[51712.342985][ctx       none]		surfaces[0] = 0x00000000
[51712.342985][ctx       none]	attrib_list[0] =
[51712.342985][ctx       none]		type = 8
[51712.342986][ctx       none]		flags = 2
[51712.342986][ctx       none]		value.type = 1
[51712.342986][ctx       none]		value.value.i = 0x0000000c
[51712.342986][ctx       none]	attrib_list[1] =
[51712.342987][ctx       none]		type = 6
[51712.342987][ctx       none]		flags = 2
[51712.342987][ctx       none]		value.type = 1
[51712.342987][ctx       none]		value.value.i = 0x40000000
[51712.342988][ctx       none]	attrib_list[2] =
[51712.342988][ctx       none]		type = 1
[51712.342988][ctx       none]		flags = 2
[51712.342988][ctx       none]		value.type = 1
[51712.342988][ctx       none]		value.value.i = 0x52474241
[51712.342989][ctx       none]	attrib_list[3] =
[51712.342989][ctx       none]		type = 7
[51712.342989][ctx       none]		flags = 2
[51712.342989][ctx       none]		value.type = 3
[51712.342990][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51712.342990][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51712.342990][ctx       none]		  pixel_format=0x52474241
[51712.342990][ctx       none]		  width=1280
[51712.342991][ctx       none]		  height=800
[51712.342991][ctx       none]		  num_objects=0x00000001
[51712.342991][ctx       none]			objects[0].fd=71
[51712.342991][ctx       none]			objects[0].size=4194304
[51712.342992][ctx       none]			objects[0].drm_format_modifier=0
[51712.342992][ctx       none]		  num_layers=1
[51712.342992][ctx       none]			layers[0].drm_format=0x34324241
[51712.342993][ctx       none]			layers[0].num_planes=0x1
[51712.342993][ctx       none]				layers[0].object_index[0]=0x0
[51712.342993][ctx       none]				layers[0].offset[0]=0x0
[51712.342994][ctx       none]				layers[0].pitch[0]=0x5120
[51712.342994][ctx       none]				layers[0].object_index[1]=0x0
[51712.342994][ctx       none]				layers[0].offset[1]=0x0
[51712.342994][ctx       none]				layers[0].pitch[1]=0x0
[51712.342995][ctx       none]				layers[0].object_index[2]=0x0
[51712.342995][ctx       none]				layers[0].offset[2]=0x0
[51712.342995][ctx       none]				layers[0].pitch[2]=0x0
[51712.342996][ctx       none]				layers[0].object_index[3]=0x0
[51712.342996][ctx       none]				layers[0].offset[3]=0x0
[51712.342996][ctx       none]				layers[0].pitch[3]=0x0
[51712.343006][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51712.343031][ctx       none]==========va_TraceSyncSurface
[51712.343032][ctx       none]	render_target = 0x00000005
[51712.343034][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51712.343035][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.343036][ctx       none]	render_target = 0x00000005
[51712.343036][ctx       none]	status = 0x00000004
[51712.343038][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.343040][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.343042][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568044][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568046][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568071][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.568072][ctx       none]	render_target = 0x00000005
[51712.568072][ctx       none]	status = 0x00000004
[51712.568076][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568079][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.568079][ctx       none]	render_target = 0x00000004
[51712.568079][ctx       none]	status = 0x00000004
[51712.568081][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568082][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568083][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568084][ctx 0x40000000]==========va_TraceBeginPicture
[51712.568085][ctx 0x40000000]	context = 0x40000000
[51712.568085][ctx 0x40000000]	render_targets = 0x00000004
[51712.568085][ctx 0x40000000]	frame_count  = #19
[51712.568088][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568089][ctx 0x40000000]==========va_TraceRenderPicture
[51712.568089][ctx 0x40000000]	context = 0x40000000
[51712.568089][ctx 0x40000000]	num_buffers = 1
[51712.568090][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568090][ctx 0x40000000]	---------------------------
[51712.568090][ctx 0x40000000]	buffers[0] = 0x00000016
[51712.568091][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51712.568091][ctx 0x40000000]	  size = 224
[51712.568091][ctx 0x40000000]	  num_elements = 1
[51712.568092][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568092][ctx 0x40000000]	element[0] =
[51712.568093][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51712.568093][ctx 0x40000000]	  surface = 0x00000005
[51712.568094][ctx 0x40000000]	  surface_region
[51712.568094][ctx 0x40000000]	    x = 0
[51712.568094][ctx 0x40000000]	    y = 0
[51712.568094][ctx 0x40000000]	    width = 1280
[51712.568095][ctx 0x40000000]	    height = 800
[51712.568095][ctx 0x40000000]	  surface_color_standard = 8
[51712.568095][ctx 0x40000000]	  output_region
[51712.568095][ctx 0x40000000]	    x = 0
[51712.568096][ctx 0x40000000]	    y = 0
[51712.568096][ctx 0x40000000]	    width = 1280
[51712.568096][ctx 0x40000000]	    height = 800
[51712.568097][ctx 0x40000000]	  output_background_color = 0xff000000
[51712.568097][ctx 0x40000000]	  output_color_standard = 2
[51712.568097][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51712.568098][ctx 0x40000000]	  filter_flags = 0x00000000
[51712.568098][ctx 0x40000000]	  num_filters = 0
[51712.568098][ctx 0x40000000]	  filters = (nil)
[51712.568099][ctx 0x40000000]	  num_forward_references = 0x00000000
[51712.568099][ctx 0x40000000]	  num_backward_references = 0x00000000
[51712.568104][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568108][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568108][ctx 0x40000000]==========va_TraceEndPicture
[51712.568109][ctx 0x40000000]	context = 0x40000000
[51712.568109][ctx 0x40000000]	render_targets = 0x00000004
[51712.568255][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.568256][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.583856][ctx       none]==========va_TraceCreateSurfaces
[51712.583857][ctx       none]	width = 1280
[51712.583857][ctx       none]	height = 800
[51712.583858][ctx       none]	format = 131072
[51712.583858][ctx       none]	num_surfaces = 1
[51712.583858][ctx       none]		surfaces[0] = 0x00000000
[51712.583859][ctx       none]	attrib_list[0] =
[51712.583859][ctx       none]		type = 8
[51712.583859][ctx       none]		flags = 2
[51712.583859][ctx       none]		value.type = 1
[51712.583860][ctx       none]		value.value.i = 0x0000000c
[51712.583860][ctx       none]	attrib_list[1] =
[51712.583860][ctx       none]		type = 6
[51712.583860][ctx       none]		flags = 2
[51712.583860][ctx       none]		value.type = 1
[51712.583861][ctx       none]		value.value.i = 0x40000000
[51712.583861][ctx       none]	attrib_list[2] =
[51712.583861][ctx       none]		type = 1
[51712.583861][ctx       none]		flags = 2
[51712.583862][ctx       none]		value.type = 1
[51712.583862][ctx       none]		value.value.i = 0x52474241
[51712.583862][ctx       none]	attrib_list[3] =
[51712.583862][ctx       none]		type = 7
[51712.583863][ctx       none]		flags = 2
[51712.583863][ctx       none]		value.type = 3
[51712.583863][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51712.583863][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51712.583863][ctx       none]		  pixel_format=0x52474241
[51712.583864][ctx       none]		  width=1280
[51712.583864][ctx       none]		  height=800
[51712.583864][ctx       none]		  num_objects=0x00000001
[51712.583864][ctx       none]			objects[0].fd=71
[51712.583865][ctx       none]			objects[0].size=4194304
[51712.583865][ctx       none]			objects[0].drm_format_modifier=0
[51712.583865][ctx       none]		  num_layers=1
[51712.583866][ctx       none]			layers[0].drm_format=0x34324241
[51712.583866][ctx       none]			layers[0].num_planes=0x1
[51712.583866][ctx       none]				layers[0].object_index[0]=0x0
[51712.583867][ctx       none]				layers[0].offset[0]=0x0
[51712.583867][ctx       none]				layers[0].pitch[0]=0x5120
[51712.583867][ctx       none]				layers[0].object_index[1]=0x0
[51712.583867][ctx       none]				layers[0].offset[1]=0x0
[51712.583868][ctx       none]				layers[0].pitch[1]=0x0
[51712.583868][ctx       none]				layers[0].object_index[2]=0x0
[51712.583868][ctx       none]				layers[0].offset[2]=0x0
[51712.583869][ctx       none]				layers[0].pitch[2]=0x0
[51712.583869][ctx       none]				layers[0].object_index[3]=0x0
[51712.583869][ctx       none]				layers[0].offset[3]=0x0
[51712.583869][ctx       none]				layers[0].pitch[3]=0x0
[51712.583875][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51712.583900][ctx       none]==========va_TraceSyncSurface
[51712.583901][ctx       none]	render_target = 0x00000005
[51712.583907][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51712.583909][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.583909][ctx       none]	render_target = 0x00000005
[51712.583909][ctx       none]	status = 0x00000004
[51712.583911][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.583913][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.583916][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808933][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808934][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808960][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.808960][ctx       none]	render_target = 0x00000005
[51712.808960][ctx       none]	status = 0x00000004
[51712.808964][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808966][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.808967][ctx       none]	render_target = 0x00000003
[51712.808967][ctx       none]	status = 0x00000004
[51712.808969][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808970][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808971][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808972][ctx 0x40000000]==========va_TraceBeginPicture
[51712.808972][ctx 0x40000000]	context = 0x40000000
[51712.808973][ctx 0x40000000]	render_targets = 0x00000003
[51712.808973][ctx 0x40000000]	frame_count  = #20
[51712.808976][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808977][ctx 0x40000000]==========va_TraceRenderPicture
[51712.808977][ctx 0x40000000]	context = 0x40000000
[51712.808977][ctx 0x40000000]	num_buffers = 1
[51712.808978][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808978][ctx 0x40000000]	---------------------------
[51712.808978][ctx 0x40000000]	buffers[0] = 0x00000016
[51712.808979][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51712.808979][ctx 0x40000000]	  size = 224
[51712.808979][ctx 0x40000000]	  num_elements = 1
[51712.808980][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808980][ctx 0x40000000]	element[0] =
[51712.808981][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51712.808981][ctx 0x40000000]	  surface = 0x00000005
[51712.808981][ctx 0x40000000]	  surface_region
[51712.808982][ctx 0x40000000]	    x = 0
[51712.808982][ctx 0x40000000]	    y = 0
[51712.808982][ctx 0x40000000]	    width = 1280
[51712.808983][ctx 0x40000000]	    height = 800
[51712.808983][ctx 0x40000000]	  surface_color_standard = 8
[51712.808983][ctx 0x40000000]	  output_region
[51712.808983][ctx 0x40000000]	    x = 0
[51712.808984][ctx 0x40000000]	    y = 0
[51712.808984][ctx 0x40000000]	    width = 1280
[51712.808984][ctx 0x40000000]	    height = 800
[51712.808984][ctx 0x40000000]	  output_background_color = 0xff000000
[51712.808985][ctx 0x40000000]	  output_color_standard = 2
[51712.808985][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51712.808985][ctx 0x40000000]	  filter_flags = 0x00000000
[51712.808986][ctx 0x40000000]	  num_filters = 0
[51712.808986][ctx 0x40000000]	  filters = (nil)
[51712.808987][ctx 0x40000000]	  num_forward_references = 0x00000000
[51712.808987][ctx 0x40000000]	  num_backward_references = 0x00000000
[51712.808989][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808992][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.808993][ctx 0x40000000]==========va_TraceEndPicture
[51712.808993][ctx 0x40000000]	context = 0x40000000
[51712.808993][ctx 0x40000000]	render_targets = 0x00000003
[51712.809135][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51712.809137][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51712.824675][ctx       none]==========va_TraceCreateSurfaces
[51712.824676][ctx       none]	width = 1280
[51712.824676][ctx       none]	height = 800
[51712.824677][ctx       none]	format = 131072
[51712.824677][ctx       none]	num_surfaces = 1
[51712.824677][ctx       none]		surfaces[0] = 0x00000000
[51712.824677][ctx       none]	attrib_list[0] =
[51712.824678][ctx       none]		type = 8
[51712.824678][ctx       none]		flags = 2
[51712.824678][ctx       none]		value.type = 1
[51712.824678][ctx       none]		value.value.i = 0x0000000c
[51712.824679][ctx       none]	attrib_list[1] =
[51712.824679][ctx       none]		type = 6
[51712.824679][ctx       none]		flags = 2
[51712.824679][ctx       none]		value.type = 1
[51712.824680][ctx       none]		value.value.i = 0x40000000
[51712.824680][ctx       none]	attrib_list[2] =
[51712.824680][ctx       none]		type = 1
[51712.824680][ctx       none]		flags = 2
[51712.824680][ctx       none]		value.type = 1
[51712.824681][ctx       none]		value.value.i = 0x52474241
[51712.824681][ctx       none]	attrib_list[3] =
[51712.824681][ctx       none]		type = 7
[51712.824681][ctx       none]		flags = 2
[51712.824682][ctx       none]		value.type = 3
[51712.824682][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51712.824682][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51712.824682][ctx       none]		  pixel_format=0x52474241
[51712.824683][ctx       none]		  width=1280
[51712.824683][ctx       none]		  height=800
[51712.824683][ctx       none]		  num_objects=0x00000001
[51712.824683][ctx       none]			objects[0].fd=71
[51712.824684][ctx       none]			objects[0].size=4194304
[51712.824684][ctx       none]			objects[0].drm_format_modifier=0
[51712.824684][ctx       none]		  num_layers=1
[51712.824685][ctx       none]			layers[0].drm_format=0x34324241
[51712.824685][ctx       none]			layers[0].num_planes=0x1
[51712.824685][ctx       none]				layers[0].object_index[0]=0x0
[51712.824685][ctx       none]				layers[0].offset[0]=0x0
[51712.824686][ctx       none]				layers[0].pitch[0]=0x5120
[51712.824686][ctx       none]				layers[0].object_index[1]=0x0
[51712.824686][ctx       none]				layers[0].offset[1]=0x0
[51712.824687][ctx       none]				layers[0].pitch[1]=0x0
[51712.824687][ctx       none]				layers[0].object_index[2]=0x0
[51712.824687][ctx       none]				layers[0].offset[2]=0x0
[51712.824687][ctx       none]				layers[0].pitch[2]=0x0
[51712.824688][ctx       none]				layers[0].object_index[3]=0x0
[51712.824688][ctx       none]				layers[0].offset[3]=0x0
[51712.824688][ctx       none]				layers[0].pitch[3]=0x0
[51712.824699][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51712.824724][ctx       none]==========va_TraceSyncSurface
[51712.824725][ctx       none]	render_target = 0x00000005
[51712.824727][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51712.824729][ctx       none]==========va_TraceQuerySurfaceStatus
[51712.824729][ctx       none]	render_target = 0x00000005
[51712.824729][ctx       none]	status = 0x00000004
[51712.824731][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51712.824733][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51712.824735][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049742][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049743][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049771][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.049772][ctx       none]	render_target = 0x00000005
[51713.049772][ctx       none]	status = 0x00000004
[51713.049775][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049778][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.049778][ctx       none]	render_target = 0x00000004
[51713.049778][ctx       none]	status = 0x00000004
[51713.049783][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049784][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049786][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049787][ctx 0x40000000]==========va_TraceBeginPicture
[51713.049787][ctx 0x40000000]	context = 0x40000000
[51713.049788][ctx 0x40000000]	render_targets = 0x00000004
[51713.049788][ctx 0x40000000]	frame_count  = #21
[51713.049791][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049791][ctx 0x40000000]==========va_TraceRenderPicture
[51713.049792][ctx 0x40000000]	context = 0x40000000
[51713.049792][ctx 0x40000000]	num_buffers = 1
[51713.049793][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049793][ctx 0x40000000]	---------------------------
[51713.049793][ctx 0x40000000]	buffers[0] = 0x00000016
[51713.049794][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51713.049794][ctx 0x40000000]	  size = 224
[51713.049794][ctx 0x40000000]	  num_elements = 1
[51713.049795][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049795][ctx 0x40000000]	element[0] =
[51713.049796][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51713.049796][ctx 0x40000000]	  surface = 0x00000005
[51713.049797][ctx 0x40000000]	  surface_region
[51713.049797][ctx 0x40000000]	    x = 0
[51713.049797][ctx 0x40000000]	    y = 0
[51713.049797][ctx 0x40000000]	    width = 1280
[51713.049798][ctx 0x40000000]	    height = 800
[51713.049798][ctx 0x40000000]	  surface_color_standard = 8
[51713.049798][ctx 0x40000000]	  output_region
[51713.049798][ctx 0x40000000]	    x = 0
[51713.049799][ctx 0x40000000]	    y = 0
[51713.049799][ctx 0x40000000]	    width = 1280
[51713.049799][ctx 0x40000000]	    height = 800
[51713.049800][ctx 0x40000000]	  output_background_color = 0xff000000
[51713.049800][ctx 0x40000000]	  output_color_standard = 2
[51713.049800][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51713.049801][ctx 0x40000000]	  filter_flags = 0x00000000
[51713.049801][ctx 0x40000000]	  num_filters = 0
[51713.049801][ctx 0x40000000]	  filters = (nil)
[51713.049802][ctx 0x40000000]	  num_forward_references = 0x00000000
[51713.049802][ctx 0x40000000]	  num_backward_references = 0x00000000
[51713.049804][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049807][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049808][ctx 0x40000000]==========va_TraceEndPicture
[51713.049808][ctx 0x40000000]	context = 0x40000000
[51713.049809][ctx 0x40000000]	render_targets = 0x00000004
[51713.049949][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.049950][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.065738][ctx       none]==========va_TraceCreateSurfaces
[51713.065738][ctx       none]	width = 1280
[51713.065739][ctx       none]	height = 800
[51713.065739][ctx       none]	format = 131072
[51713.065739][ctx       none]	num_surfaces = 1
[51713.065740][ctx       none]		surfaces[0] = 0x00000000
[51713.065740][ctx       none]	attrib_list[0] =
[51713.065740][ctx       none]		type = 8
[51713.065740][ctx       none]		flags = 2
[51713.065741][ctx       none]		value.type = 1
[51713.065741][ctx       none]		value.value.i = 0x0000000c
[51713.065741][ctx       none]	attrib_list[1] =
[51713.065741][ctx       none]		type = 6
[51713.065742][ctx       none]		flags = 2
[51713.065742][ctx       none]		value.type = 1
[51713.065742][ctx       none]		value.value.i = 0x40000000
[51713.065742][ctx       none]	attrib_list[2] =
[51713.065743][ctx       none]		type = 1
[51713.065743][ctx       none]		flags = 2
[51713.065743][ctx       none]		value.type = 1
[51713.065743][ctx       none]		value.value.i = 0x52474241
[51713.065744][ctx       none]	attrib_list[3] =
[51713.065744][ctx       none]		type = 7
[51713.065744][ctx       none]		flags = 2
[51713.065744][ctx       none]		value.type = 3
[51713.065745][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51713.065745][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51713.065745][ctx       none]		  pixel_format=0x52474241
[51713.065745][ctx       none]		  width=1280
[51713.065746][ctx       none]		  height=800
[51713.065746][ctx       none]		  num_objects=0x00000001
[51713.065746][ctx       none]			objects[0].fd=71
[51713.065746][ctx       none]			objects[0].size=4194304
[51713.065747][ctx       none]			objects[0].drm_format_modifier=0
[51713.065747][ctx       none]		  num_layers=1
[51713.065747][ctx       none]			layers[0].drm_format=0x34324241
[51713.065748][ctx       none]			layers[0].num_planes=0x1
[51713.065748][ctx       none]				layers[0].object_index[0]=0x0
[51713.065748][ctx       none]				layers[0].offset[0]=0x0
[51713.065749][ctx       none]				layers[0].pitch[0]=0x5120
[51713.065749][ctx       none]				layers[0].object_index[1]=0x0
[51713.065749][ctx       none]				layers[0].offset[1]=0x0
[51713.065749][ctx       none]				layers[0].pitch[1]=0x0
[51713.065750][ctx       none]				layers[0].object_index[2]=0x0
[51713.065750][ctx       none]				layers[0].offset[2]=0x0
[51713.065750][ctx       none]				layers[0].pitch[2]=0x0
[51713.065751][ctx       none]				layers[0].object_index[3]=0x0
[51713.065751][ctx       none]				layers[0].offset[3]=0x0
[51713.065751][ctx       none]				layers[0].pitch[3]=0x0
[51713.065762][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51713.065787][ctx       none]==========va_TraceSyncSurface
[51713.065788][ctx       none]	render_target = 0x00000005
[51713.065790][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51713.065791][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.065792][ctx       none]	render_target = 0x00000005
[51713.065792][ctx       none]	status = 0x00000004
[51713.065793][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.065796][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.065798][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290805][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290806][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290833][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.290833][ctx       none]	render_target = 0x00000005
[51713.290833][ctx       none]	status = 0x00000004
[51713.290837][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290839][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.290839][ctx       none]	render_target = 0x00000003
[51713.290840][ctx       none]	status = 0x00000004
[51713.290841][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290842][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290844][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290845][ctx 0x40000000]==========va_TraceBeginPicture
[51713.290845][ctx 0x40000000]	context = 0x40000000
[51713.290846][ctx 0x40000000]	render_targets = 0x00000003
[51713.290846][ctx 0x40000000]	frame_count  = #22
[51713.290849][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290849][ctx 0x40000000]==========va_TraceRenderPicture
[51713.290850][ctx 0x40000000]	context = 0x40000000
[51713.290850][ctx 0x40000000]	num_buffers = 1
[51713.290850][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290851][ctx 0x40000000]	---------------------------
[51713.290851][ctx 0x40000000]	buffers[0] = 0x00000016
[51713.290851][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51713.290852][ctx 0x40000000]	  size = 224
[51713.290852][ctx 0x40000000]	  num_elements = 1
[51713.290852][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290853][ctx 0x40000000]	element[0] =
[51713.290853][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51713.290854][ctx 0x40000000]	  surface = 0x00000005
[51713.290854][ctx 0x40000000]	  surface_region
[51713.290854][ctx 0x40000000]	    x = 0
[51713.290855][ctx 0x40000000]	    y = 0
[51713.290855][ctx 0x40000000]	    width = 1280
[51713.290855][ctx 0x40000000]	    height = 800
[51713.290855][ctx 0x40000000]	  surface_color_standard = 8
[51713.290856][ctx 0x40000000]	  output_region
[51713.290856][ctx 0x40000000]	    x = 0
[51713.290856][ctx 0x40000000]	    y = 0
[51713.290856][ctx 0x40000000]	    width = 1280
[51713.290857][ctx 0x40000000]	    height = 800
[51713.290857][ctx 0x40000000]	  output_background_color = 0xff000000
[51713.290857][ctx 0x40000000]	  output_color_standard = 2
[51713.290858][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51713.290858][ctx 0x40000000]	  filter_flags = 0x00000000
[51713.290858][ctx 0x40000000]	  num_filters = 0
[51713.290859][ctx 0x40000000]	  filters = (nil)
[51713.290859][ctx 0x40000000]	  num_forward_references = 0x00000000
[51713.290859][ctx 0x40000000]	  num_backward_references = 0x00000000
[51713.290865][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290869][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.290869][ctx 0x40000000]==========va_TraceEndPicture
[51713.290869][ctx 0x40000000]	context = 0x40000000
[51713.290870][ctx 0x40000000]	render_targets = 0x00000003
[51713.291006][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.291008][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.306792][ctx       none]==========va_TraceCreateSurfaces
[51713.306792][ctx       none]	width = 1280
[51713.306792][ctx       none]	height = 800
[51713.306793][ctx       none]	format = 131072
[51713.306793][ctx       none]	num_surfaces = 1
[51713.306793][ctx       none]		surfaces[0] = 0x00000000
[51713.306794][ctx       none]	attrib_list[0] =
[51713.306794][ctx       none]		type = 8
[51713.306794][ctx       none]		flags = 2
[51713.306794][ctx       none]		value.type = 1
[51713.306795][ctx       none]		value.value.i = 0x0000000c
[51713.306795][ctx       none]	attrib_list[1] =
[51713.306795][ctx       none]		type = 6
[51713.306795][ctx       none]		flags = 2
[51713.306796][ctx       none]		value.type = 1
[51713.306796][ctx       none]		value.value.i = 0x40000000
[51713.306796][ctx       none]	attrib_list[2] =
[51713.306796][ctx       none]		type = 1
[51713.306796][ctx       none]		flags = 2
[51713.306797][ctx       none]		value.type = 1
[51713.306797][ctx       none]		value.value.i = 0x52474241
[51713.306797][ctx       none]	attrib_list[3] =
[51713.306797][ctx       none]		type = 7
[51713.306798][ctx       none]		flags = 2
[51713.306798][ctx       none]		value.type = 3
[51713.306798][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51713.306798][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51713.306798][ctx       none]		  pixel_format=0x52474241
[51713.306799][ctx       none]		  width=1280
[51713.306799][ctx       none]		  height=800
[51713.306799][ctx       none]		  num_objects=0x00000001
[51713.306799][ctx       none]			objects[0].fd=71
[51713.306800][ctx       none]			objects[0].size=4194304
[51713.306800][ctx       none]			objects[0].drm_format_modifier=0
[51713.306800][ctx       none]		  num_layers=1
[51713.306801][ctx       none]			layers[0].drm_format=0x34324241
[51713.306801][ctx       none]			layers[0].num_planes=0x1
[51713.306801][ctx       none]				layers[0].object_index[0]=0x0
[51713.306802][ctx       none]				layers[0].offset[0]=0x0
[51713.306802][ctx       none]				layers[0].pitch[0]=0x5120
[51713.306802][ctx       none]				layers[0].object_index[1]=0x0
[51713.306802][ctx       none]				layers[0].offset[1]=0x0
[51713.306803][ctx       none]				layers[0].pitch[1]=0x0
[51713.306803][ctx       none]				layers[0].object_index[2]=0x0
[51713.306803][ctx       none]				layers[0].offset[2]=0x0
[51713.306804][ctx       none]				layers[0].pitch[2]=0x0
[51713.306804][ctx       none]				layers[0].object_index[3]=0x0
[51713.306804][ctx       none]				layers[0].offset[3]=0x0
[51713.306804][ctx       none]				layers[0].pitch[3]=0x0
[51713.306815][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51713.306840][ctx       none]==========va_TraceSyncSurface
[51713.306840][ctx       none]	render_target = 0x00000005
[51713.306842][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51713.306844][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.306844][ctx       none]	render_target = 0x00000005
[51713.306844][ctx       none]	status = 0x00000004
[51713.306846][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.306848][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.306850][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531860][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531861][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531888][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.531889][ctx       none]	render_target = 0x00000005
[51713.531889][ctx       none]	status = 0x00000004
[51713.531895][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531897][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.531897][ctx       none]	render_target = 0x00000004
[51713.531898][ctx       none]	status = 0x00000004
[51713.531899][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531900][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531902][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531903][ctx 0x40000000]==========va_TraceBeginPicture
[51713.531903][ctx 0x40000000]	context = 0x40000000
[51713.531903][ctx 0x40000000]	render_targets = 0x00000004
[51713.531904][ctx 0x40000000]	frame_count  = #23
[51713.531907][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531907][ctx 0x40000000]==========va_TraceRenderPicture
[51713.531908][ctx 0x40000000]	context = 0x40000000
[51713.531908][ctx 0x40000000]	num_buffers = 1
[51713.531908][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531909][ctx 0x40000000]	---------------------------
[51713.531909][ctx 0x40000000]	buffers[0] = 0x00000016
[51713.531909][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51713.531910][ctx 0x40000000]	  size = 224
[51713.531910][ctx 0x40000000]	  num_elements = 1
[51713.531911][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531911][ctx 0x40000000]	element[0] =
[51713.531912][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51713.531912][ctx 0x40000000]	  surface = 0x00000005
[51713.531912][ctx 0x40000000]	  surface_region
[51713.531913][ctx 0x40000000]	    x = 0
[51713.531913][ctx 0x40000000]	    y = 0
[51713.531913][ctx 0x40000000]	    width = 1280
[51713.531913][ctx 0x40000000]	    height = 800
[51713.531914][ctx 0x40000000]	  surface_color_standard = 8
[51713.531914][ctx 0x40000000]	  output_region
[51713.531914][ctx 0x40000000]	    x = 0
[51713.531914][ctx 0x40000000]	    y = 0
[51713.531915][ctx 0x40000000]	    width = 1280
[51713.531915][ctx 0x40000000]	    height = 800
[51713.531915][ctx 0x40000000]	  output_background_color = 0xff000000
[51713.531916][ctx 0x40000000]	  output_color_standard = 2
[51713.531916][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51713.531916][ctx 0x40000000]	  filter_flags = 0x00000000
[51713.531917][ctx 0x40000000]	  num_filters = 0
[51713.531917][ctx 0x40000000]	  filters = (nil)
[51713.531917][ctx 0x40000000]	  num_forward_references = 0x00000000
[51713.531918][ctx 0x40000000]	  num_backward_references = 0x00000000
[51713.531923][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531927][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.531927][ctx 0x40000000]==========va_TraceEndPicture
[51713.531928][ctx 0x40000000]	context = 0x40000000
[51713.531928][ctx 0x40000000]	render_targets = 0x00000004
[51713.532067][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.532068][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.547911][ctx       none]==========va_TraceCreateSurfaces
[51713.547912][ctx       none]	width = 1280
[51713.547912][ctx       none]	height = 800
[51713.547912][ctx       none]	format = 131072
[51713.547913][ctx       none]	num_surfaces = 1
[51713.547913][ctx       none]		surfaces[0] = 0x00000000
[51713.547913][ctx       none]	attrib_list[0] =
[51713.547913][ctx       none]		type = 8
[51713.547914][ctx       none]		flags = 2
[51713.547914][ctx       none]		value.type = 1
[51713.547914][ctx       none]		value.value.i = 0x0000000c
[51713.547914][ctx       none]	attrib_list[1] =
[51713.547915][ctx       none]		type = 6
[51713.547915][ctx       none]		flags = 2
[51713.547915][ctx       none]		value.type = 1
[51713.547915][ctx       none]		value.value.i = 0x40000000
[51713.547916][ctx       none]	attrib_list[2] =
[51713.547916][ctx       none]		type = 1
[51713.547916][ctx       none]		flags = 2
[51713.547916][ctx       none]		value.type = 1
[51713.547916][ctx       none]		value.value.i = 0x52474241
[51713.547917][ctx       none]	attrib_list[3] =
[51713.547917][ctx       none]		type = 7
[51713.547917][ctx       none]		flags = 2
[51713.547917][ctx       none]		value.type = 3
[51713.547918][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51713.547918][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51713.547918][ctx       none]		  pixel_format=0x52474241
[51713.547918][ctx       none]		  width=1280
[51713.547919][ctx       none]		  height=800
[51713.547919][ctx       none]		  num_objects=0x00000001
[51713.547919][ctx       none]			objects[0].fd=71
[51713.547919][ctx       none]			objects[0].size=4194304
[51713.547920][ctx       none]			objects[0].drm_format_modifier=0
[51713.547920][ctx       none]		  num_layers=1
[51713.547920][ctx       none]			layers[0].drm_format=0x34324241
[51713.547921][ctx       none]			layers[0].num_planes=0x1
[51713.547921][ctx       none]				layers[0].object_index[0]=0x0
[51713.547921][ctx       none]				layers[0].offset[0]=0x0
[51713.547921][ctx       none]				layers[0].pitch[0]=0x5120
[51713.547922][ctx       none]				layers[0].object_index[1]=0x0
[51713.547922][ctx       none]				layers[0].offset[1]=0x0
[51713.547922][ctx       none]				layers[0].pitch[1]=0x0
[51713.547923][ctx       none]				layers[0].object_index[2]=0x0
[51713.547923][ctx       none]				layers[0].offset[2]=0x0
[51713.547923][ctx       none]				layers[0].pitch[2]=0x0
[51713.547923][ctx       none]				layers[0].object_index[3]=0x0
[51713.547924][ctx       none]				layers[0].offset[3]=0x0
[51713.547924][ctx       none]				layers[0].pitch[3]=0x0
[51713.547930][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51713.547955][ctx       none]==========va_TraceSyncSurface
[51713.547956][ctx       none]	render_target = 0x00000005
[51713.547958][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51713.547959][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.547959][ctx       none]	render_target = 0x00000005
[51713.547960][ctx       none]	status = 0x00000004
[51713.547961][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.547963][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.547966][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773049][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773051][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773076][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.773077][ctx       none]	render_target = 0x00000005
[51713.773077][ctx       none]	status = 0x00000004
[51713.773089][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773092][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.773092][ctx       none]	render_target = 0x00000003
[51713.773092][ctx       none]	status = 0x00000004
[51713.773094][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773095][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773097][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773098][ctx 0x40000000]==========va_TraceBeginPicture
[51713.773098][ctx 0x40000000]	context = 0x40000000
[51713.773098][ctx 0x40000000]	render_targets = 0x00000003
[51713.773099][ctx 0x40000000]	frame_count  = #24
[51713.773102][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773102][ctx 0x40000000]==========va_TraceRenderPicture
[51713.773103][ctx 0x40000000]	context = 0x40000000
[51713.773103][ctx 0x40000000]	num_buffers = 1
[51713.773104][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773104][ctx 0x40000000]	---------------------------
[51713.773104][ctx 0x40000000]	buffers[0] = 0x00000016
[51713.773105][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51713.773105][ctx 0x40000000]	  size = 224
[51713.773105][ctx 0x40000000]	  num_elements = 1
[51713.773106][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773106][ctx 0x40000000]	element[0] =
[51713.773107][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51713.773107][ctx 0x40000000]	  surface = 0x00000005
[51713.773107][ctx 0x40000000]	  surface_region
[51713.773108][ctx 0x40000000]	    x = 0
[51713.773108][ctx 0x40000000]	    y = 0
[51713.773108][ctx 0x40000000]	    width = 1280
[51713.773109][ctx 0x40000000]	    height = 800
[51713.773109][ctx 0x40000000]	  surface_color_standard = 8
[51713.773109][ctx 0x40000000]	  output_region
[51713.773109][ctx 0x40000000]	    x = 0
[51713.773110][ctx 0x40000000]	    y = 0
[51713.773110][ctx 0x40000000]	    width = 1280
[51713.773110][ctx 0x40000000]	    height = 800
[51713.773111][ctx 0x40000000]	  output_background_color = 0xff000000
[51713.773111][ctx 0x40000000]	  output_color_standard = 2
[51713.773111][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51713.773111][ctx 0x40000000]	  filter_flags = 0x00000000
[51713.773112][ctx 0x40000000]	  num_filters = 0
[51713.773112][ctx 0x40000000]	  filters = (nil)
[51713.773113][ctx 0x40000000]	  num_forward_references = 0x00000000
[51713.773113][ctx 0x40000000]	  num_backward_references = 0x00000000
[51713.773115][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773118][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773119][ctx 0x40000000]==========va_TraceEndPicture
[51713.773119][ctx 0x40000000]	context = 0x40000000
[51713.773119][ctx 0x40000000]	render_targets = 0x00000003
[51713.773256][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51713.773258][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51713.788695][ctx       none]==========va_TraceCreateSurfaces
[51713.788695][ctx       none]	width = 1280
[51713.788696][ctx       none]	height = 800
[51713.788696][ctx       none]	format = 131072
[51713.788696][ctx       none]	num_surfaces = 1
[51713.788696][ctx       none]		surfaces[0] = 0x00000000
[51713.788697][ctx       none]	attrib_list[0] =
[51713.788697][ctx       none]		type = 8
[51713.788697][ctx       none]		flags = 2
[51713.788697][ctx       none]		value.type = 1
[51713.788698][ctx       none]		value.value.i = 0x0000000c
[51713.788698][ctx       none]	attrib_list[1] =
[51713.788698][ctx       none]		type = 6
[51713.788698][ctx       none]		flags = 2
[51713.788699][ctx       none]		value.type = 1
[51713.788699][ctx       none]		value.value.i = 0x40000000
[51713.788699][ctx       none]	attrib_list[2] =
[51713.788699][ctx       none]		type = 1
[51713.788700][ctx       none]		flags = 2
[51713.788700][ctx       none]		value.type = 1
[51713.788700][ctx       none]		value.value.i = 0x52474241
[51713.788700][ctx       none]	attrib_list[3] =
[51713.788701][ctx       none]		type = 7
[51713.788701][ctx       none]		flags = 2
[51713.788701][ctx       none]		value.type = 3
[51713.788701][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51713.788701][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51713.788702][ctx       none]		  pixel_format=0x52474241
[51713.788702][ctx       none]		  width=1280
[51713.788702][ctx       none]		  height=800
[51713.788702][ctx       none]		  num_objects=0x00000001
[51713.788703][ctx       none]			objects[0].fd=71
[51713.788703][ctx       none]			objects[0].size=4194304
[51713.788703][ctx       none]			objects[0].drm_format_modifier=0
[51713.788704][ctx       none]		  num_layers=1
[51713.788704][ctx       none]			layers[0].drm_format=0x34324241
[51713.788704][ctx       none]			layers[0].num_planes=0x1
[51713.788704][ctx       none]				layers[0].object_index[0]=0x0
[51713.788705][ctx       none]				layers[0].offset[0]=0x0
[51713.788705][ctx       none]				layers[0].pitch[0]=0x5120
[51713.788705][ctx       none]				layers[0].object_index[1]=0x0
[51713.788706][ctx       none]				layers[0].offset[1]=0x0
[51713.788706][ctx       none]				layers[0].pitch[1]=0x0
[51713.788706][ctx       none]				layers[0].object_index[2]=0x0
[51713.788706][ctx       none]				layers[0].offset[2]=0x0
[51713.788707][ctx       none]				layers[0].pitch[2]=0x0
[51713.788707][ctx       none]				layers[0].object_index[3]=0x0
[51713.788707][ctx       none]				layers[0].offset[3]=0x0
[51713.788708][ctx       none]				layers[0].pitch[3]=0x0
[51713.788718][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51713.788741][ctx       none]==========va_TraceSyncSurface
[51713.788742][ctx       none]	render_target = 0x00000005
[51713.788744][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51713.788745][ctx       none]==========va_TraceQuerySurfaceStatus
[51713.788746][ctx       none]	render_target = 0x00000005
[51713.788746][ctx       none]	status = 0x00000004
[51713.788748][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51713.788749][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51713.788752][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013903][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013904][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013924][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.013925][ctx       none]	render_target = 0x00000005
[51714.013925][ctx       none]	status = 0x00000004
[51714.013929][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013931][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.013931][ctx       none]	render_target = 0x00000004
[51714.013932][ctx       none]	status = 0x00000004
[51714.013933][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013934][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013936][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013937][ctx 0x40000000]==========va_TraceBeginPicture
[51714.013938][ctx 0x40000000]	context = 0x40000000
[51714.013938][ctx 0x40000000]	render_targets = 0x00000004
[51714.013938][ctx 0x40000000]	frame_count  = #25
[51714.013944][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013945][ctx 0x40000000]==========va_TraceRenderPicture
[51714.013945][ctx 0x40000000]	context = 0x40000000
[51714.013946][ctx 0x40000000]	num_buffers = 1
[51714.013946][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013947][ctx 0x40000000]	---------------------------
[51714.013947][ctx 0x40000000]	buffers[0] = 0x00000016
[51714.013947][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51714.013948][ctx 0x40000000]	  size = 224
[51714.013948][ctx 0x40000000]	  num_elements = 1
[51714.013948][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013949][ctx 0x40000000]	element[0] =
[51714.013950][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51714.013950][ctx 0x40000000]	  surface = 0x00000005
[51714.013950][ctx 0x40000000]	  surface_region
[51714.013950][ctx 0x40000000]	    x = 0
[51714.013951][ctx 0x40000000]	    y = 0
[51714.013951][ctx 0x40000000]	    width = 1280
[51714.013951][ctx 0x40000000]	    height = 800
[51714.013952][ctx 0x40000000]	  surface_color_standard = 8
[51714.013952][ctx 0x40000000]	  output_region
[51714.013952][ctx 0x40000000]	    x = 0
[51714.013952][ctx 0x40000000]	    y = 0
[51714.013953][ctx 0x40000000]	    width = 1280
[51714.013953][ctx 0x40000000]	    height = 800
[51714.013953][ctx 0x40000000]	  output_background_color = 0xff000000
[51714.013954][ctx 0x40000000]	  output_color_standard = 2
[51714.013954][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51714.013954][ctx 0x40000000]	  filter_flags = 0x00000000
[51714.013955][ctx 0x40000000]	  num_filters = 0
[51714.013955][ctx 0x40000000]	  filters = (nil)
[51714.013955][ctx 0x40000000]	  num_forward_references = 0x00000000
[51714.013956][ctx 0x40000000]	  num_backward_references = 0x00000000
[51714.013958][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013961][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.013962][ctx 0x40000000]==========va_TraceEndPicture
[51714.013962][ctx 0x40000000]	context = 0x40000000
[51714.013962][ctx 0x40000000]	render_targets = 0x00000004
[51714.014103][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.014104][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.029993][ctx       none]==========va_TraceCreateSurfaces
[51714.029993][ctx       none]	width = 1280
[51714.029993][ctx       none]	height = 800
[51714.029994][ctx       none]	format = 131072
[51714.029994][ctx       none]	num_surfaces = 1
[51714.029994][ctx       none]		surfaces[0] = 0x00000000
[51714.029995][ctx       none]	attrib_list[0] =
[51714.029995][ctx       none]		type = 8
[51714.029995][ctx       none]		flags = 2
[51714.029995][ctx       none]		value.type = 1
[51714.029996][ctx       none]		value.value.i = 0x0000000c
[51714.029996][ctx       none]	attrib_list[1] =
[51714.029996][ctx       none]		type = 6
[51714.029996][ctx       none]		flags = 2
[51714.029997][ctx       none]		value.type = 1
[51714.029997][ctx       none]		value.value.i = 0x40000000
[51714.029997][ctx       none]	attrib_list[2] =
[51714.029997][ctx       none]		type = 1
[51714.029998][ctx       none]		flags = 2
[51714.029998][ctx       none]		value.type = 1
[51714.029998][ctx       none]		value.value.i = 0x52474241
[51714.029998][ctx       none]	attrib_list[3] =
[51714.029999][ctx       none]		type = 7
[51714.029999][ctx       none]		flags = 2
[51714.029999][ctx       none]		value.type = 3
[51714.029999][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51714.029999][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51714.030000][ctx       none]		  pixel_format=0x52474241
[51714.030000][ctx       none]		  width=1280
[51714.030000][ctx       none]		  height=800
[51714.030001][ctx       none]		  num_objects=0x00000001
[51714.030001][ctx       none]			objects[0].fd=71
[51714.030001][ctx       none]			objects[0].size=4194304
[51714.030001][ctx       none]			objects[0].drm_format_modifier=0
[51714.030002][ctx       none]		  num_layers=1
[51714.030002][ctx       none]			layers[0].drm_format=0x34324241
[51714.030002][ctx       none]			layers[0].num_planes=0x1
[51714.030003][ctx       none]				layers[0].object_index[0]=0x0
[51714.030003][ctx       none]				layers[0].offset[0]=0x0
[51714.030003][ctx       none]				layers[0].pitch[0]=0x5120
[51714.030004][ctx       none]				layers[0].object_index[1]=0x0
[51714.030004][ctx       none]				layers[0].offset[1]=0x0
[51714.030004][ctx       none]				layers[0].pitch[1]=0x0
[51714.030004][ctx       none]				layers[0].object_index[2]=0x0
[51714.030005][ctx       none]				layers[0].offset[2]=0x0
[51714.030005][ctx       none]				layers[0].pitch[2]=0x0
[51714.030005][ctx       none]				layers[0].object_index[3]=0x0
[51714.030006][ctx       none]				layers[0].offset[3]=0x0
[51714.030006][ctx       none]				layers[0].pitch[3]=0x0
[51714.030016][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51714.030082][ctx       none]==========va_TraceSyncSurface
[51714.030082][ctx       none]	render_target = 0x00000005
[51714.030085][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51714.030086][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.030086][ctx       none]	render_target = 0x00000005
[51714.030087][ctx       none]	status = 0x00000004
[51714.030088][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.030090][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51714.030093][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255051][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255052][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255078][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.255079][ctx       none]	render_target = 0x00000005
[51714.255079][ctx       none]	status = 0x00000004
[51714.255084][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255086][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.255087][ctx       none]	render_target = 0x00000003
[51714.255087][ctx       none]	status = 0x00000004
[51714.255089][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255090][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255092][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255092][ctx 0x40000000]==========va_TraceBeginPicture
[51714.255093][ctx 0x40000000]	context = 0x40000000
[51714.255093][ctx 0x40000000]	render_targets = 0x00000003
[51714.255093][ctx 0x40000000]	frame_count  = #26
[51714.255096][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255097][ctx 0x40000000]==========va_TraceRenderPicture
[51714.255097][ctx 0x40000000]	context = 0x40000000
[51714.255097][ctx 0x40000000]	num_buffers = 1
[51714.255098][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255098][ctx 0x40000000]	---------------------------
[51714.255098][ctx 0x40000000]	buffers[0] = 0x00000016
[51714.255099][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51714.255099][ctx 0x40000000]	  size = 224
[51714.255099][ctx 0x40000000]	  num_elements = 1
[51714.255100][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255100][ctx 0x40000000]	element[0] =
[51714.255101][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51714.255101][ctx 0x40000000]	  surface = 0x00000005
[51714.255102][ctx 0x40000000]	  surface_region
[51714.255102][ctx 0x40000000]	    x = 0
[51714.255102][ctx 0x40000000]	    y = 0
[51714.255102][ctx 0x40000000]	    width = 1280
[51714.255103][ctx 0x40000000]	    height = 800
[51714.255103][ctx 0x40000000]	  surface_color_standard = 8
[51714.255103][ctx 0x40000000]	  output_region
[51714.255103][ctx 0x40000000]	    x = 0
[51714.255104][ctx 0x40000000]	    y = 0
[51714.255104][ctx 0x40000000]	    width = 1280
[51714.255104][ctx 0x40000000]	    height = 800
[51714.255105][ctx 0x40000000]	  output_background_color = 0xff000000
[51714.255105][ctx 0x40000000]	  output_color_standard = 2
[51714.255105][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51714.255105][ctx 0x40000000]	  filter_flags = 0x00000000
[51714.255106][ctx 0x40000000]	  num_filters = 0
[51714.255106][ctx 0x40000000]	  filters = (nil)
[51714.255107][ctx 0x40000000]	  num_forward_references = 0x00000000
[51714.255107][ctx 0x40000000]	  num_backward_references = 0x00000000
[51714.255113][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255116][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255117][ctx 0x40000000]==========va_TraceEndPicture
[51714.255117][ctx 0x40000000]	context = 0x40000000
[51714.255117][ctx 0x40000000]	render_targets = 0x00000003
[51714.255260][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.255262][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.271883][ctx       none]==========va_TraceCreateSurfaces
[51714.271884][ctx       none]	width = 1280
[51714.271884][ctx       none]	height = 800
[51714.271884][ctx       none]	format = 131072
[51714.271884][ctx       none]	num_surfaces = 1
[51714.271885][ctx       none]		surfaces[0] = 0x00000000
[51714.271885][ctx       none]	attrib_list[0] =
[51714.271885][ctx       none]		type = 8
[51714.271886][ctx       none]		flags = 2
[51714.271886][ctx       none]		value.type = 1
[51714.271886][ctx       none]		value.value.i = 0x0000000c
[51714.271886][ctx       none]	attrib_list[1] =
[51714.271887][ctx       none]		type = 6
[51714.271887][ctx       none]		flags = 2
[51714.271887][ctx       none]		value.type = 1
[51714.271887][ctx       none]		value.value.i = 0x40000000
[51714.271887][ctx       none]	attrib_list[2] =
[51714.271888][ctx       none]		type = 1
[51714.271888][ctx       none]		flags = 2
[51714.271888][ctx       none]		value.type = 1
[51714.271888][ctx       none]		value.value.i = 0x52474241
[51714.271889][ctx       none]	attrib_list[3] =
[51714.271889][ctx       none]		type = 7
[51714.271889][ctx       none]		flags = 2
[51714.271889][ctx       none]		value.type = 3
[51714.271889][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51714.271890][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51714.271890][ctx       none]		  pixel_format=0x52474241
[51714.271890][ctx       none]		  width=1280
[51714.271890][ctx       none]		  height=800
[51714.271891][ctx       none]		  num_objects=0x00000001
[51714.271891][ctx       none]			objects[0].fd=71
[51714.271891][ctx       none]			objects[0].size=4194304
[51714.271892][ctx       none]			objects[0].drm_format_modifier=0
[51714.271892][ctx       none]		  num_layers=1
[51714.271892][ctx       none]			layers[0].drm_format=0x34324241
[51714.271892][ctx       none]			layers[0].num_planes=0x1
[51714.271893][ctx       none]				layers[0].object_index[0]=0x0
[51714.271893][ctx       none]				layers[0].offset[0]=0x0
[51714.271893][ctx       none]				layers[0].pitch[0]=0x5120
[51714.271894][ctx       none]				layers[0].object_index[1]=0x0
[51714.271894][ctx       none]				layers[0].offset[1]=0x0
[51714.271894][ctx       none]				layers[0].pitch[1]=0x0
[51714.271894][ctx       none]				layers[0].object_index[2]=0x0
[51714.271895][ctx       none]				layers[0].offset[2]=0x0
[51714.271895][ctx       none]				layers[0].pitch[2]=0x0
[51714.271895][ctx       none]				layers[0].object_index[3]=0x0
[51714.271896][ctx       none]				layers[0].offset[3]=0x0
[51714.271896][ctx       none]				layers[0].pitch[3]=0x0
[51714.271906][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51714.272446][ctx       none]==========va_TraceSyncSurface
[51714.272446][ctx       none]	render_target = 0x00000005
[51714.272449][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51714.272450][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.272450][ctx       none]	render_target = 0x00000005
[51714.272451][ctx       none]	status = 0x00000004
[51714.272452][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.272454][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51714.272457][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497476][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497477][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497505][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.497505][ctx       none]	render_target = 0x00000005
[51714.497505][ctx       none]	status = 0x00000004
[51714.497509][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497511][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.497512][ctx       none]	render_target = 0x00000004
[51714.497512][ctx       none]	status = 0x00000004
[51714.497514][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497515][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497516][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497517][ctx 0x40000000]==========va_TraceBeginPicture
[51714.497517][ctx 0x40000000]	context = 0x40000000
[51714.497518][ctx 0x40000000]	render_targets = 0x00000004
[51714.497518][ctx 0x40000000]	frame_count  = #27
[51714.497521][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497521][ctx 0x40000000]==========va_TraceRenderPicture
[51714.497522][ctx 0x40000000]	context = 0x40000000
[51714.497522][ctx 0x40000000]	num_buffers = 1
[51714.497523][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497523][ctx 0x40000000]	---------------------------
[51714.497523][ctx 0x40000000]	buffers[0] = 0x00000016
[51714.497524][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51714.497524][ctx 0x40000000]	  size = 224
[51714.497524][ctx 0x40000000]	  num_elements = 1
[51714.497525][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497525][ctx 0x40000000]	element[0] =
[51714.497526][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51714.497526][ctx 0x40000000]	  surface = 0x00000005
[51714.497526][ctx 0x40000000]	  surface_region
[51714.497527][ctx 0x40000000]	    x = 0
[51714.497527][ctx 0x40000000]	    y = 0
[51714.497527][ctx 0x40000000]	    width = 1280
[51714.497527][ctx 0x40000000]	    height = 800
[51714.497528][ctx 0x40000000]	  surface_color_standard = 8
[51714.497528][ctx 0x40000000]	  output_region
[51714.497528][ctx 0x40000000]	    x = 0
[51714.497529][ctx 0x40000000]	    y = 0
[51714.497529][ctx 0x40000000]	    width = 1280
[51714.497529][ctx 0x40000000]	    height = 800
[51714.497529][ctx 0x40000000]	  output_background_color = 0xff000000
[51714.497530][ctx 0x40000000]	  output_color_standard = 2
[51714.497530][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51714.497530][ctx 0x40000000]	  filter_flags = 0x00000000
[51714.497531][ctx 0x40000000]	  num_filters = 0
[51714.497531][ctx 0x40000000]	  filters = (nil)
[51714.497531][ctx 0x40000000]	  num_forward_references = 0x00000000
[51714.497532][ctx 0x40000000]	  num_backward_references = 0x00000000
[51714.497534][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497537][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497538][ctx 0x40000000]==========va_TraceEndPicture
[51714.497538][ctx 0x40000000]	context = 0x40000000
[51714.497538][ctx 0x40000000]	render_targets = 0x00000004
[51714.497683][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.497685][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.634430][ctx       none]==========va_TraceCreateSurfaces
[51714.634431][ctx       none]	width = 1280
[51714.634431][ctx       none]	height = 800
[51714.634431][ctx       none]	format = 131072
[51714.634431][ctx       none]	num_surfaces = 1
[51714.634432][ctx       none]		surfaces[0] = 0x00000000
[51714.634432][ctx       none]	attrib_list[0] =
[51714.634432][ctx       none]		type = 8
[51714.634433][ctx       none]		flags = 2
[51714.634433][ctx       none]		value.type = 1
[51714.634433][ctx       none]		value.value.i = 0x0000000c
[51714.634433][ctx       none]	attrib_list[1] =
[51714.634434][ctx       none]		type = 6
[51714.634434][ctx       none]		flags = 2
[51714.634434][ctx       none]		value.type = 1
[51714.634434][ctx       none]		value.value.i = 0x40000000
[51714.634434][ctx       none]	attrib_list[2] =
[51714.634435][ctx       none]		type = 1
[51714.634435][ctx       none]		flags = 2
[51714.634435][ctx       none]		value.type = 1
[51714.634435][ctx       none]		value.value.i = 0x52474241
[51714.634436][ctx       none]	attrib_list[3] =
[51714.634436][ctx       none]		type = 7
[51714.634436][ctx       none]		flags = 2
[51714.634436][ctx       none]		value.type = 3
[51714.634437][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51714.634437][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51714.634437][ctx       none]		  pixel_format=0x52474241
[51714.634437][ctx       none]		  width=1280
[51714.634438][ctx       none]		  height=800
[51714.634438][ctx       none]		  num_objects=0x00000001
[51714.634438][ctx       none]			objects[0].fd=71
[51714.634438][ctx       none]			objects[0].size=4194304
[51714.634439][ctx       none]			objects[0].drm_format_modifier=0
[51714.634439][ctx       none]		  num_layers=1
[51714.634439][ctx       none]			layers[0].drm_format=0x34324241
[51714.634440][ctx       none]			layers[0].num_planes=0x1
[51714.634440][ctx       none]				layers[0].object_index[0]=0x0
[51714.634440][ctx       none]				layers[0].offset[0]=0x0
[51714.634440][ctx       none]				layers[0].pitch[0]=0x5120
[51714.634441][ctx       none]				layers[0].object_index[1]=0x0
[51714.634441][ctx       none]				layers[0].offset[1]=0x0
[51714.634441][ctx       none]				layers[0].pitch[1]=0x0
[51714.634442][ctx       none]				layers[0].object_index[2]=0x0
[51714.634442][ctx       none]				layers[0].offset[2]=0x0
[51714.634442][ctx       none]				layers[0].pitch[2]=0x0
[51714.634442][ctx       none]				layers[0].object_index[3]=0x0
[51714.634443][ctx       none]				layers[0].offset[3]=0x0
[51714.634443][ctx       none]				layers[0].pitch[3]=0x0
[51714.634449][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51714.635003][ctx       none]==========va_TraceSyncSurface
[51714.635004][ctx       none]	render_target = 0x00000005
[51714.635007][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51714.635008][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.635008][ctx       none]	render_target = 0x00000005
[51714.635008][ctx       none]	status = 0x00000004
[51714.635010][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.635012][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51714.635015][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860060][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860061][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860672][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.860672][ctx       none]	render_target = 0x00000005
[51714.860673][ctx       none]	status = 0x00000004
[51714.860682][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860685][ctx       none]==========va_TraceQuerySurfaceStatus
[51714.860685][ctx       none]	render_target = 0x00000003
[51714.860686][ctx       none]	status = 0x00000004
[51714.860687][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860689][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860690][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860691][ctx 0x40000000]==========va_TraceBeginPicture
[51714.860691][ctx 0x40000000]	context = 0x40000000
[51714.860692][ctx 0x40000000]	render_targets = 0x00000003
[51714.860692][ctx 0x40000000]	frame_count  = #28
[51714.860695][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860695][ctx 0x40000000]==========va_TraceRenderPicture
[51714.860696][ctx 0x40000000]	context = 0x40000000
[51714.860696][ctx 0x40000000]	num_buffers = 1
[51714.860697][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860697][ctx 0x40000000]	---------------------------
[51714.860697][ctx 0x40000000]	buffers[0] = 0x00000016
[51714.860698][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51714.860698][ctx 0x40000000]	  size = 224
[51714.860698][ctx 0x40000000]	  num_elements = 1
[51714.860699][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860699][ctx 0x40000000]	element[0] =
[51714.860700][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51714.860700][ctx 0x40000000]	  surface = 0x00000005
[51714.860700][ctx 0x40000000]	  surface_region
[51714.860701][ctx 0x40000000]	    x = 0
[51714.860701][ctx 0x40000000]	    y = 0
[51714.860701][ctx 0x40000000]	    width = 1280
[51714.860701][ctx 0x40000000]	    height = 800
[51714.860702][ctx 0x40000000]	  surface_color_standard = 8
[51714.860702][ctx 0x40000000]	  output_region
[51714.860702][ctx 0x40000000]	    x = 0
[51714.860703][ctx 0x40000000]	    y = 0
[51714.860703][ctx 0x40000000]	    width = 1280
[51714.860703][ctx 0x40000000]	    height = 800
[51714.860703][ctx 0x40000000]	  output_background_color = 0xff000000
[51714.860704][ctx 0x40000000]	  output_color_standard = 2
[51714.860704][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51714.860704][ctx 0x40000000]	  filter_flags = 0x00000000
[51714.860705][ctx 0x40000000]	  num_filters = 0
[51714.860705][ctx 0x40000000]	  filters = (nil)
[51714.860705][ctx 0x40000000]	  num_forward_references = 0x00000000
[51714.860706][ctx 0x40000000]	  num_backward_references = 0x00000000
[51714.860708][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860711][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860712][ctx 0x40000000]==========va_TraceEndPicture
[51714.860712][ctx 0x40000000]	context = 0x40000000
[51714.860712][ctx 0x40000000]	render_targets = 0x00000003
[51714.860853][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51714.860854][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51715.603613][ctx       none]==========va_TraceCreateSurfaces
[51715.603616][ctx       none]	width = 1280
[51715.603616][ctx       none]	height = 800
[51715.603617][ctx       none]	format = 131072
[51715.603617][ctx       none]	num_surfaces = 1
[51715.603618][ctx       none]		surfaces[0] = 0x00000000
[51715.603619][ctx       none]	attrib_list[0] =
[51715.603619][ctx       none]		type = 8
[51715.603620][ctx       none]		flags = 2
[51715.603620][ctx       none]		value.type = 1
[51715.603621][ctx       none]		value.value.i = 0x0000000c
[51715.603621][ctx       none]	attrib_list[1] =
[51715.603622][ctx       none]		type = 6
[51715.603622][ctx       none]		flags = 2
[51715.603623][ctx       none]		value.type = 1
[51715.603623][ctx       none]		value.value.i = 0x40000000
[51715.603623][ctx       none]	attrib_list[2] =
[51715.603624][ctx       none]		type = 1
[51715.603624][ctx       none]		flags = 2
[51715.603625][ctx       none]		value.type = 1
[51715.603625][ctx       none]		value.value.i = 0x52474241
[51715.603626][ctx       none]	attrib_list[3] =
[51715.603626][ctx       none]		type = 7
[51715.603627][ctx       none]		flags = 2
[51715.603627][ctx       none]		value.type = 3
[51715.603627][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51715.603628][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51715.603628][ctx       none]		  pixel_format=0x52474241
[51715.603629][ctx       none]		  width=1280
[51715.603629][ctx       none]		  height=800
[51715.603630][ctx       none]		  num_objects=0x00000001
[51715.603630][ctx       none]			objects[0].fd=71
[51715.603631][ctx       none]			objects[0].size=4194304
[51715.603632][ctx       none]			objects[0].drm_format_modifier=0
[51715.603632][ctx       none]		  num_layers=1
[51715.603633][ctx       none]			layers[0].drm_format=0x34324241
[51715.603633][ctx       none]			layers[0].num_planes=0x1
[51715.603634][ctx       none]				layers[0].object_index[0]=0x0
[51715.603634][ctx       none]				layers[0].offset[0]=0x0
[51715.603635][ctx       none]				layers[0].pitch[0]=0x5120
[51715.603636][ctx       none]				layers[0].object_index[1]=0x0
[51715.603636][ctx       none]				layers[0].offset[1]=0x0
[51715.603637][ctx       none]				layers[0].pitch[1]=0x0
[51715.603637][ctx       none]				layers[0].object_index[2]=0x0
[51715.603638][ctx       none]				layers[0].offset[2]=0x0
[51715.603638][ctx       none]				layers[0].pitch[2]=0x0
[51715.603639][ctx       none]				layers[0].object_index[3]=0x0
[51715.603639][ctx       none]				layers[0].offset[3]=0x0
[51715.603640][ctx       none]				layers[0].pitch[3]=0x0
[51715.603662][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51715.604092][ctx       none]==========va_TraceSyncSurface
[51715.604092][ctx       none]	render_target = 0x00000005
[51715.604098][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51715.604101][ctx       none]==========va_TraceQuerySurfaceStatus
[51715.604101][ctx       none]	render_target = 0x00000005
[51715.604102][ctx       none]	status = 0x00000004
[51715.604105][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51715.604109][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51715.604114][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829098][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829100][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829699][ctx       none]==========va_TraceQuerySurfaceStatus
[51715.829699][ctx       none]	render_target = 0x00000005
[51715.829699][ctx       none]	status = 0x00000004
[51715.829703][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829706][ctx       none]==========va_TraceQuerySurfaceStatus
[51715.829706][ctx       none]	render_target = 0x00000004
[51715.829706][ctx       none]	status = 0x00000004
[51715.829708][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829709][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829711][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829712][ctx 0x40000000]==========va_TraceBeginPicture
[51715.829712][ctx 0x40000000]	context = 0x40000000
[51715.829713][ctx 0x40000000]	render_targets = 0x00000004
[51715.829713][ctx 0x40000000]	frame_count  = #29
[51715.829716][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829716][ctx 0x40000000]==========va_TraceRenderPicture
[51715.829717][ctx 0x40000000]	context = 0x40000000
[51715.829717][ctx 0x40000000]	num_buffers = 1
[51715.829718][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829718][ctx 0x40000000]	---------------------------
[51715.829718][ctx 0x40000000]	buffers[0] = 0x00000016
[51715.829719][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51715.829719][ctx 0x40000000]	  size = 224
[51715.829719][ctx 0x40000000]	  num_elements = 1
[51715.829720][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829720][ctx 0x40000000]	element[0] =
[51715.829721][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51715.829721][ctx 0x40000000]	  surface = 0x00000005
[51715.829721][ctx 0x40000000]	  surface_region
[51715.829722][ctx 0x40000000]	    x = 0
[51715.829722][ctx 0x40000000]	    y = 0
[51715.829722][ctx 0x40000000]	    width = 1280
[51715.829723][ctx 0x40000000]	    height = 800
[51715.829723][ctx 0x40000000]	  surface_color_standard = 8
[51715.829723][ctx 0x40000000]	  output_region
[51715.829723][ctx 0x40000000]	    x = 0
[51715.829724][ctx 0x40000000]	    y = 0
[51715.829724][ctx 0x40000000]	    width = 1280
[51715.829724][ctx 0x40000000]	    height = 800
[51715.829725][ctx 0x40000000]	  output_background_color = 0xff000000
[51715.829725][ctx 0x40000000]	  output_color_standard = 2
[51715.829725][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51715.829725][ctx 0x40000000]	  filter_flags = 0x00000000
[51715.829726][ctx 0x40000000]	  num_filters = 0
[51715.829726][ctx 0x40000000]	  filters = (nil)
[51715.829727][ctx 0x40000000]	  num_forward_references = 0x00000000
[51715.829727][ctx 0x40000000]	  num_backward_references = 0x00000000
[51715.829733][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829736][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829737][ctx 0x40000000]==========va_TraceEndPicture
[51715.829737][ctx 0x40000000]	context = 0x40000000
[51715.829737][ctx 0x40000000]	render_targets = 0x00000004
[51715.829889][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51715.829890][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51715.844080][ctx       none]==========va_TraceCreateSurfaces
[51715.844080][ctx       none]	width = 1280
[51715.844081][ctx       none]	height = 800
[51715.844081][ctx       none]	format = 131072
[51715.844081][ctx       none]	num_surfaces = 1
[51715.844081][ctx       none]		surfaces[0] = 0x00000000
[51715.844082][ctx       none]	attrib_list[0] =
[51715.844082][ctx       none]		type = 8
[51715.844082][ctx       none]		flags = 2
[51715.844083][ctx       none]		value.type = 1
[51715.844083][ctx       none]		value.value.i = 0x0000000c
[51715.844083][ctx       none]	attrib_list[1] =
[51715.844083][ctx       none]		type = 6
[51715.844084][ctx       none]		flags = 2
[51715.844084][ctx       none]		value.type = 1
[51715.844084][ctx       none]		value.value.i = 0x40000000
[51715.844084][ctx       none]	attrib_list[2] =
[51715.844085][ctx       none]		type = 1
[51715.844085][ctx       none]		flags = 2
[51715.844085][ctx       none]		value.type = 1
[51715.844085][ctx       none]		value.value.i = 0x52474241
[51715.844085][ctx       none]	attrib_list[3] =
[51715.844086][ctx       none]		type = 7
[51715.844086][ctx       none]		flags = 2
[51715.844086][ctx       none]		value.type = 3
[51715.844086][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51715.844087][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51715.844087][ctx       none]		  pixel_format=0x52474241
[51715.844087][ctx       none]		  width=1280
[51715.844087][ctx       none]		  height=800
[51715.844088][ctx       none]		  num_objects=0x00000001
[51715.844088][ctx       none]			objects[0].fd=71
[51715.844088][ctx       none]			objects[0].size=4194304
[51715.844088][ctx       none]			objects[0].drm_format_modifier=0
[51715.844089][ctx       none]		  num_layers=1
[51715.844089][ctx       none]			layers[0].drm_format=0x34324241
[51715.844089][ctx       none]			layers[0].num_planes=0x1
[51715.844090][ctx       none]				layers[0].object_index[0]=0x0
[51715.844090][ctx       none]				layers[0].offset[0]=0x0
[51715.844090][ctx       none]				layers[0].pitch[0]=0x5120
[51715.844091][ctx       none]				layers[0].object_index[1]=0x0
[51715.844091][ctx       none]				layers[0].offset[1]=0x0
[51715.844091][ctx       none]				layers[0].pitch[1]=0x0
[51715.844091][ctx       none]				layers[0].object_index[2]=0x0
[51715.844092][ctx       none]				layers[0].offset[2]=0x0
[51715.844092][ctx       none]				layers[0].pitch[2]=0x0
[51715.844092][ctx       none]				layers[0].object_index[3]=0x0
[51715.844093][ctx       none]				layers[0].offset[3]=0x0
[51715.844093][ctx       none]				layers[0].pitch[3]=0x0
[51715.844103][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51715.844208][ctx       none]==========va_TraceSyncSurface
[51715.844208][ctx       none]	render_target = 0x00000005
[51715.844211][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51715.844212][ctx       none]==========va_TraceQuerySurfaceStatus
[51715.844212][ctx       none]	render_target = 0x00000005
[51715.844212][ctx       none]	status = 0x00000004
[51715.844214][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51715.844216][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51715.844219][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069202][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069204][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069683][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.069683][ctx       none]	render_target = 0x00000005
[51716.069683][ctx       none]	status = 0x00000004
[51716.069687][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069690][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.069690][ctx       none]	render_target = 0x00000003
[51716.069690][ctx       none]	status = 0x00000004
[51716.069692][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069693][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069695][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069696][ctx 0x40000000]==========va_TraceBeginPicture
[51716.069696][ctx 0x40000000]	context = 0x40000000
[51716.069696][ctx 0x40000000]	render_targets = 0x00000003
[51716.069697][ctx 0x40000000]	frame_count  = #30
[51716.069700][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069700][ctx 0x40000000]==========va_TraceRenderPicture
[51716.069701][ctx 0x40000000]	context = 0x40000000
[51716.069701][ctx 0x40000000]	num_buffers = 1
[51716.069701][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069702][ctx 0x40000000]	---------------------------
[51716.069702][ctx 0x40000000]	buffers[0] = 0x00000016
[51716.069702][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51716.069703][ctx 0x40000000]	  size = 224
[51716.069703][ctx 0x40000000]	  num_elements = 1
[51716.069704][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069704][ctx 0x40000000]	element[0] =
[51716.069705][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51716.069705][ctx 0x40000000]	  surface = 0x00000005
[51716.069705][ctx 0x40000000]	  surface_region
[51716.069706][ctx 0x40000000]	    x = 0
[51716.069706][ctx 0x40000000]	    y = 0
[51716.069706][ctx 0x40000000]	    width = 1280
[51716.069707][ctx 0x40000000]	    height = 800
[51716.069707][ctx 0x40000000]	  surface_color_standard = 8
[51716.069707][ctx 0x40000000]	  output_region
[51716.069707][ctx 0x40000000]	    x = 0
[51716.069708][ctx 0x40000000]	    y = 0
[51716.069708][ctx 0x40000000]	    width = 1280
[51716.069708][ctx 0x40000000]	    height = 800
[51716.069709][ctx 0x40000000]	  output_background_color = 0xff000000
[51716.069709][ctx 0x40000000]	  output_color_standard = 2
[51716.069709][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51716.069710][ctx 0x40000000]	  filter_flags = 0x00000000
[51716.069710][ctx 0x40000000]	  num_filters = 0
[51716.069710][ctx 0x40000000]	  filters = (nil)
[51716.069711][ctx 0x40000000]	  num_forward_references = 0x00000000
[51716.069711][ctx 0x40000000]	  num_backward_references = 0x00000000
[51716.069717][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069720][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069721][ctx 0x40000000]==========va_TraceEndPicture
[51716.069721][ctx 0x40000000]	context = 0x40000000
[51716.069721][ctx 0x40000000]	render_targets = 0x00000003
[51716.069823][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.069825][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.084901][ctx       none]==========va_TraceCreateSurfaces
[51716.084902][ctx       none]	width = 1280
[51716.084902][ctx       none]	height = 800
[51716.084903][ctx       none]	format = 131072
[51716.084903][ctx       none]	num_surfaces = 1
[51716.084903][ctx       none]		surfaces[0] = 0x00000000
[51716.084904][ctx       none]	attrib_list[0] =
[51716.084904][ctx       none]		type = 8
[51716.084904][ctx       none]		flags = 2
[51716.084904][ctx       none]		value.type = 1
[51716.084905][ctx       none]		value.value.i = 0x0000000c
[51716.084905][ctx       none]	attrib_list[1] =
[51716.084905][ctx       none]		type = 6
[51716.084905][ctx       none]		flags = 2
[51716.084906][ctx       none]		value.type = 1
[51716.084906][ctx       none]		value.value.i = 0x40000000
[51716.084906][ctx       none]	attrib_list[2] =
[51716.084906][ctx       none]		type = 1
[51716.084907][ctx       none]		flags = 2
[51716.084907][ctx       none]		value.type = 1
[51716.084907][ctx       none]		value.value.i = 0x52474241
[51716.084907][ctx       none]	attrib_list[3] =
[51716.084908][ctx       none]		type = 7
[51716.084908][ctx       none]		flags = 2
[51716.084908][ctx       none]		value.type = 3
[51716.084908][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51716.084909][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51716.084909][ctx       none]		  pixel_format=0x52474241
[51716.084909][ctx       none]		  width=1280
[51716.084909][ctx       none]		  height=800
[51716.084910][ctx       none]		  num_objects=0x00000001
[51716.084910][ctx       none]			objects[0].fd=71
[51716.084910][ctx       none]			objects[0].size=4194304
[51716.084910][ctx       none]			objects[0].drm_format_modifier=0
[51716.084911][ctx       none]		  num_layers=1
[51716.084911][ctx       none]			layers[0].drm_format=0x34324241
[51716.084911][ctx       none]			layers[0].num_planes=0x1
[51716.084912][ctx       none]				layers[0].object_index[0]=0x0
[51716.084912][ctx       none]				layers[0].offset[0]=0x0
[51716.084912][ctx       none]				layers[0].pitch[0]=0x5120
[51716.084913][ctx       none]				layers[0].object_index[1]=0x0
[51716.084913][ctx       none]				layers[0].offset[1]=0x0
[51716.084913][ctx       none]				layers[0].pitch[1]=0x0
[51716.084913][ctx       none]				layers[0].object_index[2]=0x0
[51716.084914][ctx       none]				layers[0].offset[2]=0x0
[51716.084914][ctx       none]				layers[0].pitch[2]=0x0
[51716.084914][ctx       none]				layers[0].object_index[3]=0x0
[51716.084915][ctx       none]				layers[0].offset[3]=0x0
[51716.084915][ctx       none]				layers[0].pitch[3]=0x0
[51716.084920][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51716.084989][ctx       none]==========va_TraceSyncSurface
[51716.084990][ctx       none]	render_target = 0x00000005
[51716.084992][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51716.084994][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.084994][ctx       none]	render_target = 0x00000005
[51716.084994][ctx       none]	status = 0x00000004
[51716.085000][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.085002][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.085004][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51716.309953][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.309955][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310399][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.310399][ctx       none]	render_target = 0x00000005
[51716.310399][ctx       none]	status = 0x00000004
[51716.310403][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310406][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.310406][ctx       none]	render_target = 0x00000004
[51716.310406][ctx       none]	status = 0x00000004
[51716.310408][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310409][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310411][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310412][ctx 0x40000000]==========va_TraceBeginPicture
[51716.310412][ctx 0x40000000]	context = 0x40000000
[51716.310412][ctx 0x40000000]	render_targets = 0x00000004
[51716.310413][ctx 0x40000000]	frame_count  = #31
[51716.310415][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310416][ctx 0x40000000]==========va_TraceRenderPicture
[51716.310416][ctx 0x40000000]	context = 0x40000000
[51716.310417][ctx 0x40000000]	num_buffers = 1
[51716.310417][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310417][ctx 0x40000000]	---------------------------
[51716.310418][ctx 0x40000000]	buffers[0] = 0x00000016
[51716.310418][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51716.310418][ctx 0x40000000]	  size = 224
[51716.310419][ctx 0x40000000]	  num_elements = 1
[51716.310419][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310420][ctx 0x40000000]	element[0] =
[51716.310420][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51716.310421][ctx 0x40000000]	  surface = 0x00000005
[51716.310421][ctx 0x40000000]	  surface_region
[51716.310421][ctx 0x40000000]	    x = 0
[51716.310421][ctx 0x40000000]	    y = 0
[51716.310422][ctx 0x40000000]	    width = 1280
[51716.310422][ctx 0x40000000]	    height = 800
[51716.310422][ctx 0x40000000]	  surface_color_standard = 8
[51716.310423][ctx 0x40000000]	  output_region
[51716.310423][ctx 0x40000000]	    x = 0
[51716.310423][ctx 0x40000000]	    y = 0
[51716.310423][ctx 0x40000000]	    width = 1280
[51716.310424][ctx 0x40000000]	    height = 800
[51716.310424][ctx 0x40000000]	  output_background_color = 0xff000000
[51716.310424][ctx 0x40000000]	  output_color_standard = 2
[51716.310425][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51716.310425][ctx 0x40000000]	  filter_flags = 0x00000000
[51716.310425][ctx 0x40000000]	  num_filters = 0
[51716.310426][ctx 0x40000000]	  filters = (nil)
[51716.310426][ctx 0x40000000]	  num_forward_references = 0x00000000
[51716.310426][ctx 0x40000000]	  num_backward_references = 0x00000000
[51716.310428][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310432][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310432][ctx 0x40000000]==========va_TraceEndPicture
[51716.310432][ctx 0x40000000]	context = 0x40000000
[51716.310433][ctx 0x40000000]	render_targets = 0x00000004
[51716.310531][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.310532][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.325762][ctx       none]==========va_TraceCreateSurfaces
[51716.325763][ctx       none]	width = 1280
[51716.325763][ctx       none]	height = 800
[51716.325763][ctx       none]	format = 131072
[51716.325764][ctx       none]	num_surfaces = 1
[51716.325764][ctx       none]		surfaces[0] = 0x00000000
[51716.325764][ctx       none]	attrib_list[0] =
[51716.325765][ctx       none]		type = 8
[51716.325765][ctx       none]		flags = 2
[51716.325765][ctx       none]		value.type = 1
[51716.325765][ctx       none]		value.value.i = 0x0000000c
[51716.325766][ctx       none]	attrib_list[1] =
[51716.325766][ctx       none]		type = 6
[51716.325766][ctx       none]		flags = 2
[51716.325766][ctx       none]		value.type = 1
[51716.325766][ctx       none]		value.value.i = 0x40000000
[51716.325767][ctx       none]	attrib_list[2] =
[51716.325767][ctx       none]		type = 1
[51716.325767][ctx       none]		flags = 2
[51716.325767][ctx       none]		value.type = 1
[51716.325768][ctx       none]		value.value.i = 0x52474241
[51716.325768][ctx       none]	attrib_list[3] =
[51716.325768][ctx       none]		type = 7
[51716.325768][ctx       none]		flags = 2
[51716.325768][ctx       none]		value.type = 3
[51716.325769][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51716.325769][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51716.325769][ctx       none]		  pixel_format=0x52474241
[51716.325769][ctx       none]		  width=1280
[51716.325770][ctx       none]		  height=800
[51716.325770][ctx       none]		  num_objects=0x00000001
[51716.325770][ctx       none]			objects[0].fd=71
[51716.325770][ctx       none]			objects[0].size=4194304
[51716.325771][ctx       none]			objects[0].drm_format_modifier=0
[51716.325771][ctx       none]		  num_layers=1
[51716.325771][ctx       none]			layers[0].drm_format=0x34324241
[51716.325772][ctx       none]			layers[0].num_planes=0x1
[51716.325772][ctx       none]				layers[0].object_index[0]=0x0
[51716.325772][ctx       none]				layers[0].offset[0]=0x0
[51716.325773][ctx       none]				layers[0].pitch[0]=0x5120
[51716.325773][ctx       none]				layers[0].object_index[1]=0x0
[51716.325773][ctx       none]				layers[0].offset[1]=0x0
[51716.325773][ctx       none]				layers[0].pitch[1]=0x0
[51716.325774][ctx       none]				layers[0].object_index[2]=0x0
[51716.325774][ctx       none]				layers[0].offset[2]=0x0
[51716.325774][ctx       none]				layers[0].pitch[2]=0x0
[51716.325775][ctx       none]				layers[0].object_index[3]=0x0
[51716.325775][ctx       none]				layers[0].offset[3]=0x0
[51716.325775][ctx       none]				layers[0].pitch[3]=0x0
[51716.325784][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51716.325998][ctx       none]==========va_TraceSyncSurface
[51716.325999][ctx       none]	render_target = 0x00000005
[51716.326001][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51716.326003][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.326003][ctx       none]	render_target = 0x00000005
[51716.326003][ctx       none]	status = 0x00000004
[51716.326005][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.326007][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.326010][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51716.550949][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.550950][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551000][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.551000][ctx       none]	render_target = 0x00000005
[51716.551000][ctx       none]	status = 0x00000004
[51716.551004][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551007][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.551007][ctx       none]	render_target = 0x00000003
[51716.551007][ctx       none]	status = 0x00000004
[51716.551009][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551010][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551012][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551012][ctx 0x40000000]==========va_TraceBeginPicture
[51716.551013][ctx 0x40000000]	context = 0x40000000
[51716.551013][ctx 0x40000000]	render_targets = 0x00000003
[51716.551013][ctx 0x40000000]	frame_count  = #32
[51716.551020][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551021][ctx 0x40000000]==========va_TraceRenderPicture
[51716.551021][ctx 0x40000000]	context = 0x40000000
[51716.551021][ctx 0x40000000]	num_buffers = 1
[51716.551022][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551022][ctx 0x40000000]	---------------------------
[51716.551022][ctx 0x40000000]	buffers[0] = 0x00000016
[51716.551023][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51716.551023][ctx 0x40000000]	  size = 224
[51716.551023][ctx 0x40000000]	  num_elements = 1
[51716.551024][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551024][ctx 0x40000000]	element[0] =
[51716.551025][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51716.551025][ctx 0x40000000]	  surface = 0x00000005
[51716.551025][ctx 0x40000000]	  surface_region
[51716.551026][ctx 0x40000000]	    x = 0
[51716.551026][ctx 0x40000000]	    y = 0
[51716.551026][ctx 0x40000000]	    width = 1280
[51716.551027][ctx 0x40000000]	    height = 800
[51716.551027][ctx 0x40000000]	  surface_color_standard = 8
[51716.551027][ctx 0x40000000]	  output_region
[51716.551027][ctx 0x40000000]	    x = 0
[51716.551028][ctx 0x40000000]	    y = 0
[51716.551028][ctx 0x40000000]	    width = 1280
[51716.551028][ctx 0x40000000]	    height = 800
[51716.551028][ctx 0x40000000]	  output_background_color = 0xff000000
[51716.551029][ctx 0x40000000]	  output_color_standard = 2
[51716.551029][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51716.551029][ctx 0x40000000]	  filter_flags = 0x00000000
[51716.551030][ctx 0x40000000]	  num_filters = 0
[51716.551030][ctx 0x40000000]	  filters = (nil)
[51716.551031][ctx 0x40000000]	  num_forward_references = 0x00000000
[51716.551031][ctx 0x40000000]	  num_backward_references = 0x00000000
[51716.551033][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551036][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551037][ctx 0x40000000]==========va_TraceEndPicture
[51716.551037][ctx 0x40000000]	context = 0x40000000
[51716.551037][ctx 0x40000000]	render_targets = 0x00000003
[51716.551143][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.551145][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.566768][ctx       none]==========va_TraceCreateSurfaces
[51716.566769][ctx       none]	width = 1280
[51716.566769][ctx       none]	height = 800
[51716.566769][ctx       none]	format = 131072
[51716.566769][ctx       none]	num_surfaces = 1
[51716.566770][ctx       none]		surfaces[0] = 0x00000000
[51716.566770][ctx       none]	attrib_list[0] =
[51716.566770][ctx       none]		type = 8
[51716.566771][ctx       none]		flags = 2
[51716.566771][ctx       none]		value.type = 1
[51716.566771][ctx       none]		value.value.i = 0x0000000c
[51716.566771][ctx       none]	attrib_list[1] =
[51716.566772][ctx       none]		type = 6
[51716.566772][ctx       none]		flags = 2
[51716.566772][ctx       none]		value.type = 1
[51716.566772][ctx       none]		value.value.i = 0x40000000
[51716.566772][ctx       none]	attrib_list[2] =
[51716.566773][ctx       none]		type = 1
[51716.566773][ctx       none]		flags = 2
[51716.566773][ctx       none]		value.type = 1
[51716.566773][ctx       none]		value.value.i = 0x52474241
[51716.566774][ctx       none]	attrib_list[3] =
[51716.566774][ctx       none]		type = 7
[51716.566774][ctx       none]		flags = 2
[51716.566774][ctx       none]		value.type = 3
[51716.566774][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51716.566775][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51716.566775][ctx       none]		  pixel_format=0x52474241
[51716.566775][ctx       none]		  width=1280
[51716.566775][ctx       none]		  height=800
[51716.566776][ctx       none]		  num_objects=0x00000001
[51716.566776][ctx       none]			objects[0].fd=71
[51716.566776][ctx       none]			objects[0].size=4194304
[51716.566777][ctx       none]			objects[0].drm_format_modifier=0
[51716.566777][ctx       none]		  num_layers=1
[51716.566777][ctx       none]			layers[0].drm_format=0x34324241
[51716.566777][ctx       none]			layers[0].num_planes=0x1
[51716.566778][ctx       none]				layers[0].object_index[0]=0x0
[51716.566778][ctx       none]				layers[0].offset[0]=0x0
[51716.566778][ctx       none]				layers[0].pitch[0]=0x5120
[51716.566779][ctx       none]				layers[0].object_index[1]=0x0
[51716.566779][ctx       none]				layers[0].offset[1]=0x0
[51716.566779][ctx       none]				layers[0].pitch[1]=0x0
[51716.566780][ctx       none]				layers[0].object_index[2]=0x0
[51716.566780][ctx       none]				layers[0].offset[2]=0x0
[51716.566780][ctx       none]				layers[0].pitch[2]=0x0
[51716.566780][ctx       none]				layers[0].object_index[3]=0x0
[51716.566781][ctx       none]				layers[0].offset[3]=0x0
[51716.566781][ctx       none]				layers[0].pitch[3]=0x0
[51716.566790][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51716.566981][ctx       none]==========va_TraceSyncSurface
[51716.566981][ctx       none]	render_target = 0x00000005
[51716.566984][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51716.566985][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.566986][ctx       none]	render_target = 0x00000005
[51716.566986][ctx       none]	status = 0x00000004
[51716.566988][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.566990][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.566992][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51716.791940][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.791941][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792407][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.792408][ctx       none]	render_target = 0x00000005
[51716.792408][ctx       none]	status = 0x00000004
[51716.792412][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792414][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.792414][ctx       none]	render_target = 0x00000004
[51716.792415][ctx       none]	status = 0x00000004
[51716.792416][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792417][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792419][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792420][ctx 0x40000000]==========va_TraceBeginPicture
[51716.792420][ctx 0x40000000]	context = 0x40000000
[51716.792421][ctx 0x40000000]	render_targets = 0x00000004
[51716.792421][ctx 0x40000000]	frame_count  = #33
[51716.792424][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792425][ctx 0x40000000]==========va_TraceRenderPicture
[51716.792425][ctx 0x40000000]	context = 0x40000000
[51716.792425][ctx 0x40000000]	num_buffers = 1
[51716.792426][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792426][ctx 0x40000000]	---------------------------
[51716.792426][ctx 0x40000000]	buffers[0] = 0x00000016
[51716.792427][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51716.792427][ctx 0x40000000]	  size = 224
[51716.792427][ctx 0x40000000]	  num_elements = 1
[51716.792428][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792428][ctx 0x40000000]	element[0] =
[51716.792429][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51716.792429][ctx 0x40000000]	  surface = 0x00000005
[51716.792429][ctx 0x40000000]	  surface_region
[51716.792430][ctx 0x40000000]	    x = 0
[51716.792430][ctx 0x40000000]	    y = 0
[51716.792430][ctx 0x40000000]	    width = 1280
[51716.792430][ctx 0x40000000]	    height = 800
[51716.792431][ctx 0x40000000]	  surface_color_standard = 8
[51716.792431][ctx 0x40000000]	  output_region
[51716.792431][ctx 0x40000000]	    x = 0
[51716.792432][ctx 0x40000000]	    y = 0
[51716.792432][ctx 0x40000000]	    width = 1280
[51716.792432][ctx 0x40000000]	    height = 800
[51716.792432][ctx 0x40000000]	  output_background_color = 0xff000000
[51716.792433][ctx 0x40000000]	  output_color_standard = 2
[51716.792433][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51716.792433][ctx 0x40000000]	  filter_flags = 0x00000000
[51716.792434][ctx 0x40000000]	  num_filters = 0
[51716.792434][ctx 0x40000000]	  filters = (nil)
[51716.792434][ctx 0x40000000]	  num_forward_references = 0x00000000
[51716.792435][ctx 0x40000000]	  num_backward_references = 0x00000000
[51716.792440][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792443][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792444][ctx 0x40000000]==========va_TraceEndPicture
[51716.792444][ctx 0x40000000]	context = 0x40000000
[51716.792445][ctx 0x40000000]	render_targets = 0x00000004
[51716.792542][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51716.792543][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51716.807761][ctx       none]==========va_TraceCreateSurfaces
[51716.807762][ctx       none]	width = 1280
[51716.807762][ctx       none]	height = 800
[51716.807762][ctx       none]	format = 131072
[51716.807762][ctx       none]	num_surfaces = 1
[51716.807763][ctx       none]		surfaces[0] = 0x00000000
[51716.807763][ctx       none]	attrib_list[0] =
[51716.807763][ctx       none]		type = 8
[51716.807764][ctx       none]		flags = 2
[51716.807764][ctx       none]		value.type = 1
[51716.807764][ctx       none]		value.value.i = 0x0000000c
[51716.807764][ctx       none]	attrib_list[1] =
[51716.807765][ctx       none]		type = 6
[51716.807765][ctx       none]		flags = 2
[51716.807765][ctx       none]		value.type = 1
[51716.807765][ctx       none]		value.value.i = 0x40000000
[51716.807765][ctx       none]	attrib_list[2] =
[51716.807766][ctx       none]		type = 1
[51716.807766][ctx       none]		flags = 2
[51716.807766][ctx       none]		value.type = 1
[51716.807766][ctx       none]		value.value.i = 0x52474241
[51716.807767][ctx       none]	attrib_list[3] =
[51716.807767][ctx       none]		type = 7
[51716.807767][ctx       none]		flags = 2
[51716.807767][ctx       none]		value.type = 3
[51716.807767][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51716.807768][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51716.807768][ctx       none]		  pixel_format=0x52474241
[51716.807768][ctx       none]		  width=1280
[51716.807768][ctx       none]		  height=800
[51716.807769][ctx       none]		  num_objects=0x00000001
[51716.807769][ctx       none]			objects[0].fd=71
[51716.807769][ctx       none]			objects[0].size=4194304
[51716.807770][ctx       none]			objects[0].drm_format_modifier=0
[51716.807770][ctx       none]		  num_layers=1
[51716.807770][ctx       none]			layers[0].drm_format=0x34324241
[51716.807770][ctx       none]			layers[0].num_planes=0x1
[51716.807771][ctx       none]				layers[0].object_index[0]=0x0
[51716.807771][ctx       none]				layers[0].offset[0]=0x0
[51716.807771][ctx       none]				layers[0].pitch[0]=0x5120
[51716.807772][ctx       none]				layers[0].object_index[1]=0x0
[51716.807772][ctx       none]				layers[0].offset[1]=0x0
[51716.807772][ctx       none]				layers[0].pitch[1]=0x0
[51716.807773][ctx       none]				layers[0].object_index[2]=0x0
[51716.807773][ctx       none]				layers[0].offset[2]=0x0
[51716.807773][ctx       none]				layers[0].pitch[2]=0x0
[51716.807773][ctx       none]				layers[0].object_index[3]=0x0
[51716.807774][ctx       none]				layers[0].offset[3]=0x0
[51716.807774][ctx       none]				layers[0].pitch[3]=0x0
[51716.807783][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51716.807986][ctx       none]==========va_TraceSyncSurface
[51716.807986][ctx       none]	render_target = 0x00000005
[51716.807988][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51716.807990][ctx       none]==========va_TraceQuerySurfaceStatus
[51716.807990][ctx       none]	render_target = 0x00000005
[51716.807990][ctx       none]	status = 0x00000004
[51716.807992][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51716.807994][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51716.807997][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51717.032950][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.032952][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033357][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.033357][ctx       none]	render_target = 0x00000005
[51717.033357][ctx       none]	status = 0x00000004
[51717.033361][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033364][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.033364][ctx       none]	render_target = 0x00000003
[51717.033364][ctx       none]	status = 0x00000004
[51717.033366][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033367][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033369][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033370][ctx 0x40000000]==========va_TraceBeginPicture
[51717.033370][ctx 0x40000000]	context = 0x40000000
[51717.033370][ctx 0x40000000]	render_targets = 0x00000003
[51717.033371][ctx 0x40000000]	frame_count  = #34
[51717.033373][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033374][ctx 0x40000000]==========va_TraceRenderPicture
[51717.033374][ctx 0x40000000]	context = 0x40000000
[51717.033374][ctx 0x40000000]	num_buffers = 1
[51717.033375][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033375][ctx 0x40000000]	---------------------------
[51717.033376][ctx 0x40000000]	buffers[0] = 0x00000016
[51717.033376][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51717.033376][ctx 0x40000000]	  size = 224
[51717.033377][ctx 0x40000000]	  num_elements = 1
[51717.033377][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033378][ctx 0x40000000]	element[0] =
[51717.033378][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51717.033379][ctx 0x40000000]	  surface = 0x00000005
[51717.033379][ctx 0x40000000]	  surface_region
[51717.033379][ctx 0x40000000]	    x = 0
[51717.033379][ctx 0x40000000]	    y = 0
[51717.033380][ctx 0x40000000]	    width = 1280
[51717.033380][ctx 0x40000000]	    height = 800
[51717.033380][ctx 0x40000000]	  surface_color_standard = 8
[51717.033381][ctx 0x40000000]	  output_region
[51717.033381][ctx 0x40000000]	    x = 0
[51717.033381][ctx 0x40000000]	    y = 0
[51717.033381][ctx 0x40000000]	    width = 1280
[51717.033382][ctx 0x40000000]	    height = 800
[51717.033382][ctx 0x40000000]	  output_background_color = 0xff000000
[51717.033382][ctx 0x40000000]	  output_color_standard = 2
[51717.033383][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51717.033383][ctx 0x40000000]	  filter_flags = 0x00000000
[51717.033383][ctx 0x40000000]	  num_filters = 0
[51717.033384][ctx 0x40000000]	  filters = (nil)
[51717.033384][ctx 0x40000000]	  num_forward_references = 0x00000000
[51717.033385][ctx 0x40000000]	  num_backward_references = 0x00000000
[51717.033390][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033393][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033394][ctx 0x40000000]==========va_TraceEndPicture
[51717.033394][ctx 0x40000000]	context = 0x40000000
[51717.033395][ctx 0x40000000]	render_targets = 0x00000003
[51717.033491][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.033493][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.048863][ctx       none]==========va_TraceCreateSurfaces
[51717.048864][ctx       none]	width = 1280
[51717.048864][ctx       none]	height = 800
[51717.048864][ctx       none]	format = 131072
[51717.048865][ctx       none]	num_surfaces = 1
[51717.048865][ctx       none]		surfaces[0] = 0x00000000
[51717.048865][ctx       none]	attrib_list[0] =
[51717.048866][ctx       none]		type = 8
[51717.048866][ctx       none]		flags = 2
[51717.048866][ctx       none]		value.type = 1
[51717.048866][ctx       none]		value.value.i = 0x0000000c
[51717.048867][ctx       none]	attrib_list[1] =
[51717.048867][ctx       none]		type = 6
[51717.048867][ctx       none]		flags = 2
[51717.048867][ctx       none]		value.type = 1
[51717.048868][ctx       none]		value.value.i = 0x40000000
[51717.048868][ctx       none]	attrib_list[2] =
[51717.048868][ctx       none]		type = 1
[51717.048868][ctx       none]		flags = 2
[51717.048868][ctx       none]		value.type = 1
[51717.048869][ctx       none]		value.value.i = 0x52474241
[51717.048869][ctx       none]	attrib_list[3] =
[51717.048869][ctx       none]		type = 7
[51717.048869][ctx       none]		flags = 2
[51717.048870][ctx       none]		value.type = 3
[51717.048870][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51717.048870][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51717.048870][ctx       none]		  pixel_format=0x52474241
[51717.048871][ctx       none]		  width=1280
[51717.048871][ctx       none]		  height=800
[51717.048871][ctx       none]		  num_objects=0x00000001
[51717.048871][ctx       none]			objects[0].fd=71
[51717.048872][ctx       none]			objects[0].size=4194304
[51717.048872][ctx       none]			objects[0].drm_format_modifier=0
[51717.048872][ctx       none]		  num_layers=1
[51717.048873][ctx       none]			layers[0].drm_format=0x34324241
[51717.048873][ctx       none]			layers[0].num_planes=0x1
[51717.048873][ctx       none]				layers[0].object_index[0]=0x0
[51717.048874][ctx       none]				layers[0].offset[0]=0x0
[51717.048874][ctx       none]				layers[0].pitch[0]=0x5120
[51717.048874][ctx       none]				layers[0].object_index[1]=0x0
[51717.048875][ctx       none]				layers[0].offset[1]=0x0
[51717.048875][ctx       none]				layers[0].pitch[1]=0x0
[51717.048875][ctx       none]				layers[0].object_index[2]=0x0
[51717.048875][ctx       none]				layers[0].offset[2]=0x0
[51717.048876][ctx       none]				layers[0].pitch[2]=0x0
[51717.048876][ctx       none]				layers[0].object_index[3]=0x0
[51717.048876][ctx       none]				layers[0].offset[3]=0x0
[51717.048877][ctx       none]				layers[0].pitch[3]=0x0
[51717.048882][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51717.048965][ctx       none]==========va_TraceSyncSurface
[51717.048965][ctx       none]	render_target = 0x00000005
[51717.048968][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51717.048969][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.048969][ctx       none]	render_target = 0x00000005
[51717.048970][ctx       none]	status = 0x00000004
[51717.048971][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.048973][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.048976][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51717.273964][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.273965][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274433][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.274433][ctx       none]	render_target = 0x00000005
[51717.274434][ctx       none]	status = 0x00000004
[51717.274444][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274446][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.274447][ctx       none]	render_target = 0x00000004
[51717.274447][ctx       none]	status = 0x00000004
[51717.274449][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274450][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274452][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274452][ctx 0x40000000]==========va_TraceBeginPicture
[51717.274453][ctx 0x40000000]	context = 0x40000000
[51717.274453][ctx 0x40000000]	render_targets = 0x00000004
[51717.274453][ctx 0x40000000]	frame_count  = #35
[51717.274456][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274457][ctx 0x40000000]==========va_TraceRenderPicture
[51717.274457][ctx 0x40000000]	context = 0x40000000
[51717.274457][ctx 0x40000000]	num_buffers = 1
[51717.274458][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274458][ctx 0x40000000]	---------------------------
[51717.274458][ctx 0x40000000]	buffers[0] = 0x00000016
[51717.274459][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51717.274459][ctx 0x40000000]	  size = 224
[51717.274459][ctx 0x40000000]	  num_elements = 1
[51717.274460][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274460][ctx 0x40000000]	element[0] =
[51717.274461][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51717.274461][ctx 0x40000000]	  surface = 0x00000005
[51717.274461][ctx 0x40000000]	  surface_region
[51717.274462][ctx 0x40000000]	    x = 0
[51717.274462][ctx 0x40000000]	    y = 0
[51717.274462][ctx 0x40000000]	    width = 1280
[51717.274463][ctx 0x40000000]	    height = 800
[51717.274463][ctx 0x40000000]	  surface_color_standard = 8
[51717.274463][ctx 0x40000000]	  output_region
[51717.274463][ctx 0x40000000]	    x = 0
[51717.274464][ctx 0x40000000]	    y = 0
[51717.274464][ctx 0x40000000]	    width = 1280
[51717.274464][ctx 0x40000000]	    height = 800
[51717.274465][ctx 0x40000000]	  output_background_color = 0xff000000
[51717.274465][ctx 0x40000000]	  output_color_standard = 2
[51717.274465][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51717.274465][ctx 0x40000000]	  filter_flags = 0x00000000
[51717.274466][ctx 0x40000000]	  num_filters = 0
[51717.274466][ctx 0x40000000]	  filters = (nil)
[51717.274467][ctx 0x40000000]	  num_forward_references = 0x00000000
[51717.274467][ctx 0x40000000]	  num_backward_references = 0x00000000
[51717.274469][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274472][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274473][ctx 0x40000000]==========va_TraceEndPicture
[51717.274473][ctx 0x40000000]	context = 0x40000000
[51717.274473][ctx 0x40000000]	render_targets = 0x00000004
[51717.274573][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.274575][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.289746][ctx       none]==========va_TraceCreateSurfaces
[51717.289747][ctx       none]	width = 1280
[51717.289747][ctx       none]	height = 800
[51717.289747][ctx       none]	format = 131072
[51717.289748][ctx       none]	num_surfaces = 1
[51717.289748][ctx       none]		surfaces[0] = 0x00000000
[51717.289748][ctx       none]	attrib_list[0] =
[51717.289749][ctx       none]		type = 8
[51717.289749][ctx       none]		flags = 2
[51717.289749][ctx       none]		value.type = 1
[51717.289749][ctx       none]		value.value.i = 0x0000000c
[51717.289750][ctx       none]	attrib_list[1] =
[51717.289750][ctx       none]		type = 6
[51717.289750][ctx       none]		flags = 2
[51717.289750][ctx       none]		value.type = 1
[51717.289750][ctx       none]		value.value.i = 0x40000000
[51717.289751][ctx       none]	attrib_list[2] =
[51717.289751][ctx       none]		type = 1
[51717.289751][ctx       none]		flags = 2
[51717.289751][ctx       none]		value.type = 1
[51717.289752][ctx       none]		value.value.i = 0x52474241
[51717.289752][ctx       none]	attrib_list[3] =
[51717.289752][ctx       none]		type = 7
[51717.289752][ctx       none]		flags = 2
[51717.289753][ctx       none]		value.type = 3
[51717.289753][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51717.289753][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51717.289753][ctx       none]		  pixel_format=0x52474241
[51717.289753][ctx       none]		  width=1280
[51717.289754][ctx       none]		  height=800
[51717.289754][ctx       none]		  num_objects=0x00000001
[51717.289754][ctx       none]			objects[0].fd=71
[51717.289754][ctx       none]			objects[0].size=4194304
[51717.289755][ctx       none]			objects[0].drm_format_modifier=0
[51717.289755][ctx       none]		  num_layers=1
[51717.289755][ctx       none]			layers[0].drm_format=0x34324241
[51717.289756][ctx       none]			layers[0].num_planes=0x1
[51717.289756][ctx       none]				layers[0].object_index[0]=0x0
[51717.289756][ctx       none]				layers[0].offset[0]=0x0
[51717.289757][ctx       none]				layers[0].pitch[0]=0x5120
[51717.289757][ctx       none]				layers[0].object_index[1]=0x0
[51717.289757][ctx       none]				layers[0].offset[1]=0x0
[51717.289757][ctx       none]				layers[0].pitch[1]=0x0
[51717.289758][ctx       none]				layers[0].object_index[2]=0x0
[51717.289758][ctx       none]				layers[0].offset[2]=0x0
[51717.289758][ctx       none]				layers[0].pitch[2]=0x0
[51717.289759][ctx       none]				layers[0].object_index[3]=0x0
[51717.289759][ctx       none]				layers[0].offset[3]=0x0
[51717.289759][ctx       none]				layers[0].pitch[3]=0x0
[51717.289770][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51717.289975][ctx       none]==========va_TraceSyncSurface
[51717.289975][ctx       none]	render_target = 0x00000005
[51717.289978][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51717.289979][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.289979][ctx       none]	render_target = 0x00000005
[51717.289980][ctx       none]	status = 0x00000004
[51717.289981][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.289983][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.289986][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515009][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515010][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515073][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.515073][ctx       none]	render_target = 0x00000005
[51717.515074][ctx       none]	status = 0x00000004
[51717.515080][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515083][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.515083][ctx       none]	render_target = 0x00000003
[51717.515083][ctx       none]	status = 0x00000004
[51717.515085][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515086][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515088][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515088][ctx 0x40000000]==========va_TraceBeginPicture
[51717.515089][ctx 0x40000000]	context = 0x40000000
[51717.515089][ctx 0x40000000]	render_targets = 0x00000003
[51717.515089][ctx 0x40000000]	frame_count  = #36
[51717.515093][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515093][ctx 0x40000000]==========va_TraceRenderPicture
[51717.515094][ctx 0x40000000]	context = 0x40000000
[51717.515094][ctx 0x40000000]	num_buffers = 1
[51717.515094][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515095][ctx 0x40000000]	---------------------------
[51717.515095][ctx 0x40000000]	buffers[0] = 0x00000016
[51717.515095][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51717.515096][ctx 0x40000000]	  size = 224
[51717.515096][ctx 0x40000000]	  num_elements = 1
[51717.515097][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515097][ctx 0x40000000]	element[0] =
[51717.515098][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51717.515098][ctx 0x40000000]	  surface = 0x00000005
[51717.515098][ctx 0x40000000]	  surface_region
[51717.515099][ctx 0x40000000]	    x = 0
[51717.515099][ctx 0x40000000]	    y = 0
[51717.515099][ctx 0x40000000]	    width = 1280
[51717.515099][ctx 0x40000000]	    height = 800
[51717.515100][ctx 0x40000000]	  surface_color_standard = 8
[51717.515100][ctx 0x40000000]	  output_region
[51717.515100][ctx 0x40000000]	    x = 0
[51717.515100][ctx 0x40000000]	    y = 0
[51717.515101][ctx 0x40000000]	    width = 1280
[51717.515101][ctx 0x40000000]	    height = 800
[51717.515101][ctx 0x40000000]	  output_background_color = 0xff000000
[51717.515102][ctx 0x40000000]	  output_color_standard = 2
[51717.515102][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51717.515102][ctx 0x40000000]	  filter_flags = 0x00000000
[51717.515103][ctx 0x40000000]	  num_filters = 0
[51717.515103][ctx 0x40000000]	  filters = (nil)
[51717.515103][ctx 0x40000000]	  num_forward_references = 0x00000000
[51717.515104][ctx 0x40000000]	  num_backward_references = 0x00000000
[51717.515111][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515115][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515115][ctx 0x40000000]==========va_TraceEndPicture
[51717.515115][ctx 0x40000000]	context = 0x40000000
[51717.515116][ctx 0x40000000]	render_targets = 0x00000003
[51717.515212][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.515213][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.530854][ctx       none]==========va_TraceCreateSurfaces
[51717.530854][ctx       none]	width = 1280
[51717.530855][ctx       none]	height = 800
[51717.530855][ctx       none]	format = 131072
[51717.530855][ctx       none]	num_surfaces = 1
[51717.530855][ctx       none]		surfaces[0] = 0x00000000
[51717.530856][ctx       none]	attrib_list[0] =
[51717.530856][ctx       none]		type = 8
[51717.530856][ctx       none]		flags = 2
[51717.530857][ctx       none]		value.type = 1
[51717.530857][ctx       none]		value.value.i = 0x0000000c
[51717.530857][ctx       none]	attrib_list[1] =
[51717.530857][ctx       none]		type = 6
[51717.530858][ctx       none]		flags = 2
[51717.530858][ctx       none]		value.type = 1
[51717.530858][ctx       none]		value.value.i = 0x40000000
[51717.530858][ctx       none]	attrib_list[2] =
[51717.530859][ctx       none]		type = 1
[51717.530859][ctx       none]		flags = 2
[51717.530859][ctx       none]		value.type = 1
[51717.530859][ctx       none]		value.value.i = 0x52474241
[51717.530859][ctx       none]	attrib_list[3] =
[51717.530860][ctx       none]		type = 7
[51717.530860][ctx       none]		flags = 2
[51717.530860][ctx       none]		value.type = 3
[51717.530860][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51717.530861][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51717.530861][ctx       none]		  pixel_format=0x52474241
[51717.530861][ctx       none]		  width=1280
[51717.530861][ctx       none]		  height=800
[51717.530862][ctx       none]		  num_objects=0x00000001
[51717.530862][ctx       none]			objects[0].fd=71
[51717.530862][ctx       none]			objects[0].size=4194304
[51717.530862][ctx       none]			objects[0].drm_format_modifier=0
[51717.530863][ctx       none]		  num_layers=1
[51717.530863][ctx       none]			layers[0].drm_format=0x34324241
[51717.530863][ctx       none]			layers[0].num_planes=0x1
[51717.530864][ctx       none]				layers[0].object_index[0]=0x0
[51717.530864][ctx       none]				layers[0].offset[0]=0x0
[51717.530864][ctx       none]				layers[0].pitch[0]=0x5120
[51717.530864][ctx       none]				layers[0].object_index[1]=0x0
[51717.530865][ctx       none]				layers[0].offset[1]=0x0
[51717.530865][ctx       none]				layers[0].pitch[1]=0x0
[51717.530865][ctx       none]				layers[0].object_index[2]=0x0
[51717.530866][ctx       none]				layers[0].offset[2]=0x0
[51717.530866][ctx       none]				layers[0].pitch[2]=0x0
[51717.530866][ctx       none]				layers[0].object_index[3]=0x0
[51717.530866][ctx       none]				layers[0].offset[3]=0x0
[51717.530867][ctx       none]				layers[0].pitch[3]=0x0
[51717.530876][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51717.531062][ctx       none]==========va_TraceSyncSurface
[51717.531063][ctx       none]	render_target = 0x00000005
[51717.531065][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51717.531067][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.531067][ctx       none]	render_target = 0x00000005
[51717.531067][ctx       none]	status = 0x00000004
[51717.531069][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.531071][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.531074][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756147][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756149][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756218][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.756218][ctx       none]	render_target = 0x00000005
[51717.756219][ctx       none]	status = 0x00000004
[51717.756223][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756226][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.756226][ctx       none]	render_target = 0x00000004
[51717.756226][ctx       none]	status = 0x00000004
[51717.756228][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756229][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756232][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756233][ctx 0x40000000]==========va_TraceBeginPicture
[51717.756233][ctx 0x40000000]	context = 0x40000000
[51717.756234][ctx 0x40000000]	render_targets = 0x00000004
[51717.756234][ctx 0x40000000]	frame_count  = #37
[51717.756237][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756237][ctx 0x40000000]==========va_TraceRenderPicture
[51717.756238][ctx 0x40000000]	context = 0x40000000
[51717.756238][ctx 0x40000000]	num_buffers = 1
[51717.756239][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756239][ctx 0x40000000]	---------------------------
[51717.756239][ctx 0x40000000]	buffers[0] = 0x00000016
[51717.756240][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51717.756240][ctx 0x40000000]	  size = 224
[51717.756240][ctx 0x40000000]	  num_elements = 1
[51717.756241][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756241][ctx 0x40000000]	element[0] =
[51717.756242][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51717.756242][ctx 0x40000000]	  surface = 0x00000005
[51717.756243][ctx 0x40000000]	  surface_region
[51717.756243][ctx 0x40000000]	    x = 0
[51717.756243][ctx 0x40000000]	    y = 0
[51717.756243][ctx 0x40000000]	    width = 1280
[51717.756244][ctx 0x40000000]	    height = 800
[51717.756244][ctx 0x40000000]	  surface_color_standard = 8
[51717.756244][ctx 0x40000000]	  output_region
[51717.756244][ctx 0x40000000]	    x = 0
[51717.756245][ctx 0x40000000]	    y = 0
[51717.756245][ctx 0x40000000]	    width = 1280
[51717.756245][ctx 0x40000000]	    height = 800
[51717.756246][ctx 0x40000000]	  output_background_color = 0xff000000
[51717.756246][ctx 0x40000000]	  output_color_standard = 2
[51717.756246][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51717.756246][ctx 0x40000000]	  filter_flags = 0x00000000
[51717.756247][ctx 0x40000000]	  num_filters = 0
[51717.756247][ctx 0x40000000]	  filters = (nil)
[51717.756248][ctx 0x40000000]	  num_forward_references = 0x00000000
[51717.756248][ctx 0x40000000]	  num_backward_references = 0x00000000
[51717.756254][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756258][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756258][ctx 0x40000000]==========va_TraceEndPicture
[51717.756258][ctx 0x40000000]	context = 0x40000000
[51717.756259][ctx 0x40000000]	render_targets = 0x00000004
[51717.756357][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.756358][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.771766][ctx       none]==========va_TraceCreateSurfaces
[51717.771766][ctx       none]	width = 1280
[51717.771767][ctx       none]	height = 800
[51717.771767][ctx       none]	format = 131072
[51717.771767][ctx       none]	num_surfaces = 1
[51717.771767][ctx       none]		surfaces[0] = 0x00000000
[51717.771768][ctx       none]	attrib_list[0] =
[51717.771768][ctx       none]		type = 8
[51717.771768][ctx       none]		flags = 2
[51717.771769][ctx       none]		value.type = 1
[51717.771769][ctx       none]		value.value.i = 0x0000000c
[51717.771769][ctx       none]	attrib_list[1] =
[51717.771769][ctx       none]		type = 6
[51717.771769][ctx       none]		flags = 2
[51717.771770][ctx       none]		value.type = 1
[51717.771770][ctx       none]		value.value.i = 0x40000000
[51717.771770][ctx       none]	attrib_list[2] =
[51717.771770][ctx       none]		type = 1
[51717.771771][ctx       none]		flags = 2
[51717.771771][ctx       none]		value.type = 1
[51717.771771][ctx       none]		value.value.i = 0x52474241
[51717.771771][ctx       none]	attrib_list[3] =
[51717.771772][ctx       none]		type = 7
[51717.771772][ctx       none]		flags = 2
[51717.771772][ctx       none]		value.type = 3
[51717.771772][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51717.771772][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51717.771773][ctx       none]		  pixel_format=0x52474241
[51717.771773][ctx       none]		  width=1280
[51717.771773][ctx       none]		  height=800
[51717.771773][ctx       none]		  num_objects=0x00000001
[51717.771774][ctx       none]			objects[0].fd=71
[51717.771774][ctx       none]			objects[0].size=4194304
[51717.771774][ctx       none]			objects[0].drm_format_modifier=0
[51717.771775][ctx       none]		  num_layers=1
[51717.771775][ctx       none]			layers[0].drm_format=0x34324241
[51717.771775][ctx       none]			layers[0].num_planes=0x1
[51717.771775][ctx       none]				layers[0].object_index[0]=0x0
[51717.771776][ctx       none]				layers[0].offset[0]=0x0
[51717.771776][ctx       none]				layers[0].pitch[0]=0x5120
[51717.771776][ctx       none]				layers[0].object_index[1]=0x0
[51717.771777][ctx       none]				layers[0].offset[1]=0x0
[51717.771777][ctx       none]				layers[0].pitch[1]=0x0
[51717.771777][ctx       none]				layers[0].object_index[2]=0x0
[51717.771778][ctx       none]				layers[0].offset[2]=0x0
[51717.771778][ctx       none]				layers[0].pitch[2]=0x0
[51717.771778][ctx       none]				layers[0].object_index[3]=0x0
[51717.771778][ctx       none]				layers[0].offset[3]=0x0
[51717.771779][ctx       none]				layers[0].pitch[3]=0x0
[51717.771784][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51717.771970][ctx       none]==========va_TraceSyncSurface
[51717.771970][ctx       none]	render_target = 0x00000005
[51717.771977][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51717.771979][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.771979][ctx       none]	render_target = 0x00000005
[51717.771979][ctx       none]	status = 0x00000004
[51717.771981][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.771983][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.771985][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997050][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997052][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997117][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.997118][ctx       none]	render_target = 0x00000005
[51717.997118][ctx       none]	status = 0x00000004
[51717.997122][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997125][ctx       none]==========va_TraceQuerySurfaceStatus
[51717.997125][ctx       none]	render_target = 0x00000003
[51717.997125][ctx       none]	status = 0x00000004
[51717.997127][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997128][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997130][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997131][ctx 0x40000000]==========va_TraceBeginPicture
[51717.997131][ctx 0x40000000]	context = 0x40000000
[51717.997132][ctx 0x40000000]	render_targets = 0x00000003
[51717.997132][ctx 0x40000000]	frame_count  = #38
[51717.997135][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997135][ctx 0x40000000]==========va_TraceRenderPicture
[51717.997136][ctx 0x40000000]	context = 0x40000000
[51717.997136][ctx 0x40000000]	num_buffers = 1
[51717.997137][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997137][ctx 0x40000000]	---------------------------
[51717.997137][ctx 0x40000000]	buffers[0] = 0x00000016
[51717.997138][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51717.997138][ctx 0x40000000]	  size = 224
[51717.997138][ctx 0x40000000]	  num_elements = 1
[51717.997139][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997139][ctx 0x40000000]	element[0] =
[51717.997140][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51717.997140][ctx 0x40000000]	  surface = 0x00000005
[51717.997140][ctx 0x40000000]	  surface_region
[51717.997141][ctx 0x40000000]	    x = 0
[51717.997141][ctx 0x40000000]	    y = 0
[51717.997141][ctx 0x40000000]	    width = 1280
[51717.997141][ctx 0x40000000]	    height = 800
[51717.997142][ctx 0x40000000]	  surface_color_standard = 8
[51717.997142][ctx 0x40000000]	  output_region
[51717.997142][ctx 0x40000000]	    x = 0
[51717.997143][ctx 0x40000000]	    y = 0
[51717.997143][ctx 0x40000000]	    width = 1280
[51717.997143][ctx 0x40000000]	    height = 800
[51717.997143][ctx 0x40000000]	  output_background_color = 0xff000000
[51717.997144][ctx 0x40000000]	  output_color_standard = 2
[51717.997144][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51717.997144][ctx 0x40000000]	  filter_flags = 0x00000000
[51717.997145][ctx 0x40000000]	  num_filters = 0
[51717.997145][ctx 0x40000000]	  filters = (nil)
[51717.997145][ctx 0x40000000]	  num_forward_references = 0x00000000
[51717.997146][ctx 0x40000000]	  num_backward_references = 0x00000000
[51717.997148][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997151][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997152][ctx 0x40000000]==========va_TraceEndPicture
[51717.997152][ctx 0x40000000]	context = 0x40000000
[51717.997152][ctx 0x40000000]	render_targets = 0x00000003
[51717.997249][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51717.997250][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.012775][ctx       none]==========va_TraceCreateSurfaces
[51718.012776][ctx       none]	width = 1280
[51718.012776][ctx       none]	height = 800
[51718.012776][ctx       none]	format = 131072
[51718.012776][ctx       none]	num_surfaces = 1
[51718.012777][ctx       none]		surfaces[0] = 0x00000000
[51718.012777][ctx       none]	attrib_list[0] =
[51718.012777][ctx       none]		type = 8
[51718.012778][ctx       none]		flags = 2
[51718.012778][ctx       none]		value.type = 1
[51718.012778][ctx       none]		value.value.i = 0x0000000c
[51718.012778][ctx       none]	attrib_list[1] =
[51718.012779][ctx       none]		type = 6
[51718.012779][ctx       none]		flags = 2
[51718.012779][ctx       none]		value.type = 1
[51718.012779][ctx       none]		value.value.i = 0x40000000
[51718.012780][ctx       none]	attrib_list[2] =
[51718.012780][ctx       none]		type = 1
[51718.012780][ctx       none]		flags = 2
[51718.012780][ctx       none]		value.type = 1
[51718.012781][ctx       none]		value.value.i = 0x52474241
[51718.012781][ctx       none]	attrib_list[3] =
[51718.012781][ctx       none]		type = 7
[51718.012781][ctx       none]		flags = 2
[51718.012782][ctx       none]		value.type = 3
[51718.012782][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51718.012782][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51718.012782][ctx       none]		  pixel_format=0x52474241
[51718.012783][ctx       none]		  width=1280
[51718.012783][ctx       none]		  height=800
[51718.012783][ctx       none]		  num_objects=0x00000001
[51718.012783][ctx       none]			objects[0].fd=71
[51718.012784][ctx       none]			objects[0].size=4194304
[51718.012784][ctx       none]			objects[0].drm_format_modifier=0
[51718.012784][ctx       none]		  num_layers=1
[51718.012785][ctx       none]			layers[0].drm_format=0x34324241
[51718.012785][ctx       none]			layers[0].num_planes=0x1
[51718.012785][ctx       none]				layers[0].object_index[0]=0x0
[51718.012786][ctx       none]				layers[0].offset[0]=0x0
[51718.012786][ctx       none]				layers[0].pitch[0]=0x5120
[51718.012786][ctx       none]				layers[0].object_index[1]=0x0
[51718.012786][ctx       none]				layers[0].offset[1]=0x0
[51718.012787][ctx       none]				layers[0].pitch[1]=0x0
[51718.012787][ctx       none]				layers[0].object_index[2]=0x0
[51718.012787][ctx       none]				layers[0].offset[2]=0x0
[51718.012788][ctx       none]				layers[0].pitch[2]=0x0
[51718.012788][ctx       none]				layers[0].object_index[3]=0x0
[51718.012788][ctx       none]				layers[0].offset[3]=0x0
[51718.012789][ctx       none]				layers[0].pitch[3]=0x0
[51718.012799][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51718.012987][ctx       none]==========va_TraceSyncSurface
[51718.012987][ctx       none]	render_target = 0x00000005
[51718.012990][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51718.012992][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.012992][ctx       none]	render_target = 0x00000005
[51718.012992][ctx       none]	status = 0x00000004
[51718.012994][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.012996][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.012999][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238075][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238076][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238507][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.238507][ctx       none]	render_target = 0x00000005
[51718.238507][ctx       none]	status = 0x00000004
[51718.238511][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238514][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.238514][ctx       none]	render_target = 0x00000004
[51718.238514][ctx       none]	status = 0x00000004
[51718.238520][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238521][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238524][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238525][ctx 0x40000000]==========va_TraceBeginPicture
[51718.238525][ctx 0x40000000]	context = 0x40000000
[51718.238525][ctx 0x40000000]	render_targets = 0x00000004
[51718.238526][ctx 0x40000000]	frame_count  = #39
[51718.238529][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238529][ctx 0x40000000]==========va_TraceRenderPicture
[51718.238530][ctx 0x40000000]	context = 0x40000000
[51718.238530][ctx 0x40000000]	num_buffers = 1
[51718.238530][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238531][ctx 0x40000000]	---------------------------
[51718.238531][ctx 0x40000000]	buffers[0] = 0x00000016
[51718.238531][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51718.238532][ctx 0x40000000]	  size = 224
[51718.238532][ctx 0x40000000]	  num_elements = 1
[51718.238532][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238533][ctx 0x40000000]	element[0] =
[51718.238533][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51718.238534][ctx 0x40000000]	  surface = 0x00000005
[51718.238534][ctx 0x40000000]	  surface_region
[51718.238534][ctx 0x40000000]	    x = 0
[51718.238535][ctx 0x40000000]	    y = 0
[51718.238535][ctx 0x40000000]	    width = 1280
[51718.238535][ctx 0x40000000]	    height = 800
[51718.238535][ctx 0x40000000]	  surface_color_standard = 8
[51718.238536][ctx 0x40000000]	  output_region
[51718.238536][ctx 0x40000000]	    x = 0
[51718.238536][ctx 0x40000000]	    y = 0
[51718.238537][ctx 0x40000000]	    width = 1280
[51718.238537][ctx 0x40000000]	    height = 800
[51718.238537][ctx 0x40000000]	  output_background_color = 0xff000000
[51718.238537][ctx 0x40000000]	  output_color_standard = 2
[51718.238538][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51718.238538][ctx 0x40000000]	  filter_flags = 0x00000000
[51718.238538][ctx 0x40000000]	  num_filters = 0
[51718.238539][ctx 0x40000000]	  filters = (nil)
[51718.238539][ctx 0x40000000]	  num_forward_references = 0x00000000
[51718.238539][ctx 0x40000000]	  num_backward_references = 0x00000000
[51718.238541][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238545][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238545][ctx 0x40000000]==========va_TraceEndPicture
[51718.238546][ctx 0x40000000]	context = 0x40000000
[51718.238546][ctx 0x40000000]	render_targets = 0x00000004
[51718.238642][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.238644][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.253716][ctx       none]==========va_TraceCreateSurfaces
[51718.253716][ctx       none]	width = 1280
[51718.253717][ctx       none]	height = 800
[51718.253717][ctx       none]	format = 131072
[51718.253717][ctx       none]	num_surfaces = 1
[51718.253717][ctx       none]		surfaces[0] = 0x00000000
[51718.253718][ctx       none]	attrib_list[0] =
[51718.253718][ctx       none]		type = 8
[51718.253718][ctx       none]		flags = 2
[51718.253718][ctx       none]		value.type = 1
[51718.253719][ctx       none]		value.value.i = 0x0000000c
[51718.253719][ctx       none]	attrib_list[1] =
[51718.253719][ctx       none]		type = 6
[51718.253719][ctx       none]		flags = 2
[51718.253720][ctx       none]		value.type = 1
[51718.253720][ctx       none]		value.value.i = 0x40000000
[51718.253720][ctx       none]	attrib_list[2] =
[51718.253720][ctx       none]		type = 1
[51718.253721][ctx       none]		flags = 2
[51718.253721][ctx       none]		value.type = 1
[51718.253721][ctx       none]		value.value.i = 0x52474241
[51718.253721][ctx       none]	attrib_list[3] =
[51718.253721][ctx       none]		type = 7
[51718.253722][ctx       none]		flags = 2
[51718.253722][ctx       none]		value.type = 3
[51718.253722][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51718.253722][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51718.253723][ctx       none]		  pixel_format=0x52474241
[51718.253723][ctx       none]		  width=1280
[51718.253723][ctx       none]		  height=800
[51718.253723][ctx       none]		  num_objects=0x00000001
[51718.253724][ctx       none]			objects[0].fd=71
[51718.253724][ctx       none]			objects[0].size=4194304
[51718.253724][ctx       none]			objects[0].drm_format_modifier=0
[51718.253725][ctx       none]		  num_layers=1
[51718.253725][ctx       none]			layers[0].drm_format=0x34324241
[51718.253725][ctx       none]			layers[0].num_planes=0x1
[51718.253725][ctx       none]				layers[0].object_index[0]=0x0
[51718.253726][ctx       none]				layers[0].offset[0]=0x0
[51718.253726][ctx       none]				layers[0].pitch[0]=0x5120
[51718.253726][ctx       none]				layers[0].object_index[1]=0x0
[51718.253727][ctx       none]				layers[0].offset[1]=0x0
[51718.253727][ctx       none]				layers[0].pitch[1]=0x0
[51718.253727][ctx       none]				layers[0].object_index[2]=0x0
[51718.253727][ctx       none]				layers[0].offset[2]=0x0
[51718.253728][ctx       none]				layers[0].pitch[2]=0x0
[51718.253728][ctx       none]				layers[0].object_index[3]=0x0
[51718.253728][ctx       none]				layers[0].offset[3]=0x0
[51718.253729][ctx       none]				layers[0].pitch[3]=0x0
[51718.253737][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51718.253762][ctx       none]==========va_TraceSyncSurface
[51718.253762][ctx       none]	render_target = 0x00000005
[51718.253764][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51718.253766][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.253766][ctx       none]	render_target = 0x00000005
[51718.253766][ctx       none]	status = 0x00000004
[51718.253768][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.253770][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.253772][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51718.478752][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.478754][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479130][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.479131][ctx       none]	render_target = 0x00000005
[51718.479131][ctx       none]	status = 0x00000004
[51718.479135][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479137][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.479138][ctx       none]	render_target = 0x00000003
[51718.479138][ctx       none]	status = 0x00000004
[51718.479140][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479141][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479142][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479143][ctx 0x40000000]==========va_TraceBeginPicture
[51718.479143][ctx 0x40000000]	context = 0x40000000
[51718.479144][ctx 0x40000000]	render_targets = 0x00000003
[51718.479144][ctx 0x40000000]	frame_count  = #40
[51718.479147][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479147][ctx 0x40000000]==========va_TraceRenderPicture
[51718.479148][ctx 0x40000000]	context = 0x40000000
[51718.479148][ctx 0x40000000]	num_buffers = 1
[51718.479148][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479149][ctx 0x40000000]	---------------------------
[51718.479149][ctx 0x40000000]	buffers[0] = 0x00000016
[51718.479149][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51718.479150][ctx 0x40000000]	  size = 224
[51718.479150][ctx 0x40000000]	  num_elements = 1
[51718.479151][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479151][ctx 0x40000000]	element[0] =
[51718.479152][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51718.479152][ctx 0x40000000]	  surface = 0x00000005
[51718.479152][ctx 0x40000000]	  surface_region
[51718.479152][ctx 0x40000000]	    x = 0
[51718.479153][ctx 0x40000000]	    y = 0
[51718.479153][ctx 0x40000000]	    width = 1280
[51718.479153][ctx 0x40000000]	    height = 800
[51718.479154][ctx 0x40000000]	  surface_color_standard = 8
[51718.479154][ctx 0x40000000]	  output_region
[51718.479154][ctx 0x40000000]	    x = 0
[51718.479154][ctx 0x40000000]	    y = 0
[51718.479155][ctx 0x40000000]	    width = 1280
[51718.479155][ctx 0x40000000]	    height = 800
[51718.479155][ctx 0x40000000]	  output_background_color = 0xff000000
[51718.479156][ctx 0x40000000]	  output_color_standard = 2
[51718.479156][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51718.479156][ctx 0x40000000]	  filter_flags = 0x00000000
[51718.479157][ctx 0x40000000]	  num_filters = 0
[51718.479157][ctx 0x40000000]	  filters = (nil)
[51718.479157][ctx 0x40000000]	  num_forward_references = 0x00000000
[51718.479158][ctx 0x40000000]	  num_backward_references = 0x00000000
[51718.479163][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479167][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479167][ctx 0x40000000]==========va_TraceEndPicture
[51718.479168][ctx 0x40000000]	context = 0x40000000
[51718.479168][ctx 0x40000000]	render_targets = 0x00000003
[51718.479265][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.479266][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.494738][ctx       none]==========va_TraceCreateSurfaces
[51718.494739][ctx       none]	width = 1280
[51718.494739][ctx       none]	height = 800
[51718.494739][ctx       none]	format = 131072
[51718.494739][ctx       none]	num_surfaces = 1
[51718.494740][ctx       none]		surfaces[0] = 0x00000000
[51718.494740][ctx       none]	attrib_list[0] =
[51718.494740][ctx       none]		type = 8
[51718.494741][ctx       none]		flags = 2
[51718.494741][ctx       none]		value.type = 1
[51718.494741][ctx       none]		value.value.i = 0x0000000c
[51718.494741][ctx       none]	attrib_list[1] =
[51718.494742][ctx       none]		type = 6
[51718.494742][ctx       none]		flags = 2
[51718.494742][ctx       none]		value.type = 1
[51718.494742][ctx       none]		value.value.i = 0x40000000
[51718.494742][ctx       none]	attrib_list[2] =
[51718.494743][ctx       none]		type = 1
[51718.494743][ctx       none]		flags = 2
[51718.494743][ctx       none]		value.type = 1
[51718.494743][ctx       none]		value.value.i = 0x52474241
[51718.494744][ctx       none]	attrib_list[3] =
[51718.494744][ctx       none]		type = 7
[51718.494744][ctx       none]		flags = 2
[51718.494744][ctx       none]		value.type = 3
[51718.494744][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51718.494745][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51718.494745][ctx       none]		  pixel_format=0x52474241
[51718.494745][ctx       none]		  width=1280
[51718.494745][ctx       none]		  height=800
[51718.494746][ctx       none]		  num_objects=0x00000001
[51718.494746][ctx       none]			objects[0].fd=71
[51718.494746][ctx       none]			objects[0].size=4194304
[51718.494747][ctx       none]			objects[0].drm_format_modifier=0
[51718.494747][ctx       none]		  num_layers=1
[51718.494747][ctx       none]			layers[0].drm_format=0x34324241
[51718.494747][ctx       none]			layers[0].num_planes=0x1
[51718.494748][ctx       none]				layers[0].object_index[0]=0x0
[51718.494748][ctx       none]				layers[0].offset[0]=0x0
[51718.494748][ctx       none]				layers[0].pitch[0]=0x5120
[51718.494749][ctx       none]				layers[0].object_index[1]=0x0
[51718.494749][ctx       none]				layers[0].offset[1]=0x0
[51718.494749][ctx       none]				layers[0].pitch[1]=0x0
[51718.494749][ctx       none]				layers[0].object_index[2]=0x0
[51718.494750][ctx       none]				layers[0].offset[2]=0x0
[51718.494750][ctx       none]				layers[0].pitch[2]=0x0
[51718.494750][ctx       none]				layers[0].object_index[3]=0x0
[51718.494751][ctx       none]				layers[0].offset[3]=0x0
[51718.494751][ctx       none]				layers[0].pitch[3]=0x0
[51718.494760][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51718.494788][ctx       none]==========va_TraceSyncSurface
[51718.494788][ctx       none]	render_target = 0x00000005
[51718.494791][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51718.494792][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.494792][ctx       none]	render_target = 0x00000005
[51718.494792][ctx       none]	status = 0x00000004
[51718.494794][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.494796][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.494798][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51718.719862][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.719864][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720376][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.720376][ctx       none]	render_target = 0x00000005
[51718.720377][ctx       none]	status = 0x00000004
[51718.720383][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720385][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.720385][ctx       none]	render_target = 0x00000004
[51718.720385][ctx       none]	status = 0x00000004
[51718.720387][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720388][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720390][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720391][ctx 0x40000000]==========va_TraceBeginPicture
[51718.720391][ctx 0x40000000]	context = 0x40000000
[51718.720391][ctx 0x40000000]	render_targets = 0x00000004
[51718.720392][ctx 0x40000000]	frame_count  = #41
[51718.720395][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720395][ctx 0x40000000]==========va_TraceRenderPicture
[51718.720395][ctx 0x40000000]	context = 0x40000000
[51718.720396][ctx 0x40000000]	num_buffers = 1
[51718.720396][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720397][ctx 0x40000000]	---------------------------
[51718.720397][ctx 0x40000000]	buffers[0] = 0x00000016
[51718.720397][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51718.720398][ctx 0x40000000]	  size = 224
[51718.720398][ctx 0x40000000]	  num_elements = 1
[51718.720398][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720399][ctx 0x40000000]	element[0] =
[51718.720399][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51718.720400][ctx 0x40000000]	  surface = 0x00000005
[51718.720400][ctx 0x40000000]	  surface_region
[51718.720400][ctx 0x40000000]	    x = 0
[51718.720401][ctx 0x40000000]	    y = 0
[51718.720401][ctx 0x40000000]	    width = 1280
[51718.720401][ctx 0x40000000]	    height = 800
[51718.720401][ctx 0x40000000]	  surface_color_standard = 8
[51718.720402][ctx 0x40000000]	  output_region
[51718.720402][ctx 0x40000000]	    x = 0
[51718.720402][ctx 0x40000000]	    y = 0
[51718.720403][ctx 0x40000000]	    width = 1280
[51718.720403][ctx 0x40000000]	    height = 800
[51718.720403][ctx 0x40000000]	  output_background_color = 0xff000000
[51718.720403][ctx 0x40000000]	  output_color_standard = 2
[51718.720404][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51718.720404][ctx 0x40000000]	  filter_flags = 0x00000000
[51718.720405][ctx 0x40000000]	  num_filters = 0
[51718.720405][ctx 0x40000000]	  filters = (nil)
[51718.720405][ctx 0x40000000]	  num_forward_references = 0x00000000
[51718.720406][ctx 0x40000000]	  num_backward_references = 0x00000000
[51718.720413][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720417][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720417][ctx 0x40000000]==========va_TraceEndPicture
[51718.720418][ctx 0x40000000]	context = 0x40000000
[51718.720418][ctx 0x40000000]	render_targets = 0x00000004
[51718.720515][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.720517][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.735684][ctx       none]==========va_TraceCreateSurfaces
[51718.735685][ctx       none]	width = 1280
[51718.735685][ctx       none]	height = 800
[51718.735685][ctx       none]	format = 131072
[51718.735685][ctx       none]	num_surfaces = 1
[51718.735686][ctx       none]		surfaces[0] = 0x00000000
[51718.735686][ctx       none]	attrib_list[0] =
[51718.735686][ctx       none]		type = 8
[51718.735687][ctx       none]		flags = 2
[51718.735687][ctx       none]		value.type = 1
[51718.735687][ctx       none]		value.value.i = 0x0000000c
[51718.735687][ctx       none]	attrib_list[1] =
[51718.735688][ctx       none]		type = 6
[51718.735688][ctx       none]		flags = 2
[51718.735688][ctx       none]		value.type = 1
[51718.735688][ctx       none]		value.value.i = 0x40000000
[51718.735688][ctx       none]	attrib_list[2] =
[51718.735689][ctx       none]		type = 1
[51718.735689][ctx       none]		flags = 2
[51718.735689][ctx       none]		value.type = 1
[51718.735689][ctx       none]		value.value.i = 0x52474241
[51718.735690][ctx       none]	attrib_list[3] =
[51718.735690][ctx       none]		type = 7
[51718.735690][ctx       none]		flags = 2
[51718.735690][ctx       none]		value.type = 3
[51718.735690][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51718.735691][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51718.735691][ctx       none]		  pixel_format=0x52474241
[51718.735691][ctx       none]		  width=1280
[51718.735692][ctx       none]		  height=800
[51718.735692][ctx       none]		  num_objects=0x00000001
[51718.735692][ctx       none]			objects[0].fd=71
[51718.735692][ctx       none]			objects[0].size=4194304
[51718.735693][ctx       none]			objects[0].drm_format_modifier=0
[51718.735693][ctx       none]		  num_layers=1
[51718.735693][ctx       none]			layers[0].drm_format=0x34324241
[51718.735693][ctx       none]			layers[0].num_planes=0x1
[51718.735694][ctx       none]				layers[0].object_index[0]=0x0
[51718.735694][ctx       none]				layers[0].offset[0]=0x0
[51718.735694][ctx       none]				layers[0].pitch[0]=0x5120
[51718.735695][ctx       none]				layers[0].object_index[1]=0x0
[51718.735695][ctx       none]				layers[0].offset[1]=0x0
[51718.735695][ctx       none]				layers[0].pitch[1]=0x0
[51718.735696][ctx       none]				layers[0].object_index[2]=0x0
[51718.735696][ctx       none]				layers[0].offset[2]=0x0
[51718.735696][ctx       none]				layers[0].pitch[2]=0x0
[51718.735696][ctx       none]				layers[0].object_index[3]=0x0
[51718.735697][ctx       none]				layers[0].offset[3]=0x0
[51718.735697][ctx       none]				layers[0].pitch[3]=0x0
[51718.735702][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51718.735726][ctx       none]==========va_TraceSyncSurface
[51718.735727][ctx       none]	render_target = 0x00000005
[51718.735729][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51718.735730][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.735731][ctx       none]	render_target = 0x00000005
[51718.735731][ctx       none]	status = 0x00000004
[51718.735733][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.735735][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.735737][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960804][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960806][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960857][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.960857][ctx       none]	render_target = 0x00000005
[51718.960858][ctx       none]	status = 0x00000004
[51718.960866][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960869][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.960869][ctx       none]	render_target = 0x00000003
[51718.960869][ctx       none]	status = 0x00000004
[51718.960871][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960872][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960874][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960874][ctx 0x40000000]==========va_TraceBeginPicture
[51718.960875][ctx 0x40000000]	context = 0x40000000
[51718.960875][ctx 0x40000000]	render_targets = 0x00000003
[51718.960875][ctx 0x40000000]	frame_count  = #42
[51718.960878][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960879][ctx 0x40000000]==========va_TraceRenderPicture
[51718.960879][ctx 0x40000000]	context = 0x40000000
[51718.960879][ctx 0x40000000]	num_buffers = 1
[51718.960880][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960880][ctx 0x40000000]	---------------------------
[51718.960880][ctx 0x40000000]	buffers[0] = 0x00000016
[51718.960881][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51718.960881][ctx 0x40000000]	  size = 224
[51718.960881][ctx 0x40000000]	  num_elements = 1
[51718.960882][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960882][ctx 0x40000000]	element[0] =
[51718.960883][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51718.960883][ctx 0x40000000]	  surface = 0x00000005
[51718.960884][ctx 0x40000000]	  surface_region
[51718.960884][ctx 0x40000000]	    x = 0
[51718.960884][ctx 0x40000000]	    y = 0
[51718.960884][ctx 0x40000000]	    width = 1280
[51718.960885][ctx 0x40000000]	    height = 800
[51718.960885][ctx 0x40000000]	  surface_color_standard = 8
[51718.960885][ctx 0x40000000]	  output_region
[51718.960886][ctx 0x40000000]	    x = 0
[51718.960886][ctx 0x40000000]	    y = 0
[51718.960886][ctx 0x40000000]	    width = 1280
[51718.960886][ctx 0x40000000]	    height = 800
[51718.960887][ctx 0x40000000]	  output_background_color = 0xff000000
[51718.960887][ctx 0x40000000]	  output_color_standard = 2
[51718.960887][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51718.960888][ctx 0x40000000]	  filter_flags = 0x00000000
[51718.960888][ctx 0x40000000]	  num_filters = 0
[51718.960888][ctx 0x40000000]	  filters = (nil)
[51718.960889][ctx 0x40000000]	  num_forward_references = 0x00000000
[51718.960889][ctx 0x40000000]	  num_backward_references = 0x00000000
[51718.960891][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960894][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960895][ctx 0x40000000]==========va_TraceEndPicture
[51718.960895][ctx 0x40000000]	context = 0x40000000
[51718.960895][ctx 0x40000000]	render_targets = 0x00000003
[51718.960991][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51718.960992][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51718.976748][ctx       none]==========va_TraceCreateSurfaces
[51718.976748][ctx       none]	width = 1280
[51718.976749][ctx       none]	height = 800
[51718.976749][ctx       none]	format = 131072
[51718.976749][ctx       none]	num_surfaces = 1
[51718.976749][ctx       none]		surfaces[0] = 0x00000000
[51718.976750][ctx       none]	attrib_list[0] =
[51718.976750][ctx       none]		type = 8
[51718.976750][ctx       none]		flags = 2
[51718.976751][ctx       none]		value.type = 1
[51718.976751][ctx       none]		value.value.i = 0x0000000c
[51718.976751][ctx       none]	attrib_list[1] =
[51718.976751][ctx       none]		type = 6
[51718.976752][ctx       none]		flags = 2
[51718.976752][ctx       none]		value.type = 1
[51718.976752][ctx       none]		value.value.i = 0x40000000
[51718.976752][ctx       none]	attrib_list[2] =
[51718.976752][ctx       none]		type = 1
[51718.976753][ctx       none]		flags = 2
[51718.976753][ctx       none]		value.type = 1
[51718.976753][ctx       none]		value.value.i = 0x52474241
[51718.976753][ctx       none]	attrib_list[3] =
[51718.976754][ctx       none]		type = 7
[51718.976754][ctx       none]		flags = 2
[51718.976754][ctx       none]		value.type = 3
[51718.976754][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51718.976754][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51718.976755][ctx       none]		  pixel_format=0x52474241
[51718.976755][ctx       none]		  width=1280
[51718.976755][ctx       none]		  height=800
[51718.976755][ctx       none]		  num_objects=0x00000001
[51718.976756][ctx       none]			objects[0].fd=71
[51718.976756][ctx       none]			objects[0].size=4194304
[51718.976756][ctx       none]			objects[0].drm_format_modifier=0
[51718.976757][ctx       none]		  num_layers=1
[51718.976757][ctx       none]			layers[0].drm_format=0x34324241
[51718.976757][ctx       none]			layers[0].num_planes=0x1
[51718.976757][ctx       none]				layers[0].object_index[0]=0x0
[51718.976758][ctx       none]				layers[0].offset[0]=0x0
[51718.976758][ctx       none]				layers[0].pitch[0]=0x5120
[51718.976758][ctx       none]				layers[0].object_index[1]=0x0
[51718.976759][ctx       none]				layers[0].offset[1]=0x0
[51718.976759][ctx       none]				layers[0].pitch[1]=0x0
[51718.976759][ctx       none]				layers[0].object_index[2]=0x0
[51718.976759][ctx       none]				layers[0].offset[2]=0x0
[51718.976760][ctx       none]				layers[0].pitch[2]=0x0
[51718.976760][ctx       none]				layers[0].object_index[3]=0x0
[51718.976760][ctx       none]				layers[0].offset[3]=0x0
[51718.976761][ctx       none]				layers[0].pitch[3]=0x0
[51718.976770][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51718.976796][ctx       none]==========va_TraceSyncSurface
[51718.976796][ctx       none]	render_target = 0x00000005
[51718.976799][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51718.976800][ctx       none]==========va_TraceQuerySurfaceStatus
[51718.976800][ctx       none]	render_target = 0x00000005
[51718.976801][ctx       none]	status = 0x00000004
[51718.976802][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51718.976804][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51718.976807][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51719.201877][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.201878][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202333][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.202333][ctx       none]	render_target = 0x00000005
[51719.202333][ctx       none]	status = 0x00000004
[51719.202340][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202342][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.202343][ctx       none]	render_target = 0x00000004
[51719.202343][ctx       none]	status = 0x00000004
[51719.202345][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202346][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202347][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202348][ctx 0x40000000]==========va_TraceBeginPicture
[51719.202349][ctx 0x40000000]	context = 0x40000000
[51719.202349][ctx 0x40000000]	render_targets = 0x00000004
[51719.202349][ctx 0x40000000]	frame_count  = #43
[51719.202356][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202356][ctx 0x40000000]==========va_TraceRenderPicture
[51719.202357][ctx 0x40000000]	context = 0x40000000
[51719.202357][ctx 0x40000000]	num_buffers = 1
[51719.202358][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202358][ctx 0x40000000]	---------------------------
[51719.202358][ctx 0x40000000]	buffers[0] = 0x00000016
[51719.202358][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51719.202359][ctx 0x40000000]	  size = 224
[51719.202359][ctx 0x40000000]	  num_elements = 1
[51719.202360][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202360][ctx 0x40000000]	element[0] =
[51719.202361][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51719.202361][ctx 0x40000000]	  surface = 0x00000005
[51719.202361][ctx 0x40000000]	  surface_region
[51719.202362][ctx 0x40000000]	    x = 0
[51719.202362][ctx 0x40000000]	    y = 0
[51719.202362][ctx 0x40000000]	    width = 1280
[51719.202362][ctx 0x40000000]	    height = 800
[51719.202363][ctx 0x40000000]	  surface_color_standard = 8
[51719.202363][ctx 0x40000000]	  output_region
[51719.202363][ctx 0x40000000]	    x = 0
[51719.202364][ctx 0x40000000]	    y = 0
[51719.202364][ctx 0x40000000]	    width = 1280
[51719.202364][ctx 0x40000000]	    height = 800
[51719.202364][ctx 0x40000000]	  output_background_color = 0xff000000
[51719.202365][ctx 0x40000000]	  output_color_standard = 2
[51719.202365][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51719.202365][ctx 0x40000000]	  filter_flags = 0x00000000
[51719.202366][ctx 0x40000000]	  num_filters = 0
[51719.202366][ctx 0x40000000]	  filters = (nil)
[51719.202366][ctx 0x40000000]	  num_forward_references = 0x00000000
[51719.202367][ctx 0x40000000]	  num_backward_references = 0x00000000
[51719.202369][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202372][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202373][ctx 0x40000000]==========va_TraceEndPicture
[51719.202373][ctx 0x40000000]	context = 0x40000000
[51719.202373][ctx 0x40000000]	render_targets = 0x00000004
[51719.202470][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.202471][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.217686][ctx       none]==========va_TraceCreateSurfaces
[51719.217687][ctx       none]	width = 1280
[51719.217687][ctx       none]	height = 800
[51719.217687][ctx       none]	format = 131072
[51719.217688][ctx       none]	num_surfaces = 1
[51719.217688][ctx       none]		surfaces[0] = 0x00000000
[51719.217688][ctx       none]	attrib_list[0] =
[51719.217688][ctx       none]		type = 8
[51719.217689][ctx       none]		flags = 2
[51719.217689][ctx       none]		value.type = 1
[51719.217689][ctx       none]		value.value.i = 0x0000000c
[51719.217689][ctx       none]	attrib_list[1] =
[51719.217690][ctx       none]		type = 6
[51719.217690][ctx       none]		flags = 2
[51719.217690][ctx       none]		value.type = 1
[51719.217690][ctx       none]		value.value.i = 0x40000000
[51719.217691][ctx       none]	attrib_list[2] =
[51719.217691][ctx       none]		type = 1
[51719.217691][ctx       none]		flags = 2
[51719.217691][ctx       none]		value.type = 1
[51719.217691][ctx       none]		value.value.i = 0x52474241
[51719.217692][ctx       none]	attrib_list[3] =
[51719.217692][ctx       none]		type = 7
[51719.217692][ctx       none]		flags = 2
[51719.217692][ctx       none]		value.type = 3
[51719.217693][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51719.217693][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51719.217693][ctx       none]		  pixel_format=0x52474241
[51719.217693][ctx       none]		  width=1280
[51719.217694][ctx       none]		  height=800
[51719.217694][ctx       none]		  num_objects=0x00000001
[51719.217694][ctx       none]			objects[0].fd=71
[51719.217694][ctx       none]			objects[0].size=4194304
[51719.217695][ctx       none]			objects[0].drm_format_modifier=0
[51719.217695][ctx       none]		  num_layers=1
[51719.217695][ctx       none]			layers[0].drm_format=0x34324241
[51719.217696][ctx       none]			layers[0].num_planes=0x1
[51719.217696][ctx       none]				layers[0].object_index[0]=0x0
[51719.217696][ctx       none]				layers[0].offset[0]=0x0
[51719.217696][ctx       none]				layers[0].pitch[0]=0x5120
[51719.217697][ctx       none]				layers[0].object_index[1]=0x0
[51719.217697][ctx       none]				layers[0].offset[1]=0x0
[51719.217697][ctx       none]				layers[0].pitch[1]=0x0
[51719.217698][ctx       none]				layers[0].object_index[2]=0x0
[51719.217698][ctx       none]				layers[0].offset[2]=0x0
[51719.217698][ctx       none]				layers[0].pitch[2]=0x0
[51719.217698][ctx       none]				layers[0].object_index[3]=0x0
[51719.217699][ctx       none]				layers[0].offset[3]=0x0
[51719.217699][ctx       none]				layers[0].pitch[3]=0x0
[51719.217708][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51719.217732][ctx       none]==========va_TraceSyncSurface
[51719.217732][ctx       none]	render_target = 0x00000005
[51719.217735][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51719.217736][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.217736][ctx       none]	render_target = 0x00000005
[51719.217736][ctx       none]	status = 0x00000004
[51719.217738][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.217740][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.217742][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51719.442756][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.442757][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443134][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.443135][ctx       none]	render_target = 0x00000005
[51719.443135][ctx       none]	status = 0x00000004
[51719.443139][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443141][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.443142][ctx       none]	render_target = 0x00000003
[51719.443142][ctx       none]	status = 0x00000004
[51719.443144][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443145][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443146][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443147][ctx 0x40000000]==========va_TraceBeginPicture
[51719.443147][ctx 0x40000000]	context = 0x40000000
[51719.443148][ctx 0x40000000]	render_targets = 0x00000003
[51719.443148][ctx 0x40000000]	frame_count  = #44
[51719.443151][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443151][ctx 0x40000000]==========va_TraceRenderPicture
[51719.443152][ctx 0x40000000]	context = 0x40000000
[51719.443152][ctx 0x40000000]	num_buffers = 1
[51719.443152][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443153][ctx 0x40000000]	---------------------------
[51719.443153][ctx 0x40000000]	buffers[0] = 0x00000016
[51719.443153][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51719.443154][ctx 0x40000000]	  size = 224
[51719.443154][ctx 0x40000000]	  num_elements = 1
[51719.443155][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443155][ctx 0x40000000]	element[0] =
[51719.443156][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51719.443156][ctx 0x40000000]	  surface = 0x00000005
[51719.443156][ctx 0x40000000]	  surface_region
[51719.443157][ctx 0x40000000]	    x = 0
[51719.443157][ctx 0x40000000]	    y = 0
[51719.443157][ctx 0x40000000]	    width = 1280
[51719.443157][ctx 0x40000000]	    height = 800
[51719.443158][ctx 0x40000000]	  surface_color_standard = 8
[51719.443158][ctx 0x40000000]	  output_region
[51719.443158][ctx 0x40000000]	    x = 0
[51719.443158][ctx 0x40000000]	    y = 0
[51719.443159][ctx 0x40000000]	    width = 1280
[51719.443159][ctx 0x40000000]	    height = 800
[51719.443159][ctx 0x40000000]	  output_background_color = 0xff000000
[51719.443160][ctx 0x40000000]	  output_color_standard = 2
[51719.443160][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51719.443160][ctx 0x40000000]	  filter_flags = 0x00000000
[51719.443161][ctx 0x40000000]	  num_filters = 0
[51719.443161][ctx 0x40000000]	  filters = (nil)
[51719.443161][ctx 0x40000000]	  num_forward_references = 0x00000000
[51719.443162][ctx 0x40000000]	  num_backward_references = 0x00000000
[51719.443167][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443171][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443171][ctx 0x40000000]==========va_TraceEndPicture
[51719.443172][ctx 0x40000000]	context = 0x40000000
[51719.443172][ctx 0x40000000]	render_targets = 0x00000003
[51719.443269][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.443270][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.458726][ctx       none]==========va_TraceCreateSurfaces
[51719.458727][ctx       none]	width = 1280
[51719.458727][ctx       none]	height = 800
[51719.458728][ctx       none]	format = 131072
[51719.458728][ctx       none]	num_surfaces = 1
[51719.458728][ctx       none]		surfaces[0] = 0x00000000
[51719.458728][ctx       none]	attrib_list[0] =
[51719.458729][ctx       none]		type = 8
[51719.458729][ctx       none]		flags = 2
[51719.458729][ctx       none]		value.type = 1
[51719.458729][ctx       none]		value.value.i = 0x0000000c
[51719.458730][ctx       none]	attrib_list[1] =
[51719.458730][ctx       none]		type = 6
[51719.458730][ctx       none]		flags = 2
[51719.458730][ctx       none]		value.type = 1
[51719.458731][ctx       none]		value.value.i = 0x40000000
[51719.458731][ctx       none]	attrib_list[2] =
[51719.458731][ctx       none]		type = 1
[51719.458731][ctx       none]		flags = 2
[51719.458731][ctx       none]		value.type = 1
[51719.458732][ctx       none]		value.value.i = 0x52474241
[51719.458732][ctx       none]	attrib_list[3] =
[51719.458732][ctx       none]		type = 7
[51719.458732][ctx       none]		flags = 2
[51719.458733][ctx       none]		value.type = 3
[51719.458733][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51719.458733][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51719.458733][ctx       none]		  pixel_format=0x52474241
[51719.458734][ctx       none]		  width=1280
[51719.458734][ctx       none]		  height=800
[51719.458734][ctx       none]		  num_objects=0x00000001
[51719.458734][ctx       none]			objects[0].fd=71
[51719.458735][ctx       none]			objects[0].size=4194304
[51719.458735][ctx       none]			objects[0].drm_format_modifier=0
[51719.458735][ctx       none]		  num_layers=1
[51719.458735][ctx       none]			layers[0].drm_format=0x34324241
[51719.458736][ctx       none]			layers[0].num_planes=0x1
[51719.458736][ctx       none]				layers[0].object_index[0]=0x0
[51719.458736][ctx       none]				layers[0].offset[0]=0x0
[51719.458737][ctx       none]				layers[0].pitch[0]=0x5120
[51719.458737][ctx       none]				layers[0].object_index[1]=0x0
[51719.458737][ctx       none]				layers[0].offset[1]=0x0
[51719.458738][ctx       none]				layers[0].pitch[1]=0x0
[51719.458738][ctx       none]				layers[0].object_index[2]=0x0
[51719.458738][ctx       none]				layers[0].offset[2]=0x0
[51719.458738][ctx       none]				layers[0].pitch[2]=0x0
[51719.458739][ctx       none]				layers[0].object_index[3]=0x0
[51719.458739][ctx       none]				layers[0].offset[3]=0x0
[51719.458739][ctx       none]				layers[0].pitch[3]=0x0
[51719.458744][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51719.458770][ctx       none]==========va_TraceSyncSurface
[51719.458770][ctx       none]	render_target = 0x00000005
[51719.458777][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51719.458778][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.458778][ctx       none]	render_target = 0x00000005
[51719.458779][ctx       none]	status = 0x00000004
[51719.458780][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.458782][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.458785][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683821][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683822][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683874][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.683875][ctx       none]	render_target = 0x00000005
[51719.683875][ctx       none]	status = 0x00000004
[51719.683879][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683882][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.683882][ctx       none]	render_target = 0x00000004
[51719.683882][ctx       none]	status = 0x00000004
[51719.683884][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683885][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683886][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683887][ctx 0x40000000]==========va_TraceBeginPicture
[51719.683888][ctx 0x40000000]	context = 0x40000000
[51719.683888][ctx 0x40000000]	render_targets = 0x00000004
[51719.683888][ctx 0x40000000]	frame_count  = #45
[51719.683891][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683892][ctx 0x40000000]==========va_TraceRenderPicture
[51719.683892][ctx 0x40000000]	context = 0x40000000
[51719.683892][ctx 0x40000000]	num_buffers = 1
[51719.683893][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683893][ctx 0x40000000]	---------------------------
[51719.683893][ctx 0x40000000]	buffers[0] = 0x00000016
[51719.683894][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51719.683894][ctx 0x40000000]	  size = 224
[51719.683894][ctx 0x40000000]	  num_elements = 1
[51719.683895][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683895][ctx 0x40000000]	element[0] =
[51719.683896][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51719.683896][ctx 0x40000000]	  surface = 0x00000005
[51719.683897][ctx 0x40000000]	  surface_region
[51719.683897][ctx 0x40000000]	    x = 0
[51719.683897][ctx 0x40000000]	    y = 0
[51719.683898][ctx 0x40000000]	    width = 1280
[51719.683898][ctx 0x40000000]	    height = 800
[51719.683898][ctx 0x40000000]	  surface_color_standard = 8
[51719.683898][ctx 0x40000000]	  output_region
[51719.683899][ctx 0x40000000]	    x = 0
[51719.683899][ctx 0x40000000]	    y = 0
[51719.683899][ctx 0x40000000]	    width = 1280
[51719.683900][ctx 0x40000000]	    height = 800
[51719.683900][ctx 0x40000000]	  output_background_color = 0xff000000
[51719.683900][ctx 0x40000000]	  output_color_standard = 2
[51719.683900][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51719.683901][ctx 0x40000000]	  filter_flags = 0x00000000
[51719.683901][ctx 0x40000000]	  num_filters = 0
[51719.683901][ctx 0x40000000]	  filters = (nil)
[51719.683902][ctx 0x40000000]	  num_forward_references = 0x00000000
[51719.683902][ctx 0x40000000]	  num_backward_references = 0x00000000
[51719.683904][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683907][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.683908][ctx 0x40000000]==========va_TraceEndPicture
[51719.683908][ctx 0x40000000]	context = 0x40000000
[51719.683908][ctx 0x40000000]	render_targets = 0x00000004
[51719.684010][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.684011][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.699680][ctx       none]==========va_TraceCreateSurfaces
[51719.699681][ctx       none]	width = 1280
[51719.699681][ctx       none]	height = 800
[51719.699681][ctx       none]	format = 131072
[51719.699682][ctx       none]	num_surfaces = 1
[51719.699682][ctx       none]		surfaces[0] = 0x00000000
[51719.699682][ctx       none]	attrib_list[0] =
[51719.699682][ctx       none]		type = 8
[51719.699683][ctx       none]		flags = 2
[51719.699683][ctx       none]		value.type = 1
[51719.699683][ctx       none]		value.value.i = 0x0000000c
[51719.699683][ctx       none]	attrib_list[1] =
[51719.699684][ctx       none]		type = 6
[51719.699684][ctx       none]		flags = 2
[51719.699684][ctx       none]		value.type = 1
[51719.699684][ctx       none]		value.value.i = 0x40000000
[51719.699685][ctx       none]	attrib_list[2] =
[51719.699685][ctx       none]		type = 1
[51719.699685][ctx       none]		flags = 2
[51719.699685][ctx       none]		value.type = 1
[51719.699685][ctx       none]		value.value.i = 0x52474241
[51719.699686][ctx       none]	attrib_list[3] =
[51719.699686][ctx       none]		type = 7
[51719.699686][ctx       none]		flags = 2
[51719.699686][ctx       none]		value.type = 3
[51719.699687][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51719.699687][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51719.699687][ctx       none]		  pixel_format=0x52474241
[51719.699687][ctx       none]		  width=1280
[51719.699688][ctx       none]		  height=800
[51719.699688][ctx       none]		  num_objects=0x00000001
[51719.699688][ctx       none]			objects[0].fd=71
[51719.699688][ctx       none]			objects[0].size=4194304
[51719.699689][ctx       none]			objects[0].drm_format_modifier=0
[51719.699689][ctx       none]		  num_layers=1
[51719.699689][ctx       none]			layers[0].drm_format=0x34324241
[51719.699690][ctx       none]			layers[0].num_planes=0x1
[51719.699690][ctx       none]				layers[0].object_index[0]=0x0
[51719.699690][ctx       none]				layers[0].offset[0]=0x0
[51719.699690][ctx       none]				layers[0].pitch[0]=0x5120
[51719.699691][ctx       none]				layers[0].object_index[1]=0x0
[51719.699691][ctx       none]				layers[0].offset[1]=0x0
[51719.699691][ctx       none]				layers[0].pitch[1]=0x0
[51719.699692][ctx       none]				layers[0].object_index[2]=0x0
[51719.699692][ctx       none]				layers[0].offset[2]=0x0
[51719.699692][ctx       none]				layers[0].pitch[2]=0x0
[51719.699692][ctx       none]				layers[0].object_index[3]=0x0
[51719.699693][ctx       none]				layers[0].offset[3]=0x0
[51719.699693][ctx       none]				layers[0].pitch[3]=0x0
[51719.699698][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51719.699722][ctx       none]==========va_TraceSyncSurface
[51719.699723][ctx       none]	render_target = 0x00000005
[51719.699725][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51719.699726][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.699727][ctx       none]	render_target = 0x00000005
[51719.699727][ctx       none]	status = 0x00000004
[51719.699729][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.699730][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.699733][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924833][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924835][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924907][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.924907][ctx       none]	render_target = 0x00000005
[51719.924908][ctx       none]	status = 0x00000004
[51719.924916][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924919][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.924919][ctx       none]	render_target = 0x00000003
[51719.924919][ctx       none]	status = 0x00000004
[51719.924921][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924922][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924925][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924926][ctx 0x40000000]==========va_TraceBeginPicture
[51719.924927][ctx 0x40000000]	context = 0x40000000
[51719.924927][ctx 0x40000000]	render_targets = 0x00000003
[51719.924927][ctx 0x40000000]	frame_count  = #46
[51719.924930][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924931][ctx 0x40000000]==========va_TraceRenderPicture
[51719.924931][ctx 0x40000000]	context = 0x40000000
[51719.924931][ctx 0x40000000]	num_buffers = 1
[51719.924932][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924932][ctx 0x40000000]	---------------------------
[51719.924932][ctx 0x40000000]	buffers[0] = 0x00000016
[51719.924933][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51719.924933][ctx 0x40000000]	  size = 224
[51719.924933][ctx 0x40000000]	  num_elements = 1
[51719.924934][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924934][ctx 0x40000000]	element[0] =
[51719.924935][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51719.924935][ctx 0x40000000]	  surface = 0x00000005
[51719.924935][ctx 0x40000000]	  surface_region
[51719.924936][ctx 0x40000000]	    x = 0
[51719.924936][ctx 0x40000000]	    y = 0
[51719.924936][ctx 0x40000000]	    width = 1280
[51719.924937][ctx 0x40000000]	    height = 800
[51719.924937][ctx 0x40000000]	  surface_color_standard = 8
[51719.924937][ctx 0x40000000]	  output_region
[51719.924937][ctx 0x40000000]	    x = 0
[51719.924938][ctx 0x40000000]	    y = 0
[51719.924938][ctx 0x40000000]	    width = 1280
[51719.924938][ctx 0x40000000]	    height = 800
[51719.924938][ctx 0x40000000]	  output_background_color = 0xff000000
[51719.924939][ctx 0x40000000]	  output_color_standard = 2
[51719.924939][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51719.924939][ctx 0x40000000]	  filter_flags = 0x00000000
[51719.924940][ctx 0x40000000]	  num_filters = 0
[51719.924940][ctx 0x40000000]	  filters = (nil)
[51719.924941][ctx 0x40000000]	  num_forward_references = 0x00000000
[51719.924941][ctx 0x40000000]	  num_backward_references = 0x00000000
[51719.924943][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924947][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.924947][ctx 0x40000000]==========va_TraceEndPicture
[51719.924947][ctx 0x40000000]	context = 0x40000000
[51719.924948][ctx 0x40000000]	render_targets = 0x00000003
[51719.925045][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51719.925046][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51719.940934][ctx       none]==========va_TraceCreateSurfaces
[51719.940934][ctx       none]	width = 1280
[51719.940934][ctx       none]	height = 800
[51719.940935][ctx       none]	format = 131072
[51719.940935][ctx       none]	num_surfaces = 1
[51719.940935][ctx       none]		surfaces[0] = 0x00000000
[51719.940936][ctx       none]	attrib_list[0] =
[51719.940936][ctx       none]		type = 8
[51719.940936][ctx       none]		flags = 2
[51719.940936][ctx       none]		value.type = 1
[51719.940937][ctx       none]		value.value.i = 0x0000000c
[51719.940937][ctx       none]	attrib_list[1] =
[51719.940937][ctx       none]		type = 6
[51719.940937][ctx       none]		flags = 2
[51719.940937][ctx       none]		value.type = 1
[51719.940938][ctx       none]		value.value.i = 0x40000000
[51719.940938][ctx       none]	attrib_list[2] =
[51719.940938][ctx       none]		type = 1
[51719.940938][ctx       none]		flags = 2
[51719.940939][ctx       none]		value.type = 1
[51719.940939][ctx       none]		value.value.i = 0x52474241
[51719.940939][ctx       none]	attrib_list[3] =
[51719.940939][ctx       none]		type = 7
[51719.940940][ctx       none]		flags = 2
[51719.940940][ctx       none]		value.type = 3
[51719.940940][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51719.940940][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51719.940940][ctx       none]		  pixel_format=0x52474241
[51719.940941][ctx       none]		  width=1280
[51719.940941][ctx       none]		  height=800
[51719.940941][ctx       none]		  num_objects=0x00000001
[51719.940941][ctx       none]			objects[0].fd=71
[51719.940942][ctx       none]			objects[0].size=4194304
[51719.940942][ctx       none]			objects[0].drm_format_modifier=0
[51719.940942][ctx       none]		  num_layers=1
[51719.940943][ctx       none]			layers[0].drm_format=0x34324241
[51719.940943][ctx       none]			layers[0].num_planes=0x1
[51719.940943][ctx       none]				layers[0].object_index[0]=0x0
[51719.940944][ctx       none]				layers[0].offset[0]=0x0
[51719.940944][ctx       none]				layers[0].pitch[0]=0x5120
[51719.940944][ctx       none]				layers[0].object_index[1]=0x0
[51719.940944][ctx       none]				layers[0].offset[1]=0x0
[51719.940945][ctx       none]				layers[0].pitch[1]=0x0
[51719.940945][ctx       none]				layers[0].object_index[2]=0x0
[51719.940945][ctx       none]				layers[0].offset[2]=0x0
[51719.940946][ctx       none]				layers[0].pitch[2]=0x0
[51719.940946][ctx       none]				layers[0].object_index[3]=0x0
[51719.940946][ctx       none]				layers[0].offset[3]=0x0
[51719.940946][ctx       none]				layers[0].pitch[3]=0x0
[51719.940956][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51719.940983][ctx       none]==========va_TraceSyncSurface
[51719.940983][ctx       none]	render_target = 0x00000005
[51719.940986][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51719.940987][ctx       none]==========va_TraceQuerySurfaceStatus
[51719.940987][ctx       none]	render_target = 0x00000005
[51719.940987][ctx       none]	status = 0x00000004
[51719.940989][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51719.940991][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51719.940994][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166271][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166273][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166344][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.166344][ctx       none]	render_target = 0x00000005
[51720.166345][ctx       none]	status = 0x00000004
[51720.166349][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166352][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.166352][ctx       none]	render_target = 0x00000004
[51720.166352][ctx       none]	status = 0x00000004
[51720.166354][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166355][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166357][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166358][ctx 0x40000000]==========va_TraceBeginPicture
[51720.166358][ctx 0x40000000]	context = 0x40000000
[51720.166358][ctx 0x40000000]	render_targets = 0x00000004
[51720.166359][ctx 0x40000000]	frame_count  = #47
[51720.166361][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166362][ctx 0x40000000]==========va_TraceRenderPicture
[51720.166362][ctx 0x40000000]	context = 0x40000000
[51720.166363][ctx 0x40000000]	num_buffers = 1
[51720.166363][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166363][ctx 0x40000000]	---------------------------
[51720.166364][ctx 0x40000000]	buffers[0] = 0x00000016
[51720.166364][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51720.166364][ctx 0x40000000]	  size = 224
[51720.166365][ctx 0x40000000]	  num_elements = 1
[51720.166365][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166366][ctx 0x40000000]	element[0] =
[51720.166366][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51720.166367][ctx 0x40000000]	  surface = 0x00000005
[51720.166367][ctx 0x40000000]	  surface_region
[51720.166367][ctx 0x40000000]	    x = 0
[51720.166367][ctx 0x40000000]	    y = 0
[51720.166368][ctx 0x40000000]	    width = 1280
[51720.166368][ctx 0x40000000]	    height = 800
[51720.166368][ctx 0x40000000]	  surface_color_standard = 8
[51720.166368][ctx 0x40000000]	  output_region
[51720.166369][ctx 0x40000000]	    x = 0
[51720.166369][ctx 0x40000000]	    y = 0
[51720.166369][ctx 0x40000000]	    width = 1280
[51720.166370][ctx 0x40000000]	    height = 800
[51720.166370][ctx 0x40000000]	  output_background_color = 0xff000000
[51720.166370][ctx 0x40000000]	  output_color_standard = 2
[51720.166370][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51720.166371][ctx 0x40000000]	  filter_flags = 0x00000000
[51720.166371][ctx 0x40000000]	  num_filters = 0
[51720.166372][ctx 0x40000000]	  filters = (nil)
[51720.166372][ctx 0x40000000]	  num_forward_references = 0x00000000
[51720.166372][ctx 0x40000000]	  num_backward_references = 0x00000000
[51720.166378][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166382][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166382][ctx 0x40000000]==========va_TraceEndPicture
[51720.166383][ctx 0x40000000]	context = 0x40000000
[51720.166383][ctx 0x40000000]	render_targets = 0x00000004
[51720.166485][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.166486][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.181952][ctx       none]==========va_TraceCreateSurfaces
[51720.181953][ctx       none]	width = 1280
[51720.181953][ctx       none]	height = 800
[51720.181953][ctx       none]	format = 131072
[51720.181954][ctx       none]	num_surfaces = 1
[51720.181954][ctx       none]		surfaces[0] = 0x00000000
[51720.181954][ctx       none]	attrib_list[0] =
[51720.181955][ctx       none]		type = 8
[51720.181955][ctx       none]		flags = 2
[51720.181955][ctx       none]		value.type = 1
[51720.181955][ctx       none]		value.value.i = 0x0000000c
[51720.181955][ctx       none]	attrib_list[1] =
[51720.181956][ctx       none]		type = 6
[51720.181956][ctx       none]		flags = 2
[51720.181956][ctx       none]		value.type = 1
[51720.181956][ctx       none]		value.value.i = 0x40000000
[51720.181957][ctx       none]	attrib_list[2] =
[51720.181957][ctx       none]		type = 1
[51720.181957][ctx       none]		flags = 2
[51720.181957][ctx       none]		value.type = 1
[51720.181957][ctx       none]		value.value.i = 0x52474241
[51720.181958][ctx       none]	attrib_list[3] =
[51720.181958][ctx       none]		type = 7
[51720.181958][ctx       none]		flags = 2
[51720.181958][ctx       none]		value.type = 3
[51720.181959][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51720.181959][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51720.181959][ctx       none]		  pixel_format=0x52474241
[51720.181959][ctx       none]		  width=1280
[51720.181960][ctx       none]		  height=800
[51720.181960][ctx       none]		  num_objects=0x00000001
[51720.181960][ctx       none]			objects[0].fd=71
[51720.181960][ctx       none]			objects[0].size=4194304
[51720.181961][ctx       none]			objects[0].drm_format_modifier=0
[51720.181961][ctx       none]		  num_layers=1
[51720.181961][ctx       none]			layers[0].drm_format=0x34324241
[51720.181962][ctx       none]			layers[0].num_planes=0x1
[51720.181962][ctx       none]				layers[0].object_index[0]=0x0
[51720.181962][ctx       none]				layers[0].offset[0]=0x0
[51720.181962][ctx       none]				layers[0].pitch[0]=0x5120
[51720.181963][ctx       none]				layers[0].object_index[1]=0x0
[51720.181963][ctx       none]				layers[0].offset[1]=0x0
[51720.181963][ctx       none]				layers[0].pitch[1]=0x0
[51720.181964][ctx       none]				layers[0].object_index[2]=0x0
[51720.181964][ctx       none]				layers[0].offset[2]=0x0
[51720.181964][ctx       none]				layers[0].pitch[2]=0x0
[51720.181965][ctx       none]				layers[0].object_index[3]=0x0
[51720.181965][ctx       none]				layers[0].offset[3]=0x0
[51720.181965][ctx       none]				layers[0].pitch[3]=0x0
[51720.181974][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51720.181998][ctx       none]==========va_TraceSyncSurface
[51720.181998][ctx       none]	render_target = 0x00000005
[51720.182001][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51720.182002][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.182002][ctx       none]	render_target = 0x00000005
[51720.182002][ctx       none]	status = 0x00000004
[51720.182004][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.182006][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51720.182008][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407053][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407054][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407485][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.407485][ctx       none]	render_target = 0x00000005
[51720.407486][ctx       none]	status = 0x00000004
[51720.407490][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407492][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.407492][ctx       none]	render_target = 0x00000003
[51720.407493][ctx       none]	status = 0x00000004
[51720.407494][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407495][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407497][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407498][ctx 0x40000000]==========va_TraceBeginPicture
[51720.407498][ctx 0x40000000]	context = 0x40000000
[51720.407498][ctx 0x40000000]	render_targets = 0x00000003
[51720.407499][ctx 0x40000000]	frame_count  = #48
[51720.407501][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407502][ctx 0x40000000]==========va_TraceRenderPicture
[51720.407502][ctx 0x40000000]	context = 0x40000000
[51720.407503][ctx 0x40000000]	num_buffers = 1
[51720.407503][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407503][ctx 0x40000000]	---------------------------
[51720.407504][ctx 0x40000000]	buffers[0] = 0x00000016
[51720.407504][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51720.407504][ctx 0x40000000]	  size = 224
[51720.407505][ctx 0x40000000]	  num_elements = 1
[51720.407505][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407506][ctx 0x40000000]	element[0] =
[51720.407506][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51720.407507][ctx 0x40000000]	  surface = 0x00000005
[51720.407507][ctx 0x40000000]	  surface_region
[51720.407507][ctx 0x40000000]	    x = 0
[51720.407507][ctx 0x40000000]	    y = 0
[51720.407508][ctx 0x40000000]	    width = 1280
[51720.407510][ctx 0x40000000]	    height = 800
[51720.407511][ctx 0x40000000]	  surface_color_standard = 8
[51720.407511][ctx 0x40000000]	  output_region
[51720.407511][ctx 0x40000000]	    x = 0
[51720.407512][ctx 0x40000000]	    y = 0
[51720.407512][ctx 0x40000000]	    width = 1280
[51720.407512][ctx 0x40000000]	    height = 800
[51720.407512][ctx 0x40000000]	  output_background_color = 0xff000000
[51720.407513][ctx 0x40000000]	  output_color_standard = 2
[51720.407513][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51720.407513][ctx 0x40000000]	  filter_flags = 0x00000000
[51720.407514][ctx 0x40000000]	  num_filters = 0
[51720.407514][ctx 0x40000000]	  filters = (nil)
[51720.407514][ctx 0x40000000]	  num_forward_references = 0x00000000
[51720.407515][ctx 0x40000000]	  num_backward_references = 0x00000000
[51720.407521][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407525][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407525][ctx 0x40000000]==========va_TraceEndPicture
[51720.407526][ctx 0x40000000]	context = 0x40000000
[51720.407526][ctx 0x40000000]	render_targets = 0x00000003
[51720.407624][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.407625][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.422766][ctx       none]==========va_TraceCreateSurfaces
[51720.422767][ctx       none]	width = 1280
[51720.422767][ctx       none]	height = 800
[51720.422767][ctx       none]	format = 131072
[51720.422768][ctx       none]	num_surfaces = 1
[51720.422768][ctx       none]		surfaces[0] = 0x00000000
[51720.422768][ctx       none]	attrib_list[0] =
[51720.422769][ctx       none]		type = 8
[51720.422769][ctx       none]		flags = 2
[51720.422769][ctx       none]		value.type = 1
[51720.422769][ctx       none]		value.value.i = 0x0000000c
[51720.422770][ctx       none]	attrib_list[1] =
[51720.422770][ctx       none]		type = 6
[51720.422770][ctx       none]		flags = 2
[51720.422770][ctx       none]		value.type = 1
[51720.422771][ctx       none]		value.value.i = 0x40000000
[51720.422771][ctx       none]	attrib_list[2] =
[51720.422771][ctx       none]		type = 1
[51720.422771][ctx       none]		flags = 2
[51720.422771][ctx       none]		value.type = 1
[51720.422772][ctx       none]		value.value.i = 0x52474241
[51720.422772][ctx       none]	attrib_list[3] =
[51720.422772][ctx       none]		type = 7
[51720.422772][ctx       none]		flags = 2
[51720.422773][ctx       none]		value.type = 3
[51720.422773][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51720.422773][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51720.422773][ctx       none]		  pixel_format=0x52474241
[51720.422774][ctx       none]		  width=1280
[51720.422774][ctx       none]		  height=800
[51720.422774][ctx       none]		  num_objects=0x00000001
[51720.422774][ctx       none]			objects[0].fd=71
[51720.422775][ctx       none]			objects[0].size=4194304
[51720.422775][ctx       none]			objects[0].drm_format_modifier=0
[51720.422775][ctx       none]		  num_layers=1
[51720.422775][ctx       none]			layers[0].drm_format=0x34324241
[51720.422776][ctx       none]			layers[0].num_planes=0x1
[51720.422776][ctx       none]				layers[0].object_index[0]=0x0
[51720.422776][ctx       none]				layers[0].offset[0]=0x0
[51720.422777][ctx       none]				layers[0].pitch[0]=0x5120
[51720.422777][ctx       none]				layers[0].object_index[1]=0x0
[51720.422777][ctx       none]				layers[0].offset[1]=0x0
[51720.422778][ctx       none]				layers[0].pitch[1]=0x0
[51720.422778][ctx       none]				layers[0].object_index[2]=0x0
[51720.422778][ctx       none]				layers[0].offset[2]=0x0
[51720.422778][ctx       none]				layers[0].pitch[2]=0x0
[51720.422779][ctx       none]				layers[0].object_index[3]=0x0
[51720.422779][ctx       none]				layers[0].offset[3]=0x0
[51720.422779][ctx       none]				layers[0].pitch[3]=0x0
[51720.422784][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51720.422872][ctx       none]==========va_TraceSyncSurface
[51720.422872][ctx       none]	render_target = 0x00000005
[51720.422875][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51720.422876][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.422877][ctx       none]	render_target = 0x00000005
[51720.422877][ctx       none]	status = 0x00000004
[51720.422883][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.422885][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51720.422887][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647870][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647872][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647946][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.647947][ctx       none]	render_target = 0x00000005
[51720.647947][ctx       none]	status = 0x00000004
[51720.647951][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647954][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.647954][ctx       none]	render_target = 0x00000004
[51720.647954][ctx       none]	status = 0x00000004
[51720.647956][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647957][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647960][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647961][ctx 0x40000000]==========va_TraceBeginPicture
[51720.647961][ctx 0x40000000]	context = 0x40000000
[51720.647961][ctx 0x40000000]	render_targets = 0x00000004
[51720.647962][ctx 0x40000000]	frame_count  = #49
[51720.647965][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647965][ctx 0x40000000]==========va_TraceRenderPicture
[51720.647965][ctx 0x40000000]	context = 0x40000000
[51720.647966][ctx 0x40000000]	num_buffers = 1
[51720.647966][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647967][ctx 0x40000000]	---------------------------
[51720.647967][ctx 0x40000000]	buffers[0] = 0x00000016
[51720.647967][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51720.647968][ctx 0x40000000]	  size = 224
[51720.647968][ctx 0x40000000]	  num_elements = 1
[51720.647968][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647969][ctx 0x40000000]	element[0] =
[51720.647969][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51720.647970][ctx 0x40000000]	  surface = 0x00000005
[51720.647970][ctx 0x40000000]	  surface_region
[51720.647970][ctx 0x40000000]	    x = 0
[51720.647971][ctx 0x40000000]	    y = 0
[51720.647971][ctx 0x40000000]	    width = 1280
[51720.647971][ctx 0x40000000]	    height = 800
[51720.647971][ctx 0x40000000]	  surface_color_standard = 8
[51720.647972][ctx 0x40000000]	  output_region
[51720.647972][ctx 0x40000000]	    x = 0
[51720.647972][ctx 0x40000000]	    y = 0
[51720.647973][ctx 0x40000000]	    width = 1280
[51720.647973][ctx 0x40000000]	    height = 800
[51720.647973][ctx 0x40000000]	  output_background_color = 0xff000000
[51720.647973][ctx 0x40000000]	  output_color_standard = 2
[51720.647974][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51720.647974][ctx 0x40000000]	  filter_flags = 0x00000000
[51720.647975][ctx 0x40000000]	  num_filters = 0
[51720.647975][ctx 0x40000000]	  filters = (nil)
[51720.647975][ctx 0x40000000]	  num_forward_references = 0x00000000
[51720.647975][ctx 0x40000000]	  num_backward_references = 0x00000000
[51720.647977][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647981][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.647981][ctx 0x40000000]==========va_TraceEndPicture
[51720.647981][ctx 0x40000000]	context = 0x40000000
[51720.647982][ctx 0x40000000]	render_targets = 0x00000004
[51720.648086][ctx       none]=========vaEndPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.648087][ctx       none]=========vaDestroyBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.663691][ctx       none]==========va_TraceCreateSurfaces
[51720.663691][ctx       none]	width = 1280
[51720.663691][ctx       none]	height = 800
[51720.663692][ctx       none]	format = 131072
[51720.663692][ctx       none]	num_surfaces = 1
[51720.663692][ctx       none]		surfaces[0] = 0x00000000
[51720.663693][ctx       none]	attrib_list[0] =
[51720.663693][ctx       none]		type = 8
[51720.663693][ctx       none]		flags = 2
[51720.663693][ctx       none]		value.type = 1
[51720.663694][ctx       none]		value.value.i = 0x0000000c
[51720.663694][ctx       none]	attrib_list[1] =
[51720.663694][ctx       none]		type = 6
[51720.663694][ctx       none]		flags = 2
[51720.663695][ctx       none]		value.type = 1
[51720.663695][ctx       none]		value.value.i = 0x40000000
[51720.663695][ctx       none]	attrib_list[2] =
[51720.663695][ctx       none]		type = 1
[51720.663695][ctx       none]		flags = 2
[51720.663696][ctx       none]		value.type = 1
[51720.663696][ctx       none]		value.value.i = 0x52474241
[51720.663696][ctx       none]	attrib_list[3] =
[51720.663696][ctx       none]		type = 7
[51720.663697][ctx       none]		flags = 2
[51720.663697][ctx       none]		value.type = 3
[51720.663697][ctx       none]		value.value.p = 0x7ff93d7f86a0
[51720.663697][ctx       none]		--VADRMPRIMESurfaceDescriptor
[51720.663698][ctx       none]		  pixel_format=0x52474241
[51720.663698][ctx       none]		  width=1280
[51720.663698][ctx       none]		  height=800
[51720.663698][ctx       none]		  num_objects=0x00000001
[51720.663699][ctx       none]			objects[0].fd=71
[51720.663699][ctx       none]			objects[0].size=4194304
[51720.663699][ctx       none]			objects[0].drm_format_modifier=0
[51720.663699][ctx       none]		  num_layers=1
[51720.663700][ctx       none]			layers[0].drm_format=0x34324241
[51720.663700][ctx       none]			layers[0].num_planes=0x1
[51720.663700][ctx       none]				layers[0].object_index[0]=0x0
[51720.663701][ctx       none]				layers[0].offset[0]=0x0
[51720.663701][ctx       none]				layers[0].pitch[0]=0x5120
[51720.663701][ctx       none]				layers[0].object_index[1]=0x0
[51720.663701][ctx       none]				layers[0].offset[1]=0x0
[51720.663702][ctx       none]				layers[0].pitch[1]=0x0
[51720.663702][ctx       none]				layers[0].object_index[2]=0x0
[51720.663702][ctx       none]				layers[0].offset[2]=0x0
[51720.663703][ctx       none]				layers[0].pitch[2]=0x0
[51720.663703][ctx       none]				layers[0].object_index[3]=0x0
[51720.663703][ctx       none]				layers[0].offset[3]=0x0
[51720.663703][ctx       none]				layers[0].pitch[3]=0x0
[51720.663713][ctx       none]=========vaCreateSurfaces ret = VA_STATUS_ERROR_ALLOCATION_FAILED, resource allocation failed 
[51720.663930][ctx       none]==========va_TraceSyncSurface
[51720.663930][ctx       none]	render_target = 0x00000005
[51720.663933][ctx       none]=========vaSyncSurface ret = VA_STATUS_SUCCESS, success (no error) 
[51720.663934][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.663934][ctx       none]	render_target = 0x00000005
[51720.663935][ctx       none]	status = 0x00000004
[51720.663936][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.663938][ctx       none]=========vaDeriveImage ret = VA_STATUS_SUCCESS, success (no error) 
[51720.663940][ctx       none]=========vaMapBuffer2 ret = VA_STATUS_SUCCESS, success (no error) 
[51720.888925][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.888927][ctx       none]=========vaDestroyImage ret = VA_STATUS_SUCCESS, success (no error) 
[51720.888998][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.888998][ctx       none]	render_target = 0x00000005
[51720.888999][ctx       none]	status = 0x00000004
[51720.889002][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889005][ctx       none]==========va_TraceQuerySurfaceStatus
[51720.889005][ctx       none]	render_target = 0x00000003
[51720.889006][ctx       none]	status = 0x00000004
[51720.889007][ctx       none]=========vaQuerySurfaceStatus ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889008][ctx       none]=========vaQueryVideoProcPipelineCaps ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889010][ctx       none]=========vaCreateBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889011][ctx 0x40000000]==========va_TraceBeginPicture
[51720.889011][ctx 0x40000000]	context = 0x40000000
[51720.889012][ctx 0x40000000]	render_targets = 0x00000003
[51720.889012][ctx 0x40000000]	frame_count  = #50
[51720.889019][ctx       none]=========vaBeginPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889019][ctx 0x40000000]==========va_TraceRenderPicture
[51720.889020][ctx 0x40000000]	context = 0x40000000
[51720.889020][ctx 0x40000000]	num_buffers = 1
[51720.889020][ctx       none]=========vaBufferInfo ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889021][ctx 0x40000000]	---------------------------
[51720.889021][ctx 0x40000000]	buffers[0] = 0x00000016
[51720.889021][ctx 0x40000000]	  type = VAProcPipelineParameterBufferType
[51720.889022][ctx 0x40000000]	  size = 224
[51720.889022][ctx 0x40000000]	  num_elements = 1
[51720.889022][ctx       none]=========vaMapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889023][ctx 0x40000000]	element[0] =
[51720.889023][ctx 0x40000000]	--VAProcPipelineParameterBuffer
[51720.889024][ctx 0x40000000]	  surface = 0x00000005
[51720.889024][ctx 0x40000000]	  surface_region
[51720.889024][ctx 0x40000000]	    x = 0
[51720.889025][ctx 0x40000000]	    y = 0
[51720.889025][ctx 0x40000000]	    width = 1280
[51720.889025][ctx 0x40000000]	    height = 800
[51720.889025][ctx 0x40000000]	  surface_color_standard = 8
[51720.889026][ctx 0x40000000]	  output_region
[51720.889026][ctx 0x40000000]	    x = 0
[51720.889026][ctx 0x40000000]	    y = 0
[51720.889027][ctx 0x40000000]	    width = 1280
[51720.889027][ctx 0x40000000]	    height = 800
[51720.889027][ctx 0x40000000]	  output_background_color = 0xff000000
[51720.889027][ctx 0x40000000]	  output_color_standard = 2
[51720.889028][ctx 0x40000000]	  pipeline_flags = 0x00000000
[51720.889028][ctx 0x40000000]	  filter_flags = 0x00000000
[51720.889028][ctx 0x40000000]	  num_filters = 0
[51720.889029][ctx 0x40000000]	  filters = (nil)
[51720.889029][ctx 0x40000000]	  num_forward_references = 0x00000000
[51720.889029][ctx 0x40000000]	  num_backward_references = 0x00000000
[51720.889031][ctx       none]=========vaUnmapBuffer ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889035][ctx       none]=========vaRenderPicture ret = VA_STATUS_SUCCESS, success (no error) 
[51720.889035][ctx 0x40000000]==========va_TraceEndPicture
[51720.889035][ctx 0x40000000]	context = 0x40000000
[51720.889036][ctx 0x40000000]	render_targets = 0x00000003

[Index of Archives]     [Linux Virtualization]     [Linux Virtualization]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]     [Monitors]