Lines Matching defs:src
556 * @src: the buffer that contains the RBSP data
557 * @n: size of @src in bytes
559 * Read RBSP data from @src and use it to fill @vps.
561 * Return: number of bytes read from @src or negative error code
564 struct nal_hevc_vps *vps, void *src, size_t n)
572 if (!src)
575 rbsp_init(&rbsp, src, n, &read);
651 * @src: the buffer that contains the RBSP data
652 * @n: size of @src in bytes
654 * Read RBSP data from @src and use it to fill @sps.
656 * Return: number of bytes read from @src or negative error code
659 struct nal_hevc_sps *sps, void *src, size_t n)
667 if (!src)
670 rbsp_init(&rbsp, src, n, &read);
746 * @src: the buffer that contains the RBSP data
747 * @n: size of @src in bytes
749 * Read RBSP data from @src and use it to fill @pps.
751 * Return: number of bytes read from @src or negative error code
754 struct nal_hevc_pps *pps, void *src, size_t n)
762 if (!src)
765 rbsp_init(&rbsp, src, n, &read);
836 * @src: buffer with RBSP data that is read
837 * @n: maximum size of src that shall be read
839 * Read a filler data RBSP from @src up to a maximum size of @n bytes and
850 ssize_t nal_hevc_read_filler(const struct device *dev, void *src, size_t n)
858 if (!src)
861 rbsp_init(&rbsp, src, n, &read);