"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7328/react/features/video-quality/actionTypes.ts" (8 Jun 2023, 2512 Bytes) of package /linux/misc/jitsi-meet-7328.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /**
    2  * The type of (redux) action which sets the maximum video height that should be
    3  * received from remote participants for the large video, even if the user prefers a larger video
    4  * height.
    5  *
    6  * {
    7  *     type: SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_LARGE_VIDEO,
    8  *     maxReceiverVideoQuality: number
    9  * }
   10  */
   11 export const SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_LARGE_VIDEO = 'SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_LARGE_VIDEO';
   12 
   13 
   14 
   15 /**
   16  * The type of (redux) action which sets the maximum video height that should be
   17  * received from remote participants for the screen sharing filmstrip, even if the user prefers a larger video
   18  * height.
   19  *
   20  * {
   21  *     type: SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_SCREEN_SHARING_FILMSTRIP,
   22  *     maxReceiverVideoQuality: number
   23  * }
   24  */
   25 export const SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_SCREEN_SHARING_FILMSTRIP = 'SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_SCREEN_SHARING_FILMSTRIP';
   26 
   27 /**
   28  * The type of (redux) action which sets the maximum video height that should be
   29  * received from remote participants for stage filmstrip, even if the user prefers a larger video
   30  * height.
   31  *
   32  * {
   33  *     type: SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_STAGE_FILMSTRIP,
   34  *     maxReceiverVideoQuality: number
   35  * }
   36  */
   37 export const SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_STAGE_FILMSTRIP = 'SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_STAGE_FILMSTRIP';
   38 
   39 /**
   40  * The type of (redux) action which sets the maximum video height that should be
   41  * received from remote participants for tile view, even if the user prefers a larger video
   42  * height.
   43  *
   44  * {
   45  *     type: SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_TILE_VIEW,
   46  *     maxReceiverVideoQuality: number
   47  * }
   48  */
   49 export const SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_TILE_VIEW = 'SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_TILE_VIEW';
   50 
   51 /**
   52  * The type of (redux) action which sets the maximum video height that should be
   53  * received from remote participants for vertical filmstrip, even if the user prefers a larger video
   54  * height.
   55  *
   56  * {
   57  *     type: SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_VERTICAL_FILMSTRIP,
   58  *     maxReceiverVideoQuality: number
   59  * }
   60  */
   61 export const SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_VERTICAL_FILMSTRIP = 'SET_MAX_RECEIVER_VIDEO_QUALITY_FOR_VERTICAL_FILMSTRIP';
   62 
   63 /**
   64  * The type of (redux) action which sets the preferred maximum video height that
   65  * should be sent to and received from remote participants.
   66  *
   67  * {
   68  *     type: SET_PREFERRED_VIDEO_QUALITY,
   69  *     preferredVideoQuality: number
   70  * }
   71  */
   72 export const SET_PREFERRED_VIDEO_QUALITY = 'SET_PREFERRED_VIDEO_QUALITY';