mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 01:54:11 +00:00
v4l2slvp8dec: Ensure width/height is always set
Our parser strictly read the bitstream. As it's known from DXVA that always having a valid width/height might be needed, use the cached width/height instead of the value from the parser. This didn't impact Hantro driver. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1245>
This commit is contained in:
parent
ffd74fb5ec
commit
a449815f95
1 changed files with 2 additions and 2 deletions
|
@ -335,8 +335,8 @@ gst_v4l2_codec_vp8_dec_fill_frame_header (GstV4l2CodecVp8Dec * self,
|
|||
.bit_count = frame_hdr->rd_count
|
||||
},
|
||||
|
||||
.width = frame_hdr->width,
|
||||
.height = frame_hdr->height,
|
||||
.width = self->width,
|
||||
.height = self->height,
|
||||
|
||||
.horizontal_scale = frame_hdr->horiz_scale_code,
|
||||
.vertical_scale = frame_hdr->vert_scale_code,
|
||||
|
|
Loading…
Reference in a new issue