Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Issue 62273006: Update libva headers to the latest release (1.2.1). (Closed)

Created:
7 years, 1 month ago by chihchung
Modified:
7 years, 1 month ago
CC:
chromium-reviews, joi+watch-content_chromium.org, piman+watch_chromium.org, darin-cc_chromium.org, jam, feature-media-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@lkgr
Visibility:
Public.

Description

Update libva headers to the latest release (1.2.1). The motivation is to pick up upstream fixes and be compatible with new VAAPI library after release 1.2.0: the function vaCreateSurfaces() changes its prototype in API version >= 0.34, so we need to handle this in run time. The commands used to update third_party/libva/va are: git clone git://anongit.freedesktop.org/libva /tmp/libva cd /tmp/libva git checkout libva-1.2.1 rm -rf ~/chromium/src/third_party/libva/va find va -name \*.h -exec cp --parents \{\} ~/chromium/src/third_party/libva \; cp ~/va_version.h ~/chromium/src/third_party/libva/va BUG=none TEST=on link, run through the H.264.1 conformance bitstreams, and no regression. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=236492

Patch Set 1 #

Total comments: 2

Patch Set 2 : remove two header files, fix comment style #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+3224 lines, -883 lines) Patch
M content/common/gpu/media/vaapi_wrapper.h View 2 chunks +6 lines, -0 lines 0 comments Download
M content/common/gpu/media/vaapi_wrapper.cc View 1 4 chunks +43 lines, -14 lines 1 comment Download
M third_party/libva/README.chromium View 1 chunk +1 line, -1 line 0 comments Download
D third_party/libva/va/android/drmtest.h View 1 chunk +0 lines, -40 lines 0 comments Download
A + third_party/libva/va/drm/va_drm.h View 2 chunks +32 lines, -15 lines 0 comments Download
A + third_party/libva/va/drm/va_drm_auth.h View 1 chunk +12 lines, -12 lines 0 comments Download
A + third_party/libva/va/drm/va_drm_auth_x11.h View 1 chunk +8 lines, -12 lines 0 comments Download
A third_party/libva/va/drm/va_drm_utils.h View 1 chunk +73 lines, -0 lines 0 comments Download
M third_party/libva/va/egl/va_backend_egl.h View 2 chunks +1 line, -50 lines 0 comments Download
D third_party/libva/va/egl/va_egl_impl.h View 1 chunk +0 lines, -39 lines 0 comments Download
D third_party/libva/va/egl/va_egl_private.h View 1 chunk +0 lines, -98 lines 0 comments Download
M third_party/libva/va/sysdeps.h View 2 chunks +35 lines, -0 lines 0 comments Download
M third_party/libva/va/va.h View 18 chunks +556 lines, -163 lines 0 comments Download
M third_party/libva/va/va_android.h View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/libva/va/va_backend.h View 4 chunks +82 lines, -14 lines 0 comments Download
M third_party/libva/va/va_backend_tpi.h View 1 chunk +27 lines, -66 lines 0 comments Download
A + third_party/libva/va/va_backend_vpp.h View 3 chunks +44 lines, -17 lines 0 comments Download
A third_party/libva/va/va_compat.h View 1 chunk +116 lines, -0 lines 0 comments Download
A third_party/libva/va/va_dec_jpeg.h View 1 chunk +176 lines, -0 lines 0 comments Download
A third_party/libva/va/va_drmcommon.h View 1 chunk +76 lines, -0 lines 0 comments Download
D third_party/libva/va/va_egl.h View 1 chunk +0 lines, -202 lines 0 comments Download
A third_party/libva/va/va_enc_h264.h View 1 chunk +592 lines, -0 lines 0 comments Download
A third_party/libva/va/va_enc_mpeg2.h View 1 chunk +287 lines, -0 lines 0 comments Download
M third_party/libva/va/va_tpi.h View 2 chunks +41 lines, -57 lines 0 comments Download
M third_party/libva/va/va_trace.h View 3 chunks +22 lines, -10 lines 0 comments Download
M third_party/libva/va/va_version.h View 3 chunks +3 lines, -3 lines 0 comments Download
A third_party/libva/va/va_vpp.h View 1 chunk +748 lines, -0 lines 0 comments Download
A + third_party/libva/va/wayland/va_backend_wayland.h View 2 chunks +32 lines, -21 lines 0 comments Download
A third_party/libva/va/wayland/va_wayland.h View 1 chunk +131 lines, -0 lines 0 comments Download
A + third_party/libva/va/wayland/va_wayland_drm.h View 2 chunks +25 lines, -12 lines 0 comments Download
A + third_party/libva/va/wayland/va_wayland_emgd.h View 2 chunks +25 lines, -12 lines 0 comments Download
A + third_party/libva/va/wayland/va_wayland_private.h View 2 chunks +17 lines, -17 lines 0 comments Download
M third_party/libva/va/x11/va_dricommon.h View 2 chunks +8 lines, -8 lines 0 comments Download

Messages

Total messages: 6 (0 generated)
chihchung
Hi, This is in preparation to upgrade libva/libva-intel-driver in ChromeOS to 1.2.1 (because there is ...
7 years, 1 month ago (2013-11-18 11:50:13 UTC) #1
Ami GONE FROM CHROMIUM
On 2013/11/18 11:50:13, chihchung wrote: > Hi, > > This is in preparation to upgrade ...
7 years, 1 month ago (2013-11-20 23:36:45 UTC) #2
Pawel Osciak
lgtm for vaapi wrapper. https://codereview.chromium.org/62273006/diff/1/content/common/gpu/media/vaapi_wrapper.cc File content/common/gpu/media/vaapi_wrapper.cc (right): https://codereview.chromium.org/62273006/diff/1/content/common/gpu/media/vaapi_wrapper.cc#newcode61 content/common/gpu/media/vaapi_wrapper.cc:61: /* In VAAPI version < ...
7 years, 1 month ago (2013-11-21 05:36:36 UTC) #3
chihchung
Removed two header files and reopened the header license bug in upstream. https://codereview.chromium.org/62273006/diff/1/content/common/gpu/media/vaapi_wrapper.cc File content/common/gpu/media/vaapi_wrapper.cc ...
7 years, 1 month ago (2013-11-21 06:45:18 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/chihchung@chromium.org/62273006/70001
7 years, 1 month ago (2013-11-21 06:45:41 UTC) #5
commit-bot: I haz the power
7 years, 1 month ago (2013-11-21 11:03:18 UTC) #6
Message was sent while issue was closed.
Change committed as 236492

Powered by Google App Engine
This is Rietveld 408576698