All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: coda: Fix definition of CODA_STD_MJPG
@ 2017-11-08 14:12 Martin Kepplinger
  2017-11-08 15:17 ` Philipp Zabel
  0 siblings, 1 reply; 2+ messages in thread
From: Martin Kepplinger @ 2017-11-08 14:12 UTC (permalink / raw)
  To: p.zabel, mchehab; +Cc: linux-media, linux-kernel, Martin Kepplinger

According to i.MX 6 VPU API Reference Manual Rev. L3.0.35_1.1.0, 01/2013
chapter 3.2.1.5, the MJPG video codec is refernced to by number 7, not 3.
So change this accordingly.

This isn't yet being used right now and therefore probably hasn't been
noticed. Fixing this avoids causing trouble in the future.

Signed-off-by: Martin Kepplinger <martink@posteo.de>
---
 drivers/media/platform/coda/coda_regs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/platform/coda/coda_regs.h b/drivers/media/platform/coda/coda_regs.h
index 38df5fd9a2fa..8d726faaf86e 100644
--- a/drivers/media/platform/coda/coda_regs.h
+++ b/drivers/media/platform/coda/coda_regs.h
@@ -254,7 +254,7 @@
 #define		CODA9_STD_H264					0
 #define		CODA_STD_H263					1
 #define		CODA_STD_H264					2
-#define		CODA_STD_MJPG					3
+#define		CODA_STD_MJPG					7
 #define		CODA9_STD_MPEG4					3
 
 #define CODA_CMD_ENC_SEQ_SRC_SIZE				0x190
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] media: coda: Fix definition of CODA_STD_MJPG
  2017-11-08 14:12 [PATCH] media: coda: Fix definition of CODA_STD_MJPG Martin Kepplinger
@ 2017-11-08 15:17 ` Philipp Zabel
  0 siblings, 0 replies; 2+ messages in thread
From: Philipp Zabel @ 2017-11-08 15:17 UTC (permalink / raw)
  To: Martin Kepplinger, mchehab; +Cc: linux-media, linux-kernel

Hi Martin,

thank you for the patch. I'd prefer to just drop CODA_STD_MJPG
altogether, to avoid confusion. Explanation below:

On Wed, 2017-11-08 at 15:12 +0100, Martin Kepplinger wrote:
> According to i.MX 6 VPU API Reference Manual Rev. L3.0.35_1.1.0, 01/2013
> chapter 3.2.1.5, the MJPG video codec is refernced to by number 7, not 3.
> So change this accordingly.
> 
> This isn't yet being used right now and therefore probably hasn't been
> noticed. Fixing this avoids causing trouble in the future.
> 
> Signed-off-by: Martin Kepplinger <martink@posteo.de>
> ---
>  drivers/media/platform/coda/coda_regs.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/media/platform/coda/coda_regs.h b/drivers/media/platform/coda/coda_regs.h
> index 38df5fd9a2fa..8d726faaf86e 100644
> --- a/drivers/media/platform/coda/coda_regs.h
> +++ b/drivers/media/platform/coda/coda_regs.h
> @@ -254,7 +254,7 @@
>  #define		CODA9_STD_H264					0
>  #define		CODA_STD_H263					1
>  #define		CODA_STD_H264					2
> -#define		CODA_STD_MJPG					3
> +#define		CODA_STD_MJPG					7

These are only ever used to feed them into the CMD_ENC_SEQ_COD_STD
register, and only for MPEG4, H263 (which we don't support), and H264.

On i.MX53 the correct value was 3 once, but it was only used in the
userspace library, it was never written to any register. On i.MX6 JPEG
encoding can be implemented without going through the BIT processor at
all.

regards
Philipp

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-11-08 15:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-08 14:12 [PATCH] media: coda: Fix definition of CODA_STD_MJPG Martin Kepplinger
2017-11-08 15:17 ` Philipp Zabel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.