Lines Matching defs:src
387 * @src: the buffer that contains the RBSP data
388 * @n: size of @src in bytes
390 * Read RBSP data from @src and use it to fill @sps.
392 * Return: number of bytes read from @src or negative error code
395 struct nal_h264_sps *sps, void *src, size_t n)
402 if (!src)
405 rbsp_init(&rbsp, src, n, &read);
479 * @src: the buffer that contains the RBSP data
480 * @n: size of @src in bytes
482 * Read RBSP data from @src and use it to fill @pps.
484 * Return: number of bytes read from @src or negative error code
487 struct nal_h264_pps *pps, void *src, size_t n)
491 if (!src)
494 rbsp_init(&rbsp, src, n, &read);
558 * @src: buffer with RBSP data that is read
559 * @n: maximum size of src that shall be read
561 * Read a filler data RBSP from @src up to a maximum size of @n bytes and
572 ssize_t nal_h264_read_filler(const struct device *dev, void *src, size_t n)
579 if (!src)
582 rbsp_init(&rbsp, src, n, &read);