FFmpeg
Modules | Macros | Enumerations | Functions

Modules

 Preprocessor String Macros
 
 Library Version Macros
 
 Constants
 
 Image related
 AVPicture types, pixel formats and basic image planes manipulation.
 
 Version and Build diagnostics
 Macros and function useful to check at compile time and at runtime which version of libavutil is in use.
 
 Media Type
 Media Type.
 

Macros

#define AV_FOURCC_MAX_STRING_SIZE   32
 
#define av_fourcc2str(fourcc)   av_fourcc_make_string((char[AV_FOURCC_MAX_STRING_SIZE]){0}, fourcc)
 

Enumerations

enum  AVMediaType {
  AVMEDIA_TYPE_UNKNOWN = -1, AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_DATA,
  AVMEDIA_TYPE_SUBTITLE, AVMEDIA_TYPE_ATTACHMENT, AVMEDIA_TYPE_NB
}
 

Functions

const char * av_get_media_type_string (enum AVMediaType media_type)
 Return a string describing the media_type enum, NULL if media_type is unknown. More...
 
static void * av_x_if_null (const void *p, const void *x)
 Return x default pointer in case p is NULL. More...
 
AVRational av_get_time_base_q (void)
 Return the fractional representation of the internal time base. More...
 
char * av_fourcc_make_string (char *buf, uint32_t fourcc)
 Fill the provided buffer with a string containing a FourCC (four-character code) representation. More...
 

Detailed Description

Macro Definition Documentation

◆ AV_FOURCC_MAX_STRING_SIZE

#define AV_FOURCC_MAX_STRING_SIZE   32

Definition at line 321 of file avutil.h.

◆ av_fourcc2str

#define av_fourcc2str (   fourcc)    av_fourcc_make_string((char[AV_FOURCC_MAX_STRING_SIZE]){0}, fourcc)

Definition at line 323 of file avutil.h.

Enumeration Type Documentation

◆ AVMediaType

Enumerator
AVMEDIA_TYPE_UNKNOWN 

Usually treated as AVMEDIA_TYPE_DATA.

AVMEDIA_TYPE_VIDEO 
AVMEDIA_TYPE_AUDIO 
AVMEDIA_TYPE_DATA 

Opaque data information usually continuous.

AVMEDIA_TYPE_SUBTITLE 
AVMEDIA_TYPE_ATTACHMENT 

Opaque data information usually sparse.

AVMEDIA_TYPE_NB 

Definition at line 198 of file avutil.h.

Function Documentation

◆ av_get_media_type_string()

const char* av_get_media_type_string ( enum AVMediaType  media_type)

◆ av_x_if_null()

static void* av_x_if_null ( const void *  p,
const void *  x 
)
inlinestatic

◆ av_get_time_base_q()

AVRational av_get_time_base_q ( void  )

Return the fractional representation of the internal time base.

Definition at line 77 of file utils.c.

◆ av_fourcc_make_string()

char* av_fourcc_make_string ( char *  buf,
uint32_t  fourcc 
)

Fill the provided buffer with a string containing a FourCC (four-character code) representation.

Parameters
bufa buffer with size in bytes of at least AV_FOURCC_MAX_STRING_SIZE
fourccthe fourcc to represent
Returns
the buffer in input

Definition at line 54 of file utils.c.

Referenced by ff_decklink_read_header(), and mov_read_udta_string().