The following function is required to be implemented for all decoders that advertise the VPX_CODEC_CAP_PUT_FRAME capability. Calling this function for codecs that don't advertise this capability will result in an error code being returned, usually VPX_CODEC_INCAPABLE. 
◆ vpx_codec_put_frame_cb_fn_t
      
        
          | typedef void(* vpx_codec_put_frame_cb_fn_t) (void *user_priv, const vpx_image_t *img) | 
      
 
put frame callback prototype 
This callback is invoked by the decoder to notify the application of the availability of decoded image data. 
 
 
◆ vpx_codec_register_put_frame_cb()
Register for notification of frame completion. 
Registers a given function to be called when a decoded frame is available.
- Parameters
- 
  
    | [in] | ctx | Pointer to this instance's context |  | [in] | cb | Pointer to the callback function |  | [in] | user_priv | User's private data |  
 
- Return values
-