Message ID | HE1PR06MB40116C92C3D52C5957EF48E9ACBF0@HE1PR06MB4011.eurprd06.prod.outlook.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | media: hantro: H264 fixes and improvements | expand |
Hi Jonas, On Sun, 2019-09-01 at 12:45 +0000, Jonas Karlman wrote: > Scaling list supplied from userspace using ffmpeg and libva-v4l2-request > is already in matrix order and can be used without applying the inverse > scanning process. "in matrix order" is equivalent to "in raster scan order"? Could you add this requirement to the V4L2_CID_MPEG_VIDEO_H264_SCALING_MATRIX documentation? > The HW also only support 8x8 scaling list for the Y component, indices 0 > and 3 in the scaling list supplied from userspace. > > Remove reordering and write the scaling matrix in an order expected by > the VPU, also only allocate memory for the two 8x8 lists used. > > Fixes: a9471e25629b ("media: hantro: Add core bits to support H264 decoding") > Signed-off-by: Jonas Karlman <jonas@kwiboo.se> > --- > drivers/staging/media/hantro/hantro_h264.c | 64 +++++++--------------- > 1 file changed, 20 insertions(+), 44 deletions(-) > > diff --git a/drivers/staging/media/hantro/hantro_h264.c b/drivers/staging/media/hantro/hantro_h264.c > index 0d758e0c0f99..e2d01145ac4f 100644 > --- a/drivers/staging/media/hantro/hantro_h264.c > +++ b/drivers/staging/media/hantro/hantro_h264.c > @@ -20,7 +20,7 @@ > /* Size with u32 units. */ > #define CABAC_INIT_BUFFER_SIZE (460 * 2) > #define POC_BUFFER_SIZE 34 > -#define SCALING_LIST_SIZE (6 * 16 + 6 * 64) > +#define SCALING_LIST_SIZE (6 * 16 + 2 * 64) This changes the size of struct hantro_h264_dec_priv_tbl. Did this describe the auxiliary buffer format incorrectly before? > #define POC_CMP(p0, p1) ((p0) < (p1) ? -1 : 1) > > @@ -194,57 +194,33 @@ static const u32 h264_cabac_table[] = { > 0x1f0c2517, 0x1f261440 > }; > > -/* > - * NOTE: The scaling lists are in zig-zag order, apply inverse scanning process > - * to get the values in matrix order. In addition, the hardware requires bytes > - * swapped within each subsequent 4 bytes. Both arrays below include both > - * transformations. > - */ > -static const u32 zig_zag_4x4[] = { > - 3, 2, 7, 11, 6, 1, 0, 5, 10, 15, 14, 9, 4, 8, 13, 12 > -}; > - > -static const u32 zig_zag_8x8[] = { > - 3, 2, 11, 19, 10, 1, 0, 9, 18, 27, 35, 26, 17, 8, 7, 6, > - 15, 16, 25, 34, 43, 51, 42, 33, 24, 23, 14, 5, 4, 13, 22, 31, > - 32, 41, 50, 59, 58, 49, 40, 39, 30, 21, 12, 20, 29, 38, 47, 48, > - 57, 56, 55, 46, 37, 28, 36, 45, 54, 63, 62, 53, 44, 52, 61, 60 > -}; > - > static void > reorder_scaling_list(struct hantro_ctx *ctx) > { > const struct hantro_h264_dec_ctrls *ctrls = &ctx->h264_dec.ctrls; > const struct v4l2_ctrl_h264_scaling_matrix *scaling = ctrls->scaling; > - const size_t num_list_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4); > - const size_t list_len_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4[0]); > - const size_t num_list_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8); > - const size_t list_len_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8[0]); > struct hantro_h264_dec_priv_tbl *tbl = ctx->h264_dec.priv.cpu; > - u8 *dst = tbl->scaling_list; > - const u8 *src; > - int i, j; > - > - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_4x4) != list_len_4x4); > - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_8x8) != list_len_8x8); > - BUILD_BUG_ON(ARRAY_SIZE(tbl->scaling_list) != > - num_list_4x4 * list_len_4x4 + > - num_list_8x8 * list_len_8x8); > - > - src = &scaling->scaling_list_4x4[0][0]; > - for (i = 0; i < num_list_4x4; ++i) { > - for (j = 0; j < list_len_4x4; ++j) > - dst[zig_zag_4x4[j]] = src[j]; > - src += list_len_4x4; > - dst += list_len_4x4; > + u32 *dst = (u32 *)tbl->scaling_list; > + u32 i, j, tmp; > + > + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_4x4); i++) { > + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_4x4[0]) / 4; j++) { > + tmp = (scaling->scaling_list_4x4[i][4 * j + 0] << 24) | > + (scaling->scaling_list_4x4[i][4 * j + 1] << 16) | > + (scaling->scaling_list_4x4[i][4 * j + 2] << 8) | > + (scaling->scaling_list_4x4[i][4 * j + 3]); > + *dst++ = tmp; > + } This looks like it could use swab32(). > } > > - src = &scaling->scaling_list_8x8[0][0]; > - for (i = 0; i < num_list_8x8; ++i) { > - for (j = 0; j < list_len_8x8; ++j) > - dst[zig_zag_8x8[j]] = src[j]; > - src += list_len_8x8; > - dst += list_len_8x8; > + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_8x8); i += 3) { > + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_8x8[0]) / 4; j++) { > + tmp = (scaling->scaling_list_8x8[i][4 * j + 0] << 24) | > + (scaling->scaling_list_8x8[i][4 * j + 1] << 16) | > + (scaling->scaling_list_8x8[i][4 * j + 2] << 8) | > + (scaling->scaling_list_8x8[i][4 * j + 3]); > + *dst++ = tmp; > + } After this change, the second 8x8 scaling list has moved to a different offset. Is this where the hardware has always been looking for it, or is there a change missing in another place? regards Philipp
On 2019-09-02 16:00, Philipp Zabel wrote: > Hi Jonas, > > On Sun, 2019-09-01 at 12:45 +0000, Jonas Karlman wrote: >> Scaling list supplied from userspace using ffmpeg and libva-v4l2-request >> is already in matrix order and can be used without applying the inverse >> scanning process. > "in matrix order" is equivalent to "in raster scan order"? The values supplied by ffmpeg and libva-v4l2-request is in the order after the inverse scanning process has been applied (scaling list has been transformed into a scaling matrix). Not sure what this is called, "matrix order" seemed close enough. Since there is two scan orders, zig-zag and field, and cedrus already expecting the values in "matrix" order, it seems more logical to let userspace handle the inverse scanning process. > > Could you add this requirement to the > V4L2_CID_MPEG_VIDEO_H264_SCALING_MATRIX documentation? Sure, I will update documentation in v2. > >> The HW also only support 8x8 scaling list for the Y component, indices 0 >> and 3 in the scaling list supplied from userspace. >> >> Remove reordering and write the scaling matrix in an order expected by >> the VPU, also only allocate memory for the two 8x8 lists used. >> >> Fixes: a9471e25629b ("media: hantro: Add core bits to support H264 decoding") >> Signed-off-by: Jonas Karlman <jonas@kwiboo.se> >> --- >> drivers/staging/media/hantro/hantro_h264.c | 64 +++++++--------------- >> 1 file changed, 20 insertions(+), 44 deletions(-) >> >> diff --git a/drivers/staging/media/hantro/hantro_h264.c b/drivers/staging/media/hantro/hantro_h264.c >> index 0d758e0c0f99..e2d01145ac4f 100644 >> --- a/drivers/staging/media/hantro/hantro_h264.c >> +++ b/drivers/staging/media/hantro/hantro_h264.c >> @@ -20,7 +20,7 @@ >> /* Size with u32 units. */ >> #define CABAC_INIT_BUFFER_SIZE (460 * 2) >> #define POC_BUFFER_SIZE 34 >> -#define SCALING_LIST_SIZE (6 * 16 + 6 * 64) >> +#define SCALING_LIST_SIZE (6 * 16 + 2 * 64) > This changes the size of struct hantro_h264_dec_priv_tbl. Did this > describe the auxiliary buffer format incorrectly before? Based on RKMPP and Hantro SDK the HW expects the 8x8 inter/intra list for Y-component to be located at indices 0 and 1, lists for Cr/Cb is only used for 4:4:4 and HW only supports 4:0:0/4:2:0 if I am not mistaken. So the unused extra 4 lists at the end of the auxiliary buffer seemed like a waste, also RKMPP and Hantro SDK only seemed to allocate space for 2 lists. > >> #define POC_CMP(p0, p1) ((p0) < (p1) ? -1 : 1) >> >> @@ -194,57 +194,33 @@ static const u32 h264_cabac_table[] = { >> 0x1f0c2517, 0x1f261440 >> }; >> >> -/* >> - * NOTE: The scaling lists are in zig-zag order, apply inverse scanning process >> - * to get the values in matrix order. In addition, the hardware requires bytes >> - * swapped within each subsequent 4 bytes. Both arrays below include both >> - * transformations. >> - */ >> -static const u32 zig_zag_4x4[] = { >> - 3, 2, 7, 11, 6, 1, 0, 5, 10, 15, 14, 9, 4, 8, 13, 12 >> -}; >> - >> -static const u32 zig_zag_8x8[] = { >> - 3, 2, 11, 19, 10, 1, 0, 9, 18, 27, 35, 26, 17, 8, 7, 6, >> - 15, 16, 25, 34, 43, 51, 42, 33, 24, 23, 14, 5, 4, 13, 22, 31, >> - 32, 41, 50, 59, 58, 49, 40, 39, 30, 21, 12, 20, 29, 38, 47, 48, >> - 57, 56, 55, 46, 37, 28, 36, 45, 54, 63, 62, 53, 44, 52, 61, 60 >> -}; >> - >> static void >> reorder_scaling_list(struct hantro_ctx *ctx) >> { >> const struct hantro_h264_dec_ctrls *ctrls = &ctx->h264_dec.ctrls; >> const struct v4l2_ctrl_h264_scaling_matrix *scaling = ctrls->scaling; >> - const size_t num_list_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4); >> - const size_t list_len_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4[0]); >> - const size_t num_list_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8); >> - const size_t list_len_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8[0]); >> struct hantro_h264_dec_priv_tbl *tbl = ctx->h264_dec.priv.cpu; >> - u8 *dst = tbl->scaling_list; >> - const u8 *src; >> - int i, j; >> - >> - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_4x4) != list_len_4x4); >> - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_8x8) != list_len_8x8); >> - BUILD_BUG_ON(ARRAY_SIZE(tbl->scaling_list) != >> - num_list_4x4 * list_len_4x4 + >> - num_list_8x8 * list_len_8x8); >> - >> - src = &scaling->scaling_list_4x4[0][0]; >> - for (i = 0; i < num_list_4x4; ++i) { >> - for (j = 0; j < list_len_4x4; ++j) >> - dst[zig_zag_4x4[j]] = src[j]; >> - src += list_len_4x4; >> - dst += list_len_4x4; >> + u32 *dst = (u32 *)tbl->scaling_list; >> + u32 i, j, tmp; >> + >> + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_4x4); i++) { >> + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_4x4[0]) / 4; j++) { >> + tmp = (scaling->scaling_list_4x4[i][4 * j + 0] << 24) | >> + (scaling->scaling_list_4x4[i][4 * j + 1] << 16) | >> + (scaling->scaling_list_4x4[i][4 * j + 2] << 8) | >> + (scaling->scaling_list_4x4[i][4 * j + 3]); >> + *dst++ = tmp; >> + } > This looks like it could use swab32(). Thanks for the tip, will look into and change in v2. > >> } >> >> - src = &scaling->scaling_list_8x8[0][0]; >> - for (i = 0; i < num_list_8x8; ++i) { >> - for (j = 0; j < list_len_8x8; ++j) >> - dst[zig_zag_8x8[j]] = src[j]; >> - src += list_len_8x8; >> - dst += list_len_8x8; >> + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_8x8); i += 3) { >> + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_8x8[0]) / 4; j++) { >> + tmp = (scaling->scaling_list_8x8[i][4 * j + 0] << 24) | >> + (scaling->scaling_list_8x8[i][4 * j + 1] << 16) | >> + (scaling->scaling_list_8x8[i][4 * j + 2] << 8) | >> + (scaling->scaling_list_8x8[i][4 * j + 3]); >> + *dst++ = tmp; >> + } > After this change, the second 8x8 scaling list has moved to a different > offset. Is this where the hardware has always been looking for it, or is > there a change missing in another place? As mentioned above HW only looks at indices 0 and 1, and ffmpeg will store the inter/intra Y list at indices 0 and 3 as seen at [1], in similar way cedrus only use indices 0 and 3 at [2]. FFmpeg memcpy entire scaling_matrix8 to scaling_list_8x8 for v4l2-request-api and memcpy scaling_matrix8[0] and scaling_matrix8[3] for vaapi. You can see the effect of this patch using the h264_tivo_sample.ts sample from cover letter, patch 3-8 must be applied. With this patch applied the green football field will stay green, without the patch the field will shift in colors. [1] https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/h264_ps.c#L299-L308 [2] https://git.linuxtv.org/media_tree.git/tree/drivers/staging/media/sunxi/cedrus/cedrus_h264.c#n231 Regards, Jonas > > regards > Philipp
On 2019-09-02 18:18, Jonas Karlman wrote: > On 2019-09-02 16:00, Philipp Zabel wrote: >> Hi Jonas, >> >> On Sun, 2019-09-01 at 12:45 +0000, Jonas Karlman wrote: >>> Scaling list supplied from userspace using ffmpeg and libva-v4l2-request >>> is already in matrix order and can be used without applying the inverse >>> scanning process. >> "in matrix order" is equivalent to "in raster scan order"? > The values supplied by ffmpeg and libva-v4l2-request is in the order after the > inverse scanning process has been applied (scaling list has been transformed > into a scaling matrix). Not sure what this is called, "matrix order" seemed > close enough. > > Since there is two scan orders, zig-zag and field, and cedrus already expecting > the values in "matrix" order, it seems more logical to let userspace handle the > inverse scanning process. After a closer look both ffmpeg and rkmpp only apply zig-zag scan and not field scan, ffmpeg will memcpy the scaling_matrix4/8 as is for vaapi, vdpau and nvdec, for dxva2 there is a workaround flag that controls if zig-zag should be applied or not. I suggest a clarification of the expect order of values and use of the same value order as vaapi, vdpau and nvdec. i.e. have the scaling list values in "matrix order"/"raster order", after zig-zag scan has been applied, as is currently expected by cedrus and hantro after this patch. I would also suggest a change to the expected order of the 8x8 scaling lists to follow the H264 standard, instead of the ffmpeg order like this patch and cedrus driver currently expects. Expected scaling list order would then be, for 4x4: Intra Y, Intra Cb, Intra Cr, Inter Y, Inter Cb, Inter Cr, for 8x8: Intra Y, Inter Y, Intra Cb, Inter Cb, Intra Cr, Inter Cr. Regards, Jonas > >> Could you add this requirement to the >> V4L2_CID_MPEG_VIDEO_H264_SCALING_MATRIX documentation? > Sure, I will update documentation in v2. > >>> The HW also only support 8x8 scaling list for the Y component, indices 0 >>> and 3 in the scaling list supplied from userspace. >>> >>> Remove reordering and write the scaling matrix in an order expected by >>> the VPU, also only allocate memory for the two 8x8 lists used. >>> >>> Fixes: a9471e25629b ("media: hantro: Add core bits to support H264 decoding") >>> Signed-off-by: Jonas Karlman <jonas@kwiboo.se> >>> --- >>> drivers/staging/media/hantro/hantro_h264.c | 64 +++++++--------------- >>> 1 file changed, 20 insertions(+), 44 deletions(-) >>> >>> diff --git a/drivers/staging/media/hantro/hantro_h264.c b/drivers/staging/media/hantro/hantro_h264.c >>> index 0d758e0c0f99..e2d01145ac4f 100644 >>> --- a/drivers/staging/media/hantro/hantro_h264.c >>> +++ b/drivers/staging/media/hantro/hantro_h264.c >>> @@ -20,7 +20,7 @@ >>> /* Size with u32 units. */ >>> #define CABAC_INIT_BUFFER_SIZE (460 * 2) >>> #define POC_BUFFER_SIZE 34 >>> -#define SCALING_LIST_SIZE (6 * 16 + 6 * 64) >>> +#define SCALING_LIST_SIZE (6 * 16 + 2 * 64) >> This changes the size of struct hantro_h264_dec_priv_tbl. Did this >> describe the auxiliary buffer format incorrectly before? > Based on RKMPP and Hantro SDK the HW expects the 8x8 inter/intra list for > Y-component to be located at indices 0 and 1, lists for Cr/Cb is only used for > 4:4:4 and HW only supports 4:0:0/4:2:0 if I am not mistaken. So the unused > extra 4 lists at the end of the auxiliary buffer seemed like a waste, > also RKMPP and Hantro SDK only seemed to allocate space for 2 lists. > >>> #define POC_CMP(p0, p1) ((p0) < (p1) ? -1 : 1) >>> >>> @@ -194,57 +194,33 @@ static const u32 h264_cabac_table[] = { >>> 0x1f0c2517, 0x1f261440 >>> }; >>> >>> -/* >>> - * NOTE: The scaling lists are in zig-zag order, apply inverse scanning process >>> - * to get the values in matrix order. In addition, the hardware requires bytes >>> - * swapped within each subsequent 4 bytes. Both arrays below include both >>> - * transformations. >>> - */ >>> -static const u32 zig_zag_4x4[] = { >>> - 3, 2, 7, 11, 6, 1, 0, 5, 10, 15, 14, 9, 4, 8, 13, 12 >>> -}; >>> - >>> -static const u32 zig_zag_8x8[] = { >>> - 3, 2, 11, 19, 10, 1, 0, 9, 18, 27, 35, 26, 17, 8, 7, 6, >>> - 15, 16, 25, 34, 43, 51, 42, 33, 24, 23, 14, 5, 4, 13, 22, 31, >>> - 32, 41, 50, 59, 58, 49, 40, 39, 30, 21, 12, 20, 29, 38, 47, 48, >>> - 57, 56, 55, 46, 37, 28, 36, 45, 54, 63, 62, 53, 44, 52, 61, 60 >>> -}; >>> - >>> static void >>> reorder_scaling_list(struct hantro_ctx *ctx) >>> { >>> const struct hantro_h264_dec_ctrls *ctrls = &ctx->h264_dec.ctrls; >>> const struct v4l2_ctrl_h264_scaling_matrix *scaling = ctrls->scaling; >>> - const size_t num_list_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4); >>> - const size_t list_len_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4[0]); >>> - const size_t num_list_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8); >>> - const size_t list_len_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8[0]); >>> struct hantro_h264_dec_priv_tbl *tbl = ctx->h264_dec.priv.cpu; >>> - u8 *dst = tbl->scaling_list; >>> - const u8 *src; >>> - int i, j; >>> - >>> - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_4x4) != list_len_4x4); >>> - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_8x8) != list_len_8x8); >>> - BUILD_BUG_ON(ARRAY_SIZE(tbl->scaling_list) != >>> - num_list_4x4 * list_len_4x4 + >>> - num_list_8x8 * list_len_8x8); >>> - >>> - src = &scaling->scaling_list_4x4[0][0]; >>> - for (i = 0; i < num_list_4x4; ++i) { >>> - for (j = 0; j < list_len_4x4; ++j) >>> - dst[zig_zag_4x4[j]] = src[j]; >>> - src += list_len_4x4; >>> - dst += list_len_4x4; >>> + u32 *dst = (u32 *)tbl->scaling_list; >>> + u32 i, j, tmp; >>> + >>> + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_4x4); i++) { >>> + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_4x4[0]) / 4; j++) { >>> + tmp = (scaling->scaling_list_4x4[i][4 * j + 0] << 24) | >>> + (scaling->scaling_list_4x4[i][4 * j + 1] << 16) | >>> + (scaling->scaling_list_4x4[i][4 * j + 2] << 8) | >>> + (scaling->scaling_list_4x4[i][4 * j + 3]); >>> + *dst++ = tmp; >>> + } >> This looks like it could use swab32(). > Thanks for the tip, will look into and change in v2. > >>> } >>> >>> - src = &scaling->scaling_list_8x8[0][0]; >>> - for (i = 0; i < num_list_8x8; ++i) { >>> - for (j = 0; j < list_len_8x8; ++j) >>> - dst[zig_zag_8x8[j]] = src[j]; >>> - src += list_len_8x8; >>> - dst += list_len_8x8; >>> + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_8x8); i += 3) { >>> + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_8x8[0]) / 4; j++) { >>> + tmp = (scaling->scaling_list_8x8[i][4 * j + 0] << 24) | >>> + (scaling->scaling_list_8x8[i][4 * j + 1] << 16) | >>> + (scaling->scaling_list_8x8[i][4 * j + 2] << 8) | >>> + (scaling->scaling_list_8x8[i][4 * j + 3]); >>> + *dst++ = tmp; >>> + } >> After this change, the second 8x8 scaling list has moved to a different >> offset. Is this where the hardware has always been looking for it, or is >> there a change missing in another place? > As mentioned above HW only looks at indices 0 and 1, and ffmpeg will store the > inter/intra Y list at indices 0 and 3 as seen at [1], in similar way cedrus only > use indices 0 and 3 at [2]. > FFmpeg memcpy entire scaling_matrix8 to scaling_list_8x8 for v4l2-request-api > and memcpy scaling_matrix8[0] and scaling_matrix8[3] for vaapi. > > You can see the effect of this patch using the h264_tivo_sample.ts sample from > cover letter, patch 3-8 must be applied. With this patch applied the green > football field will stay green, without the patch the field will shift in colors. > > [1] https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/h264_ps.c#L299-L308 > [2] https://git.linuxtv.org/media_tree.git/tree/drivers/staging/media/sunxi/cedrus/cedrus_h264.c#n231 > > Regards, > Jonas > >> regards >> Philipp
On Mon, 2019-09-02 at 16:18 +0000, Jonas Karlman wrote: > On 2019-09-02 16:00, Philipp Zabel wrote: > > Hi Jonas, > > > > On Sun, 2019-09-01 at 12:45 +0000, Jonas Karlman wrote: > > > Scaling list supplied from userspace using ffmpeg and libva-v4l2-request > > > is already in matrix order and can be used without applying the inverse > > > scanning process. > > > > "in matrix order" is equivalent to "in raster scan order"? > > The values supplied by ffmpeg and libva-v4l2-request is in the order after the > inverse scanning process has been applied (scaling list has been transformed > into a scaling matrix). Not sure what this is called, "matrix order" seemed > close enough. Ok, after reading chapters 8.5.6 Inverse scanning process for 4x4 transform coefficients and scaling lists 8.5.7 Inverse scanning process for 8x8 transform coefficients and scaling lists of ITU-T Rec. H.264, this seems clear enough. I just asked to make sure, because libva documentation uses the term "raster scan" [1]. [1] http://intel.github.io/libva/structVAIQMatrixBufferH264.html > Since there is two scan orders, zig-zag and field, and cedrus already expecting > the values in "matrix" order, it seems more logical to let userspace handle the > inverse scanning process. I agree. [...] > > This changes the size of struct hantro_h264_dec_priv_tbl. Did this > > describe the auxiliary buffer format incorrectly before? > > Based on RKMPP and Hantro SDK the HW expects the 8x8 inter/intra list for > Y-component to be located at indices 0 and 1, lists for Cr/Cb is only used for > 4:4:4 and HW only supports 4:0:0/4:2:0 if I am not mistaken. So the unused > extra 4 lists at the end of the auxiliary buffer seemed like a waste, > also RKMPP and Hantro SDK only seemed to allocate space for 2 lists. Ok. > > After this change, the second 8x8 scaling list has moved to a different > > offset. Is this where the hardware has always been looking for it, or is > > there a change missing in another place? > > As mentioned above HW only looks at indices 0 and 1, and ffmpeg will store the > inter/intra Y list at indices 0 and 3 as seen at [1], in similar way cedrus only > use indices 0 and 3 at [2]. > FFmpeg memcpy entire scaling_matrix8 to scaling_list_8x8 for v4l2-request-api > and memcpy scaling_matrix8[0] and scaling_matrix8[3] for vaapi. > > You can see the effect of this patch using the h264_tivo_sample.ts sample from > cover letter, patch 3-8 must be applied. With this patch applied the green > football field will stay green, without the patch the field will shift in colors. > > [1] https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/h264_ps.c#L299-L308 > [2] https://git.linuxtv.org/media_tree.git/tree/drivers/staging/media/sunxi/cedrus/cedrus_h264.c#n231 Thank you, I'll try this. regards Philipp
On Tue, 2019-09-03 at 07:54 +0000, Jonas Karlman wrote: [...] > After a closer look both ffmpeg and rkmpp only apply zig-zag scan and not field scan, > ffmpeg will memcpy the scaling_matrix4/8 as is for vaapi, vdpau and nvdec, > for dxva2 there is a workaround flag that controls if zig-zag should be applied or not. > > I suggest a clarification of the expect order of values and use of the same value order as vaapi, vdpau and nvdec. > i.e. have the scaling list values in "matrix order"/"raster order", after zig-zag scan has been applied, > as is currently expected by cedrus and hantro after this patch. > > I would also suggest a change to the expected order of the 8x8 scaling lists to follow the H264 standard, > instead of the ffmpeg order like this patch and cedrus driver currently expects. > > Expected scaling list order would then be, > for 4x4: Intra Y, Intra Cb, Intra Cr, Inter Y, Inter Cb, Inter Cr, > for 8x8: Intra Y, Inter Y, Intra Cb, Inter Cb, Intra Cr, Inter Cr. I'm in favor of both, it seems unnecessary to reorder the lists in userspace only to have the kernel reorder them back before passing them to the hardware. regards Philipp
Hi Jonas, Thanks for your patch. On Mon, 2019-09-02 at 16:18 +0000, Jonas Karlman wrote: [..] > > > > diff --git a/drivers/staging/media/hantro/hantro_h264.c b/drivers/staging/media/hantro/hantro_h264.c > > > index 0d758e0c0f99..e2d01145ac4f 100644 > > > --- a/drivers/staging/media/hantro/hantro_h264.c > > > +++ b/drivers/staging/media/hantro/hantro_h264.c > > > @@ -20,7 +20,7 @@ > > > /* Size with u32 units. */ > > > #define CABAC_INIT_BUFFER_SIZE (460 * 2) > > > #define POC_BUFFER_SIZE 34 > > > -#define SCALING_LIST_SIZE (6 * 16 + 6 * 64) > > > +#define SCALING_LIST_SIZE (6 * 16 + 2 * 64) > > This changes the size of struct hantro_h264_dec_priv_tbl. Did this > > describe the auxiliary buffer format incorrectly before? > > Based on RKMPP and Hantro SDK the HW expects the 8x8 inter/intra list for > Y-component to be located at indices 0 and 1, lists for Cr/Cb is only used for > 4:4:4 and HW only supports 4:0:0/4:2:0 if I am not mistaken. So the unused > extra 4 lists at the end of the auxiliary buffer seemed like a waste, > also RKMPP and Hantro SDK only seemed to allocate space for 2 lists. > I think it would make a lot of sense to document what the hardware expects somewhere, perhaps as part of the struct hantro_h264_dec_priv_tbl documentation? Thanks, Ezequiel
diff --git a/drivers/staging/media/hantro/hantro_h264.c b/drivers/staging/media/hantro/hantro_h264.c index 0d758e0c0f99..e2d01145ac4f 100644 --- a/drivers/staging/media/hantro/hantro_h264.c +++ b/drivers/staging/media/hantro/hantro_h264.c @@ -20,7 +20,7 @@ /* Size with u32 units. */ #define CABAC_INIT_BUFFER_SIZE (460 * 2) #define POC_BUFFER_SIZE 34 -#define SCALING_LIST_SIZE (6 * 16 + 6 * 64) +#define SCALING_LIST_SIZE (6 * 16 + 2 * 64) #define POC_CMP(p0, p1) ((p0) < (p1) ? -1 : 1) @@ -194,57 +194,33 @@ static const u32 h264_cabac_table[] = { 0x1f0c2517, 0x1f261440 }; -/* - * NOTE: The scaling lists are in zig-zag order, apply inverse scanning process - * to get the values in matrix order. In addition, the hardware requires bytes - * swapped within each subsequent 4 bytes. Both arrays below include both - * transformations. - */ -static const u32 zig_zag_4x4[] = { - 3, 2, 7, 11, 6, 1, 0, 5, 10, 15, 14, 9, 4, 8, 13, 12 -}; - -static const u32 zig_zag_8x8[] = { - 3, 2, 11, 19, 10, 1, 0, 9, 18, 27, 35, 26, 17, 8, 7, 6, - 15, 16, 25, 34, 43, 51, 42, 33, 24, 23, 14, 5, 4, 13, 22, 31, - 32, 41, 50, 59, 58, 49, 40, 39, 30, 21, 12, 20, 29, 38, 47, 48, - 57, 56, 55, 46, 37, 28, 36, 45, 54, 63, 62, 53, 44, 52, 61, 60 -}; - static void reorder_scaling_list(struct hantro_ctx *ctx) { const struct hantro_h264_dec_ctrls *ctrls = &ctx->h264_dec.ctrls; const struct v4l2_ctrl_h264_scaling_matrix *scaling = ctrls->scaling; - const size_t num_list_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4); - const size_t list_len_4x4 = ARRAY_SIZE(scaling->scaling_list_4x4[0]); - const size_t num_list_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8); - const size_t list_len_8x8 = ARRAY_SIZE(scaling->scaling_list_8x8[0]); struct hantro_h264_dec_priv_tbl *tbl = ctx->h264_dec.priv.cpu; - u8 *dst = tbl->scaling_list; - const u8 *src; - int i, j; - - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_4x4) != list_len_4x4); - BUILD_BUG_ON(ARRAY_SIZE(zig_zag_8x8) != list_len_8x8); - BUILD_BUG_ON(ARRAY_SIZE(tbl->scaling_list) != - num_list_4x4 * list_len_4x4 + - num_list_8x8 * list_len_8x8); - - src = &scaling->scaling_list_4x4[0][0]; - for (i = 0; i < num_list_4x4; ++i) { - for (j = 0; j < list_len_4x4; ++j) - dst[zig_zag_4x4[j]] = src[j]; - src += list_len_4x4; - dst += list_len_4x4; + u32 *dst = (u32 *)tbl->scaling_list; + u32 i, j, tmp; + + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_4x4); i++) { + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_4x4[0]) / 4; j++) { + tmp = (scaling->scaling_list_4x4[i][4 * j + 0] << 24) | + (scaling->scaling_list_4x4[i][4 * j + 1] << 16) | + (scaling->scaling_list_4x4[i][4 * j + 2] << 8) | + (scaling->scaling_list_4x4[i][4 * j + 3]); + *dst++ = tmp; + } } - src = &scaling->scaling_list_8x8[0][0]; - for (i = 0; i < num_list_8x8; ++i) { - for (j = 0; j < list_len_8x8; ++j) - dst[zig_zag_8x8[j]] = src[j]; - src += list_len_8x8; - dst += list_len_8x8; + for (i = 0; i < ARRAY_SIZE(scaling->scaling_list_8x8); i += 3) { + for (j = 0; j < ARRAY_SIZE(scaling->scaling_list_8x8[0]) / 4; j++) { + tmp = (scaling->scaling_list_8x8[i][4 * j + 0] << 24) | + (scaling->scaling_list_8x8[i][4 * j + 1] << 16) | + (scaling->scaling_list_8x8[i][4 * j + 2] << 8) | + (scaling->scaling_list_8x8[i][4 * j + 3]); + *dst++ = tmp; + } } }
Scaling list supplied from userspace using ffmpeg and libva-v4l2-request is already in matrix order and can be used without applying the inverse scanning process. The HW also only support 8x8 scaling list for the Y component, indices 0 and 3 in the scaling list supplied from userspace. Remove reordering and write the scaling matrix in an order expected by the VPU, also only allocate memory for the two 8x8 lists used. Fixes: a9471e25629b ("media: hantro: Add core bits to support H264 decoding") Signed-off-by: Jonas Karlman <jonas@kwiboo.se> --- drivers/staging/media/hantro/hantro_h264.c | 64 +++++++--------------- 1 file changed, 20 insertions(+), 44 deletions(-)