diff options
author | Marek Olšák <[email protected]> | 2020-02-05 14:47:36 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-02-26 20:35:50 +0000 |
commit | 502840855acac744fbc8dd090d931adc07755ead (patch) | |
tree | 344d4a18125d8ff985fd625e20e6958423ee62af /src/gallium/include | |
parent | 10d235a84319ed4137fe0c6d22d8bb9a52d3174a (diff) |
gallium/hash_table: turn it into a wrapper around util/hash_table
Reviewed-by: Kristian H. Kristensen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3722>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_video_state.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/include/pipe/p_video_state.h b/src/gallium/include/pipe/p_video_state.h index 1369f1a8ca6..2ace9477335 100644 --- a/src/gallium/include/pipe/p_video_state.h +++ b/src/gallium/include/pipe/p_video_state.h @@ -431,7 +431,7 @@ struct pipe_h264_enc_picture_desc bool not_referenced; bool enable_vui; - struct util_hash_table *frame_idx; + struct hash_table *frame_idx; }; @@ -513,7 +513,7 @@ struct pipe_h265_enc_picture_desc unsigned ref_idx_l0; unsigned ref_idx_l1; bool not_referenced; - struct util_hash_table *frame_idx; + struct hash_table *frame_idx; }; struct pipe_h265_sps |