| 
    World of Might and Magic
    0.2.0
    
   Open reimplementation of Might and Magic 6 7 8 game engine 
   | 
 
 Граф связей класса Other:Группы | |
| 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 compiletime and at runtime which version of libavutil is in use.  | |
| Media Type | |
| Media Type.  | |
Перечисления | |
| enum | AVMediaType {  AVMEDIA_TYPE_UNKNOWN = -1, AVMEDIA_TYPE_VIDEO, AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_DATA, AVMEDIA_TYPE_SUBTITLE, AVMEDIA_TYPE_ATTACHMENT, AVMEDIA_TYPE_NB }  | 
Функции | |
| const char * | av_get_media_type_string (enum AVMediaType media_type) | 
| static void * | av_x_if_null (const void *p, const void *x) | 
| unsigned | av_int_list_length_for_size (unsigned elsize, const void *list, uint64_t term) av_pure | 
| FILE * | av_fopen_utf8 (const char *path, const char *mode) | 
| AVRational | av_get_time_base_q (void) | 
| char * | av_fourcc_make_string (char *buf, uint32_t fourcc) | 
| enum AVMediaType | 
#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavutil/avutil.h>
См. определение в файле avutil.h строка 199
| const char* av_get_media_type_string | ( | enum AVMediaType | media_type | ) | 
#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavutil/avutil.h>
Return a string describing the media_type enum, NULL if media_type is unknown.
#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavutil/avutil.h>
Compute the length of an integer list.
| elsize | size in bytes of each list element (only 1, 2, 4 or 8) | 
| term | list terminator (usually 0 or -1) | 
| list | pointer to the list | 
| FILE* av_fopen_utf8 | ( | const char * | path, | 
| const char * | mode | ||
| ) | 
#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavutil/avutil.h>
Open a file using a UTF-8 filename. The API of this function matches POSIX fopen(), errors are returned through errno.
| AVRational av_get_time_base_q | ( | void | ) | 
#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavutil/avutil.h>
Return the fractional representation of the internal time base.
| char* av_fourcc_make_string | ( | char * | buf, | 
| uint32_t | fourcc | ||
| ) | 
#include <C:/git/world-of-might-and-magic/lib/win32/x86/ffmpeg-4.2.2/include/libavutil/avutil.h>
Fill the provided buffer with a string containing a FourCC (four-character code) representation.
| buf | a buffer with size in bytes of at least AV_FOURCC_MAX_STRING_SIZE | 
| fourcc | the fourcc to represent |