• Ivan Uskov's avatar
    libavcodec/qsvenc.c delay in 1 microsecond replaced to more appropriate 500 microseconds · 947c2aa4
    Ivan Uskov authored
    This commit replaces the 1 microsecond delay by 500 microsecond for the
    case when the MFX library does return MFX_WRN_DEVICE_BUSY status.
    In general this warning never appears for simple encoding or
    transcoding session because the GPU is so fast so it almost always is not busy and
    any delay value just does not executes.
    But for heavy transcoding tasks for example, when several QSV sessions
    are running simultaneously then using a 1-microsecond delay may
    result in 1000 iterations per each frame.
    So here possible a paradoxical case when GPU loading also loads CPU by dummy tasks.
    Official MFX/QSV samples by Intel are using 1 millisecond (i.e. 1000
    microseconds) everywhere where MFX_WRN_DEVICE_BUSY does appear.
    So 500us is a much more optimal value than 1us.
    Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
    947c2aa4
qsvenc.c 17.4 KB