FFmpeg
|
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "dirac.h"
#include "golomb.h"
#include "internal.h"
#include "mpeg12data.h"
Go to the source code of this file.
Functions | |
int | av_dirac_parse_sequence_header (AVDiracSeqHeader **pdsh, const uint8_t *buf, size_t buf_size, void *log_ctx) |
Parse a Dirac sequence header. More... | |
int av_dirac_parse_sequence_header | ( | AVDiracSeqHeader ** | dsh, |
const uint8_t * | buf, | ||
size_t | buf_size, | ||
void * | log_ctx | ||
) |
Parse a Dirac sequence header.
dsh | this function will allocate and fill an AVDiracSeqHeader struct and write it into this pointer. The caller must free it with av_free(). |
buf | the data buffer |
buf_size | the size of the data buffer in bytes |
log_ctx | if non-NULL, this function will log errors here |
Definition at line 402 of file dirac.c.
Referenced by dirac_decode_data_unit(), and dirac_header().