aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/omx/vid_enc_common.c
diff options
context:
space:
mode:
authorPierre-Eric Pelloux-Prayer <[email protected]>2020-02-05 10:21:20 +0100
committerPierre-Eric Pelloux-Prayer <[email protected]>2020-02-27 10:01:31 +0100
commit24f2b0a8560f34745854bf8263fa7c2d0f95f2bc (patch)
tree775bf398b06d9e3c10cc4d5f9a0f9ca80d09ccea /src/gallium/state_trackers/omx/vid_enc_common.c
parent87807298a307d4e38195dc04f66c26404e7cb791 (diff)
gallium/video: remove pipe_video_buffer.chroma_format
chroma_format depends on buffer_format so use the format_to_chroma_format helper instead of storing it next to buffer_format. This avoids bugs where one value is changed without updating the other. Reviewed-by: Marek Olšák <[email protected]> Acked-by: Leo Liu <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3738>
Diffstat (limited to 'src/gallium/state_trackers/omx/vid_enc_common.c')
-rw-r--r--src/gallium/state_trackers/omx/vid_enc_common.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/omx/vid_enc_common.c b/src/gallium/state_trackers/omx/vid_enc_common.c
index c15c3516973..1cc0c130e5d 100644
--- a/src/gallium/state_trackers/omx/vid_enc_common.c
+++ b/src/gallium/state_trackers/omx/vid_enc_common.c
@@ -194,7 +194,6 @@ struct encode_task *enc_NeedTask_common(vid_enc_PrivateType * priv, OMX_VIDEO_PO
return NULL;
templat.buffer_format = PIPE_FORMAT_NV12;
- templat.chroma_format = PIPE_VIDEO_CHROMA_FORMAT_420;
templat.width = def->nFrameWidth;
templat.height = def->nFrameHeight;
templat.interlaced = false;