libavutil/utils.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "config.h"
20 #include "avutil.h"
21 #include "avassert.h"
22 #include "samplefmt.h"
23 #include "pixdesc.h"
24 
25 /**
26  * @file
27  * various utility functions
28  */
29 
30 unsigned avutil_version(void)
31 {
32  static int checks_done;
33  if (checks_done)
34  return LIBAVUTIL_VERSION_INT;
35 
36  av_assert0(AV_PIX_FMT_VDA_VLD == 81); //check if the pix fmt enum has not had anything inserted or removed by mistake
42 
43  if (av_sat_dadd32(1, 2) != 5) {
44  av_log(NULL, AV_LOG_FATAL, "Libavutil has been build with a broken binutils, please upgrade binutils and rebuild\n");
45  abort();
46  }
47 
49  checks_done = 1;
50  return LIBAVUTIL_VERSION_INT;
51 }
52 
53 const char *avutil_configuration(void)
54 {
55  return FFMPEG_CONFIGURATION;
56 }
57 
58 const char *avutil_license(void)
59 {
60 #define LICENSE_PREFIX "libavutil license: "
61  return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
62 }
63 
64 const char *av_get_media_type_string(enum AVMediaType media_type)
65 {
66  switch (media_type) {
67  case AVMEDIA_TYPE_VIDEO: return "video";
68  case AVMEDIA_TYPE_AUDIO: return "audio";
69  case AVMEDIA_TYPE_DATA: return "data";
70  case AVMEDIA_TYPE_SUBTITLE: return "subtitle";
71  case AVMEDIA_TYPE_ATTACHMENT: return "attachment";
72  default: return NULL;
73  }
74 }
75 
77 {
78  switch (pict_type) {
79  case AV_PICTURE_TYPE_I: return 'I';
80  case AV_PICTURE_TYPE_P: return 'P';
81  case AV_PICTURE_TYPE_B: return 'B';
82  case AV_PICTURE_TYPE_S: return 'S';
83  case AV_PICTURE_TYPE_SI: return 'i';
84  case AV_PICTURE_TYPE_SP: return 'p';
85  case AV_PICTURE_TYPE_BI: return 'b';
86  default: return '?';
87  }
88 }
89 
90 unsigned av_int_list_length_for_size(unsigned elsize,
91  const void *list, uint64_t term)
92 {
93  unsigned i;
94 
95  if (!list)
96  return 0;
97 #define LIST_LENGTH(type) \
98  { type t = term, *l = list; for (i = 0; l[i] != t; i++); }
99  switch (elsize) {
100  case 1: LIST_LENGTH(uint8_t); break;
101  case 2: LIST_LENGTH(uint16_t); break;
102  case 4: LIST_LENGTH(uint32_t); break;
103  case 8: LIST_LENGTH(uint64_t); break;
104  default: av_assert0(!"valid element size");
105  }
106  return i;
107 }
BI type.
Definition: avutil.h:222
S(GMC)-VOP MPEG4.
Definition: avutil.h:219
const char * avutil_configuration(void)
Return the libavutil build-time configuration.
external API header
#define LICENSE_PREFIX
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining list
#define FFMPEG_LICENSE
Definition: config.h:5
Switching Intra.
Definition: avutil.h:220
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
uint8_t
Opaque data information usually continuous.
Definition: avutil.h:145
#define AV_LOG_FATAL
Something went wrong and recovery is not possible.
Definition: log.h:142
char av_get_picture_type_char(enum AVPictureType pict_type)
Return a single letter to describe the given picture type pict_type.
unsigned avutil_version(void)
Return the LIBAVUTIL_VERSION_INT constant.
unsigned av_int_list_length_for_size(unsigned elsize, const void *list, uint64_t term)
Compute the length of an integer list.
#define LIBAVUTIL_VERSION_MICRO
simple assert() macros that are a bit more flexible than ISO C assert().
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
Opaque data information usually sparse.
Definition: avutil.h:147
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
const char * avutil_license(void)
Return the libavutil license.
NULL
Definition: eval.c:55
#define LIST_LENGTH(type)
Switching Predicted.
Definition: avutil.h:221
synthesis window for stochastic i
AVMediaType
Definition: avutil.h:141
AVPictureType
Definition: avutil.h:214
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.
hardware decoding through VDA
Definition: pixfmt.h:160
Bi-dir predicted.
Definition: avutil.h:218
#define HAVE_MMXEXT
Definition: config.h:49
#define FFMPEG_CONFIGURATION
Definition: config.h:4
#define HAVE_MMX2
Definition: config.h:13
void ff_check_pixfmt_descriptors(void)
Definition: pixdesc.c:1833
double, planar
Definition: samplefmt.h:61
Predicted.
Definition: avutil.h:217