radeon/uvd: add Define Restart Interval to MJPEG bitstream reconstruction
It adds the capacity to decode MJPEG stream with DRI marker Signed-off-by: Leo Liu <leo.liu@amd.com>
This commit is contained in:
@@ -1012,6 +1012,17 @@ static void get_mjpeg_slice_header(struct ruvd_decoder *dec, struct pipe_mjpeg_p
|
||||
|
||||
saved_size = size;
|
||||
|
||||
/* DRI */
|
||||
if (pic->slice_parameter.restart_interval) {
|
||||
buf[size++] = 0xff;
|
||||
buf[size++] = 0xdd;
|
||||
buf[size++] = 0x00;
|
||||
buf[size++] = 0x04;
|
||||
bs = (uint16_t*)&buf[size++];
|
||||
*bs = util_bswap16(pic->slice_parameter.restart_interval);
|
||||
saved_size = ++size;
|
||||
}
|
||||
|
||||
/* SOF */
|
||||
buf[size++] = 0xff;
|
||||
buf[size++] = 0xc0;
|
||||
|
||||
Reference in New Issue
Block a user