Using 16 bit and 32 bit composition setting

Its a little confusing to me on How you are supposed to use 16 and 32 bit.  If you created your comp and effects in the 8 bit mode (and all effects work in 8 bit mode right) and you have banding issue that you want to smooth out so you switch to 16 bit but then some of your effects have that Yellow Warning.  Do you switch to 16 bit  then switch back to 8 and the 16 bit stuff is saved or do you have to pre render while in 16 bit and import the render file into the 8 bit.  It's not clearly explained.   why don't them make all the plugins to work in 16 and 32 bit.
Thanks in Advance
On a Mac using CS4

I always wrap effects that require compression and expansion with the HDR compander. If your project requires that you insert an 32 bit effect between two lower bit effects then you would have 4 instances as you suggest. There is no trade off. The Compander returns the dynamic range to the pipeline so that the advantages of the higher bit rates are maintained.
If you do not use the HDR compander then everything in the render pipeline after the first instance of an effect has a bit depth warning will only be processed using 8bit color.

Similar Messages

  • My mum is always using my iPad and I want to set mode if you like that she can log in as some one different and use apps she likes and I can use a diFferent log in and use different apps and stuff

    My mum is always using my iPad and I want to set mode if you like that she can log in as some one different and use apps she likes and I can use a diFferent log in and use different apps and stuff

    iOS 7 does not support multiple user accounts like you want.
    If all the apps are different, you could set her up with her own page of apps, then just show her how to get to her apps page, or just buy her an iPad for herself.

  • I am using OS X and am trying to set up a HP ENVY 5660 e printer and the drivers are not listed.  I read somewhere not to use the install disk.  What do I do?

    I am using OS X and am trying to set up a HP ENVY 5660 e printer and the drivers are not listed.  I read somewhere not to use the install disk.  What do I do?

    Your suggestion was a good one and what I found was that to use this and any other printer I looked at is that I need to update the operating system to a later version.  I have been reluctant in the past to do this after reading update horror stories and since this computer does what I need and very well.  Was glad I moved over from windows and this is the first problem I have had.  Thanks for your help and any other suggestions you may have.

  • Stored Procedure parameter (@Carrier) used in report and can't be set via code

    I have a report that has regular Crystal parameters that I am setting correctly via code.  However, one report actually uses one of the database parameters from the stored procedure that the report was created from.  It is the only report like this and I'm using the same code in an attempt to set it's value.  Although no error is thown, if I look at the parameter value in the IDE it is set correctly, but the field on the report just shows up blank.  I have changed the way the report is created.  Previously, I used the report.export method to create the actual file via a stored procedure.  Now, I'm running the stored procedure first and creating a datatable.  This allows me to execute the SP only once to see if it has data, because only then do I want to create the actual report.  I'm using the SetDataSource method to pass the datatable into Crystal and then using the report.export method to create the report with data.  Everything seems to work, except this stored procedure parameter (@Carrier) is not actually being populated to display on the report.
    Not sure what to look at.  Any suggestions?
    Thanks.

    crpe32.dll is version 13.0.5.891.  This was developed in VS2012 and VB.NET.  I'm using ADO.Net to connect to a MS SQL Server database.
    MainReport.SetDataSource(DTbl)
    bRC = PopulateAllSubReports(MainReport)
    If Not bRC Then Throw New Exception("Received an error in PopulateAllSubReports.")
    bRC = PopulateCrystalParameters(MainReport, SP)
    If Not bRC Then Throw New Exception("Received an error in PopulateCrystalParameters.")
    'Actually create the output file.
    bRC = ExportData(MainReport)
    Private Function PopulateCrystalParameters(myReportDocument As ReportDocument, SP As ReportStoredProcedureCrystal) As Boolean
         Dim myParameterFieldDefinitions As ParameterFieldDefinitions = Nothing
         Dim myParameterFieldDefinition As ParameterFieldDefinition = Nothing, ParamValue As String = ""
         Dim bRC As Boolean, Param As SqlParameter = Nothing
         Try
         myParameterFieldDefinitions = myReportDocument.DataDefinition.ParameterFields
    '*********************Report Parameters***************************
         For Each myParameterFieldDefinition In myParameterFieldDefinitions
              myParameterFieldDefinition.CurrentValues.Clear()
              Select Case myParameterFieldDefinition.ParameterFieldName.Trim.ToUpper
              Case "@CARRIER"
                   If SP.DBParameters.ContainsKey("@CARRIER") Then
                        Param = SP.DBParameters("@CARRIER")
                        ParamValue = NullS(Param.Value).Trim
                        bRC = SetCurrentValueForParameterField(myParameterFieldDefinition, ParamValue)
                        If Not bRC Then Return False
                   End If                           
              End Select
         Next
         Return True
         Catch ex As Exception
         GmcLog.Error("ReportKey = " & Me.ReportKey.ToString & ", " & ex.Message, ex)
         Return False
         End Try
    End Function
    Private Function SetCurrentValueForParameterField(myParameterFieldDefinition As ParameterFieldDefinition, submittedValue As Object) As Boolean
         Dim currentParameterValues As ParameterValues = Nothing
         Dim myParameterDiscreteValue As ParameterDiscreteValue = Nothing
         Try
         myParameterDiscreteValue = New ParameterDiscreteValue
         myParameterDiscreteValue.Value = NullS(submittedValue).Trim
         currentParameterValues = New ParameterValues
         currentParameterValues.Add(myParameterDiscreteValue)
         myParameterFieldDefinition.ApplyCurrentValues(currentParameterValues)
         Return True
         Catch ex As Exception
         GmcLog.Error("ReportKey = " & Me.ReportKey.ToString & ", " & ex.Message, ex)
         Return False
         Finally
         myParameterDiscreteValue = Nothing
         currentParameterValues = Nothing
         End Try
    End Function
    Private Function SetDBSourceForSubReport(mySubReport As ReportDocument) As Boolean
         Dim myTables As Tables = Nothing, myTable As Table = Nothing, DTbl As DataTable, SP As StoredProcedure = Nothing
         Try
         myTables = mySubReport.Database.Tables
         For Each myTable In myTables
              Dim SPName As String = myTable.Location.Substring(0, myTable.Location.IndexOf(";"c))
              SP = New StoredProcedure(ConnectionString, SPName, CommandType.StoredProcedure)
              DTbl = SP.FillTable
              mySubReport.SetDataSource(DTbl)
              SP = Nothing
         Next
         Return True
         Catch ex As Exception
         GmcLog.Error("ReportKey = " & Me.ReportKey.ToString & ", " & ex.Message, ex)
         Return False
         Finally
         If Not SP Is Nothing Then SP = Nothing
         If Not myTable Is Nothing Then myTable = Nothing
         If Not myTables Is Nothing Then myTables = Nothing
         End Try
    End Function
    Private Function PopulateAllSubReports(myReportDocument As ReportDocument) As Boolean
         Try
         Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
         For Each mySection As Section In mySections
              Dim myReportObjects As ReportObjects = mySection.ReportObjects
              For Each myReportObject As ReportObject In myReportObjects
                   If myReportObject.Kind = ReportObjectKind.SubreportObject Then
                        Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
                        Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
                        Dim bRC = SetDBSourceForSubReport(subReportDocument)
                        If Not bRC Then Return False
                   End If
              Next
         Next
         Return True
         Catch ex As Exception
         GmcLog.Error("ReportKey = " & Me.ReportKey.ToString & ", " & ex.Message, ex)
         Return False
         End Try
    End Function

  • I'm using aperture 3 and mobile me to set up galleries which I send to friends. My question. Will icloud allow me to do the same or will i lose this function when mobile me closes down in July.

    I'm using aperture 3/mobile me to set up photo galleries which I send to friends. My question. Will icloud allow me to do the same or will I lose this function when mobile me closes down in July. If this function isn't part of icloud does anybody have any suggestions how I can do this in future through aperature. Thank you 

    You will have to find a new hosting service for your galleries, when MM is gone; but you will still be able to create the galleries with Aperture. Export them to your disk and upload them via FTP to your new hosting service.
    See these support articles: Migrating from Mobile Me
    http://www.wilmut.webspace.virginmedia.com/notes/migrate/frommobileme3.html
    and this FAQ about Mobile Me and iCloud Transition http://support.apple.com/kb/HT4597

  • Need examples of using HEAD, BODY and TABLE options of SET MARKUP

    Hi!
    Looking for examples of using the HEAD, BODY and TABLE options of the SET MARKUP command in SQL*Plus. Will be used in 10.2.04 on Linux.
    Have been trying to set up an "H1" header but not having any success. Documentation and examples in the documentation are not very helpful.
    Thanks for your time and help!
    Dave Venus

    $ echo "select sysdate from dual;"|
      sqlplus -L -s -M 'html on head <title>MyTitle</title> body bgcolor="black" table border="0" scott/tiger
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <meta name="generator" content="SQL*Plus 10.2.0">
    <title>MyTitle</title>
    </head>
    <body bgcolor="black">
    <p>
    <table border="0">
    <tr>
    <th scope="col">
    SYSDATE
    </th>
    </tr>
    <tr>
    <td>
    2009-02-12 15:22:00
    </td>
    </tr>
    </table>
    <p>
    </body>
    </html>Edited by: Laurent Schneider on Feb 12, 2009 3:22 PM

  • Use of previous and next track, when setting repeat one is on.

    Hi,
    I would like to use my iPod mini for language teaching, so I loaded words and sentences audio recordings to the iPod and then would use Setting->Repeat->One to repeat a word or sentence to memorize. But when repeat one is on it's no longer possible to use previous |<< & next >>| to change the track, both buttons will go to the beginning of the track currently playing! To change track I have to go back the the playlist and select the next track. In repeat off or repeat all the buttons are working.
    How can I change this or is it a bug in the iPod mini? It cannot be intentionally it is working this way, because why should the 2 buttons be working in the same way?
    Thanks
    Sherab

    Of course it's not a "bug".
    You have the iPod set to repeat "one", so that's what it's doing.
    With this setting, there is no "next" track so when pressing the >>| button it just goes to the start of the "one" track you have chosen to repeat.

  • Using a SS and FF Constraint to set duration

    I am trying to create a task that is of uncertian duration. The variable lenght task starts (SS 0d lag) with the begining of a second task and ends (FF 0d lag) when a third task is completed. The task's length is dependant on the start
    and finsh of the other two tasks.
    When I enter the task I get a task that is one day long and starts and finishes the day before the FF constraint.
    Is it possible to make a task fo flexible lenght? If so, how do I do it? 
    Thanks

    Grant,
    You're welcome and thanks for the feedback. However, I must caution you about using paste links. They are susceptible to corruption, so use them sparingly.
    If my response answered your question, please mark it as the answer.
    John

  • Email hyperlinks don't open an Outlook new mail window (using Windows 7 and Outlook 2007 is set as Default Program, but still doesn't work).

    I've read the community discussions of this issue and did try the "default program" solution, but it hasn't worked. Also noted a discussion about proxy settings (?), but couldn't find instructions and didn't understand what was posted.

    Hi,
    You can try to change the hyperlink option in the Windows '''Control Panel''' > '''Default Programs''' > '''Associate a file type or protocol with a program'''; look for '''.url''' > '''Change Program''' > select or '''Browse''' and choose Firefox. If this fails then you may have to find the cause of "There are restrictions in place on this computer" message and remedy it. Two likely possibilities are someone put the restriction (IT admin??), or a virus or malicious program did it.

  • Attempting to report using multiple subqueries and filtering on result set

    I have an Oracle view which shows historic logs of changed data, effectively an audit view. The view is over two tables, a header and a detail table. I guess for the purpose of the question that is not too relevant but the structure of the view is. This is the view:
    SQL> desc ifsinfo.history_log_join
    Name Null? Type
    *LOG_ID                                    NOT NULL VARCHAR2(10)
    *MODULE                                    NOT NULL VARCHAR2(6)
    *LU_NAME                                   NOT NULL VARCHAR2(30)
    *TABLE_NAME                                NOT NULL VARCHAR2(30)
    *TIME_STAMP                                NOT NULL DATE
    *USERNAME                                  NOT NULL VARCHAR2(30)
    *KEYS                                      NOT NULL VARCHAR2(600)
    *HISTORY_TYPE                                       VARCHAR2(200)
    *HISTORY_TYPE_DB                           NOT NULL VARCHAR2(20)
    COLUMN_NAME NOT NULL VARCHAR2(30)
    OLD_VALUE VARCHAR2(2000)
    NEW_VALUE VARCHAR2(2000)
    I have indicated header information with *.
    The detail shows every column that was changed for a table (in header) and the old and new values, quite straight forward.
    The table I am interested in the audit of is:
    SQL> desc customer_order_reservation_tab
    Name Null? Type
    * ORDER_NO NOT NULL VARCHAR2(12)
    * LINE_NO NOT NULL VARCHAR2(4)
    * REL_NO NOT NULL VARCHAR2(4)
    * LINE_ITEM_NO NOT NULL NUMBER
    * CONTRACT NOT NULL VARCHAR2(5)
    * PART_NO NOT NULL VARCHAR2(25)
    CONFIGURATION_ID NOT NULL VARCHAR2(50)
    * LOCATION_NO NOT NULL VARCHAR2(35)
    * LOT_BATCH_NO NOT NULL VARCHAR2(20)
    * SERIAL_NO NOT NULL VARCHAR2(15)
    WAIV_DEV_REJ_NO NOT NULL VARCHAR2(15)
    ENG_CHG_LEVEL NOT NULL VARCHAR2(2)
    * PICK_LIST_NO NOT NULL VARCHAR2(15)
    PALLET_ID NOT NULL VARCHAR2(10)
    * LAST_ACTIVITY_DATE DATE
    SOURCE VARCHAR2(25)
    QTY_ASSIGNED NOT NULL NUMBER
    QTY_PICKED NOT NULL NUMBER
    QTY_SHIPPED NOT NULL NUMBER
    DELIV_NO NUMBER
    ROWVERSION DATE
    I have indicated columns that I am interested in (either as a key field or as changed data) by *
    Okay - so that's the background, what am I attempting to report.
    I want to return a single row per log id (for certain criteria) which shows:
    Log_Id
    History_Type
    Time_Stamp
    Username
    Order_No
    Pick_List_No
    Rel_No
    Line_No
    Part_No
    Loc_No
    Lot_Batch_No
    Serial_No
    The SQL I have currently is:
    select grp.*
    from
    (select h1.log_id, h1.history_type, time_stamp, username,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='ORDER_NO') Order_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='PICK_LIST_NO') Pick_List_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='REL_NO') Rel_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='LINE_NO') Line_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='PART_NO') Part_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='LOCATION_NO') Loc_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='LOT_BATCH_NO') Lot_Batch_No,
    (select h2.old_value||h2.new_value from ifsinfo.history_log_join h2 where h1.log_id=h2.log_id and h2.column_name ='SERIAL_NO') Serial_No
    from ifsinfo.history_log_join h1
    where
    table_name = 'CUSTOMER_ORDER_RESERVATION_TAB'
    and
    keys like upper('CONFIGURATION_ID=*^CONTRACT=&company%')
    and
    history_type in ('Delete','Insert')
    and
    column_name ='PICK_LIST_NO'
    and
    username != 'IFSAPP'
    and
    h1.old_value || h1.new_value != '*'
    and
    trunc(h1.time_stamp) > trunc(sysdate-1-&days_ago)
    order by 5, 6, 8, 7,9,10,2, 1) grp
    This is OK but..
    I only want to include rows where the same picklist / rel_no / line_no / part_no combination exist more than once (because there is always an insert and delete for the analysis I am doing).
    AND
    where for that combination, the lot_batch_no OR serial_no are different.
    Effectively the system does an insert / delete rather than an update, so that is why.
    Thanks

    Hi sanny007,
    As your issue is related to Reports, I'm moving your post to a more appropriate forum for better supports, thanks for your undrstanding.
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=vsreportcontrols
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Use HCM processes and Forms without using the Enterprise Portal

    is it possible to leverage existing HR Admin Services (HCM processes and Forms) functionality without using the Enterprise Portal?
    1) Create an Adobe form and Interface using SFP
    2) Set up ISR and Form Scenario
    3) Set up Forms configuration to use existing Backend and generic Services
    4) Set up workflow to updated Backend using Services
    is it possible to do the above steps and not use the Portal? If Yes, how do we present the forms to the Manager, and provide different buttons that appears on the Portal by default?
    Any ideas will be greatly appreciated.
    Thanks,
    Saurabh

    Hi Saurabh,
    your assumptions and findings (items can not be started from the backend workflow inbox etc.) are correct: These processes can not be started without the Portal and it is not intended to do this.
    The above mentioned backend report are only forseen for implementation and testing purposes and not for productive use.
    In addition to the fact, that you already can't execute the work items a lot of other features of the framework (Process Browser etc.) are only available through the Portal.
    Best Regards
    Michael Bonrat - Solution Manager HCM Processes and Forms
    Info about HCM Processes and Forms:
    www.service.sap.com/erp: 
    - SAP ERP Human Capital Management -> Workforce Process Management -> HCM Processes and Forms

  • Can I use control query and Variant?

    Can I use control query and Variant?
    I tried both but it’s not working, what’s my requirement is in a web template having material, distribution as drop box and I have to create for all countries(Like USA, Canada,China…)so what I did , I created a control query as material& distribution and I created variants for countries. After precalculating it’s not working.
    Any help ll be appreciated
    Thanks

    Yes you can use Control Query AND Variant in your Setting. Maybe you did not setup you Web template correctly?

  • My company uses Lotus Notes and I need the internet brower path for Firefox so that I can enter than into Lotus Notes for it to make Firefox my borwer of choice.

    My company uses Lotus Notes and I want to set Firefox as my browser in LN. It ask for internet browser path...where do I find that?

    Blackboard tends to update their software once a year, before the start of the fall term, and most of the time they seem to be a year behind the current versions of Firefox. Another problem that crops up with Blackboard is that not all schools use the latest version of the Blackboard software, many schools since 2008 have been postponing updates for the software that they use due to the economy.
    Quite honestly, until Mozilla comes up with a Long Term Support version ''(if they do that)'' this situation of company's like Blackboard falling behind the curve of Firefox updates is only going to get worse.
    As far as Lotus Notes goes, I wonder if your school is behind on updating that software? IIRC, I have seem mention of updates for Lotus Notes to handle remote XUL problems in 4.0+ versions, brought about by security fixes in 4.0. <br />
    https://developer.mozilla.org/en/using_remote_xul <br />
    Or you could try this extension.<br />
    https://addons.mozilla.org/en-US/firefox/addon/remote-xul-manager/
    Bottom line - install Firefox Portable 3.6.22 to your hard drive to use at websites that can't handle the newer versions of Firefox. <br />
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36 <br />
    And use Firefox 6.0.2 ''(and upcoming versions)'' at the more modern websites which are embracing the web technology being developed for the 2nd decade of this century.

  • DAQ vi to perform digital write and read measurements using 32 bits binary data saved in a file

    Hi
    DAQ vi to perform digital write and read measurements using 32 bits binary data saved in a file
    Two main
    sections:
    1)     
    Perform
    write and read operations to and fro different spread sheet files, such that
    each file have a single row of 32bits different binary data (analogous to 1D
    array) where the left most bit is the MSB. I don’t want to manually enter the
    32 bits binary data, I want the data written or read just by opening a file
    name saves with the intended data.
          2)     
    And
    by using test patterns implemented using the digital pattern generator or  build digital data functions or otherwise, I need to
    ensure that the     
                binary data written to a spreadsheet file or any supported file type
    then through the NI-USB 6509 is same as the data read.
    I’m aware I can’t use the simulated
    device to read data written to any port but if the write part of the vi works I
    ‘m sure the read part will work on the physical device which I’ll buy later.
    My Plan
    of action
    I’ve
    created a basic write/read file task and a write/read DAQ task for NI USB 6509
    and both combine in a while loop to form a progress VI which I’m confuse of how
    to proceed with the implementation.
    My
    greatest problem is to link both together with the correct functions or operators
    such that there are no syntax/execution errors and thus achieve my intended
    result.
    This
    project is one of my many assignments for my master thesis, so please i’ll
    appreciate every help as I’m not really efficient with LabVIEW programming but
    I prefer it because is fun and interesting if I get to know it.
    Currently I’m
    practicing with LabVIEW 8.6/NI DAQmx 8.8 Demo versions and NI USB 6509
    simulated device.
    Please see
    the attached file for my novice progress, thanks in
    advance for the support
    Rgds
    Paul
    Attachments:
    DIO_write_read DAQ from file.vi ‏17 KB

    What does your file look like?  The DAQmx write is expecting a single U32 value, not an array of I64. 
    Message Edited by vt92 on 09-16-2009 02:42 PM
    "There is a God shaped vacuum in the heart of every man which cannot be filled by any created thing, but only by God, the Creator, made known through Jesus." - Blaise Pascal

  • Build using 32-bit Sun JDK in dev windows OS and deploy in 32-bit RHEL

    Is there any potential problems associated with building/compiling my Java classes for my EE (Seam) app into an EAR and deploying on 32-bit Windows OS JBoss AS dev box using 32-bit Windows JDK 1.5 and then deploying the same EAR into 32-bit RHEL OS JBoss AS? The dev envmt is not clustered and the UAT RHEL envmt is a 2 node horizontal cluster without state replication (only mod_jk load balancing and failover).
    Perhaps the entity (and other) classes that implement java.io.Serializable will have issues? thx.

    Note: This thread was originally posted in the Serialization forum, but moved to this forum for closer topic alignment.

