<!-- Some styling for better description lists --><style type='text/css'>dt { font-weight: bold;float: left;display:inline;margin-right: 1em} dd { display:block; margin-left: 2em}</style>

   ***: prabhakarlad has left
   bparrot_: <u>pinchartl</u>: ping
   <br> Does anyone know if when using NV12 pixel format can you use single plane buffer only or multi-plane (in this case 2) also?
   <br> or when using multi-plane should you be using NM12 instead?
   ndufresne: <u>bparrot_</u>: using NV12 on mplane API means you'll set both planes in the same allocation
   <br> it's a valid case
   <br> Though, it prevents you from using non-standards offset to the second plane
   <br> imho, new code should implement NM12 + mplane
   bparrot_: <u>ndufresne</u>: but using a single plane buffer with offset to point to the second plane data only works with MMAP buffer now, when using DMABUF you can't do it as data_offset has to be within the expected data size for that plane
   <br> so I guess what you are saying is NV12 can be used for both single plane and multi-plane, but to be correct nm12 should be used for the multi=plane case
   <br> s/=/-