Enumerations

The following enumerations are available globally.

  • Undocumented

    See more

    Declaration

    Objective-C

    enum : int {
        /**
        * Session ends normally status code
        */
        BPSessionEndsNormally = 200,
        
        /**
         * Format not supported status code
         *
         * An error has occurred because the format is not supported by the player (i.e. HLS not supported)
         */
        BPFormatNotSupportedError = 3001,
        
        /**
         * Decoding error status code
         *
         * An error has occurred during the decoding of the video content. This error can be triggered during video playback.
         */
        BPDecodingError = 3002,
        
        /**
         * Networking error status code
         *
         * An error has occurred during the transmission/reception of data over the network.
         */
        BPNetworkingError = 3003,
        
        /**
         * Access right error status code
         *
         * An error has occurred because user does not have sufficient rights to display the video. This error is triggered when  there is a problem to connect to the DRM server.
         */
        BPAccessRightError = 3004,
        
        /**
         * Unspecified error status code
         *
         * An unspecified error has occurred.
         */
        BPUnspecifiedError = 3005
    }
  • Undocumented

    See more

    Declaration

    Objective-C

    enum {
        BPLogLevelVerbose = 1,
        BPLogLevelBasic = 0,
        BPLogLevelNone = -1
    }