Maybe you are looking for

  • Print from context menu don't resize document

    I have a problem on Acrobat Reader X (but the same problem exists on reader from version 9). I have a pdf file with image inside, page size A3, when click print on context menu (right click on the file), the document is send to print, but it's not re

  • Firmware update different codes?

    Here is the dilema. I purchased a nokia n82 in Australia. I now live in China. I want chinese language on the phone. I know that it will require a firmware change or update. I went to the local NCP and some stupid cow wanting to avoid work said "bad

  • Adding A printer Mac Network, PC to be able to print

    In the office I have my 2 mac computers connected to the extreme on the wirless airport, we are able to print as well, the printer being connected to the extreme, question.......we have to have a PC connected, again it is on the wirless network, how

  • X200S + Ultrabase and Ultrabattery not visible in VIsta

    Hello, Just got my new X200S and ultrabase with DVD burner and Ultrabattery. When the Laptop is in the the ultrabse the DVD wroking fine. When I changing to the ultra battery I do'nt see it in Vista power no second battery. Even in the power mgt of L

  • Can't connect computers to printer (b210) via network because there are "other networks"

    I can't connect computers to printer (b210) via network because there are "other networks matching your network name".  This makes no sense at all. I have several Apple devices (iPhone, iPad, iMac) all with the latest software. The printer works fine