mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
[media] s5p-mfc: Fix frame skip bug
The issue was seen in VP8 decoding where the last frame was skipped by the driver. This patch gets the correct frame_type value to fix this bug. Signed-off-by: Arun Kumar K <arun.kk@samsung.com> Signed-off-by: Arun Mankuzhi <arun.m@samsung.com> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
e34a89b397
commit
90c0ae5009
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ static void s5p_mfc_handle_frame_new(struct s5p_mfc_ctx *ctx, unsigned int err)
|
||||||
unsigned int frame_type;
|
unsigned int frame_type;
|
||||||
|
|
||||||
dspl_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_y_adr, dev);
|
dspl_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_y_adr, dev);
|
||||||
frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_dec_frame_type, dev);
|
frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_disp_frame_type, ctx);
|
||||||
|
|
||||||
/* If frame is same as previous then skip and do not dequeue */
|
/* If frame is same as previous then skip and do not dequeue */
|
||||||
if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED) {
|
if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue