<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html style="direction: ltr;">
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
    <style type="text/css">body p { margin-bottom: 0cm; margin-top: 0pt; } </style>
  </head>
  <body style="direction: ltr;"
    bidimailui-detected-decoding-type="latin-charset" bgcolor="#ffffff"
    text="#000000">
    On 01/05/2013 12:04 PM, jim morgenstern wrote:
    <blockquote cite="mid:034701cdeb66$acb8b4b0$062a1e10$@yahoo.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="Generator" content="Microsoft Word 14 (filtered
        medium)">
      <style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
      <div class="WordSection1"><span style="font-size: 11pt;
          font-family: "Calibri","sans-serif";
          color: rgb(31, 73, 125);">Code snippet:<o:p></o:p></span><br>
        <span style="font-size: 11pt; font-family:
          "Calibri","sans-serif"; color: rgb(31, 73,
          125);">#define RGB16  PIX_FMT_RGB48LE  // little endian<o:p></o:p></span><br>
        <span style="font-size: 11pt; font-family:
          "Calibri","sans-serif"; color: rgb(31, 73,
          125);">#define RGB    PIX_FMT_BGR24<o:p></o:p></span><br>
        <span style="font-size: 11pt; font-family:
          "Calibri","sans-serif"; color: rgb(31, 73,
          125);">#define YUV422 PIX_FMT_YUV422P10LE<o:p></o:p></span><br>
        <span style="font-size: 11pt; font-family:
          "Calibri","sans-serif"; color: rgb(31, 73,
          125);">#define YUV444 PIX_FMT_YUV444P16LE</span></div>
    </blockquote>
    You have a RGB16 output, meaning you have requested a 16-bit scaled
    output. If your input is YUV422, which is 10 bit not 16-bit
    components, the only way to satisfy that properly is to scale the
    output., which is what you are getting. <br>
    <br>
    If you want 10 bit output, it looks like you'd need PIX_FMT_GBRP10
    as there is now RGBP10.<br>
    <br>
    Or, you know - just scale the output you got.<br>
    <br>
    Or, add support for and RGBP10LE/BE format and send a patch.<br>
    <br>
    <br>
  </body>
</html>