camera_frame_compressedvideo_t

Updated: April 19, 2023

A frame descriptor for compressed video frame types

Synopsis:

#include <camera/camera_api.h>
typedef struct {
    uint64_t bufsize;
    camera_videocodec_t codec;
    bool keyframe;
    uint64_t bitrate;
} camera_frame_compressedvideo_t;

Data:

uint64_t bufsize
The size of the buffer as a 64-bit integer.
camera_videocodec_t codec
The format of the compressed video (see camera_videocodec_t).
bool keyframe
A flag indicating whether this frame is a keyframe.
uint64_t bitrate
The bitrate expressed in bits per second.

Library:

libcamapi

Description:

Use this frame descriptor when CAMERA_FRAMETYPE_COMPRESSEDVIDEO is reported as the camera_frametype_t.