]> git.sesse.net Git - ffmpeg/blob - libavcodec/profiles.c
checkasm/vf_blend: Decrease iteration count
[ffmpeg] / libavcodec / profiles.c
1 /*
2  *
3  * This file is part of FFmpeg.
4  *
5  * FFmpeg is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * FFmpeg is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with FFmpeg; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 #include "config.h"
21
22 #include "avcodec.h"
23 #include "profiles.h"
24
25 #if !CONFIG_SMALL
26
27 const AVProfile ff_aac_profiles[] = {
28     { FF_PROFILE_AAC_LOW,   "LC"       },
29     { FF_PROFILE_AAC_HE,    "HE-AAC"   },
30     { FF_PROFILE_AAC_HE_V2, "HE-AACv2" },
31     { FF_PROFILE_AAC_LD,    "LD"       },
32     { FF_PROFILE_AAC_ELD,   "ELD"      },
33     { FF_PROFILE_AAC_MAIN,  "Main" },
34     { FF_PROFILE_AAC_LOW,   "LC"   },
35     { FF_PROFILE_AAC_SSR,   "SSR"  },
36     { FF_PROFILE_AAC_LTP,   "LTP"  },
37     { FF_PROFILE_UNKNOWN },
38 };
39
40 const AVProfile ff_dca_profiles[] = {
41     { FF_PROFILE_DTS,         "DTS"         },
42     { FF_PROFILE_DTS_ES,      "DTS-ES"      },
43     { FF_PROFILE_DTS_96_24,   "DTS 96/24"   },
44     { FF_PROFILE_DTS_HD_HRA,  "DTS-HD HRA"  },
45     { FF_PROFILE_DTS_HD_MA,   "DTS-HD MA"   },
46     { FF_PROFILE_DTS_EXPRESS, "DTS Express" },
47     { FF_PROFILE_UNKNOWN },
48 };
49
50 const AVProfile ff_h264_profiles[] = {
51     { FF_PROFILE_H264_BASELINE,             "Baseline"              },
52     { FF_PROFILE_H264_CONSTRAINED_BASELINE, "Constrained Baseline"  },
53     { FF_PROFILE_H264_MAIN,                 "Main"                  },
54     { FF_PROFILE_H264_EXTENDED,             "Extended"              },
55     { FF_PROFILE_H264_HIGH,                 "High"                  },
56     { FF_PROFILE_H264_HIGH_10,              "High 10"               },
57     { FF_PROFILE_H264_HIGH_10_INTRA,        "High 10 Intra"         },
58     { FF_PROFILE_H264_HIGH_422,             "High 4:2:2"            },
59     { FF_PROFILE_H264_HIGH_422_INTRA,       "High 4:2:2 Intra"      },
60     { FF_PROFILE_H264_HIGH_444,             "High 4:4:4"            },
61     { FF_PROFILE_H264_HIGH_444_PREDICTIVE,  "High 4:4:4 Predictive" },
62     { FF_PROFILE_H264_HIGH_444_INTRA,       "High 4:4:4 Intra"      },
63     { FF_PROFILE_H264_CAVLC_444,            "CAVLC 4:4:4"           },
64     { FF_PROFILE_UNKNOWN },
65 };
66
67 const AVProfile ff_hevc_profiles[] = {
68     { FF_PROFILE_HEVC_MAIN,                 "Main"                },
69     { FF_PROFILE_HEVC_MAIN_10,              "Main 10"             },
70     { FF_PROFILE_HEVC_MAIN_STILL_PICTURE,   "Main Still Picture"  },
71     { FF_PROFILE_HEVC_REXT,                 "Rext"                },
72     { FF_PROFILE_UNKNOWN },
73 };
74
75 const AVProfile ff_jpeg2000_profiles[] = {
76     { FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_0,  "JPEG 2000 codestream restriction 0"   },
77     { FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_1,  "JPEG 2000 codestream restriction 1"   },
78     { FF_PROFILE_JPEG2000_CSTREAM_NO_RESTRICTION, "JPEG 2000 no codestream restrictions" },
79     { FF_PROFILE_JPEG2000_DCINEMA_2K,             "JPEG 2000 digital cinema 2K"          },
80     { FF_PROFILE_JPEG2000_DCINEMA_4K,             "JPEG 2000 digital cinema 4K"          },
81     { FF_PROFILE_UNKNOWN },
82 };
83
84 const AVProfile ff_mpeg2_video_profiles[] = {
85     { FF_PROFILE_MPEG2_422,          "4:2:2"              },
86     { FF_PROFILE_MPEG2_HIGH,         "High"               },
87     { FF_PROFILE_MPEG2_SS,           "Spatially Scalable" },
88     { FF_PROFILE_MPEG2_SNR_SCALABLE, "SNR Scalable"       },
89     { FF_PROFILE_MPEG2_MAIN,         "Main"               },
90     { FF_PROFILE_MPEG2_SIMPLE,       "Simple"             },
91     { FF_PROFILE_RESERVED,           "Reserved"           },
92     { FF_PROFILE_RESERVED,           "Reserved"           },
93     { FF_PROFILE_UNKNOWN                                  },
94 };
95
96 const AVProfile ff_mpeg4_video_profiles[] = {
97     { FF_PROFILE_MPEG4_SIMPLE,                    "Simple Profile" },
98     { FF_PROFILE_MPEG4_SIMPLE_SCALABLE,           "Simple Scalable Profile" },
99     { FF_PROFILE_MPEG4_CORE,                      "Core Profile" },
100     { FF_PROFILE_MPEG4_MAIN,                      "Main Profile" },
101     { FF_PROFILE_MPEG4_N_BIT,                     "N-bit Profile" },
102     { FF_PROFILE_MPEG4_SCALABLE_TEXTURE,          "Scalable Texture Profile" },
103     { FF_PROFILE_MPEG4_SIMPLE_FACE_ANIMATION,     "Simple Face Animation Profile" },
104     { FF_PROFILE_MPEG4_BASIC_ANIMATED_TEXTURE,    "Basic Animated Texture Profile" },
105     { FF_PROFILE_MPEG4_HYBRID,                    "Hybrid Profile" },
106     { FF_PROFILE_MPEG4_ADVANCED_REAL_TIME,        "Advanced Real Time Simple Profile" },
107     { FF_PROFILE_MPEG4_CORE_SCALABLE,             "Code Scalable Profile" },
108     { FF_PROFILE_MPEG4_ADVANCED_CODING,           "Advanced Coding Profile" },
109     { FF_PROFILE_MPEG4_ADVANCED_CORE,             "Advanced Core Profile" },
110     { FF_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE, "Advanced Scalable Texture Profile" },
111     { FF_PROFILE_MPEG4_SIMPLE_STUDIO,             "Simple Studio Profile" },
112     { FF_PROFILE_MPEG4_ADVANCED_SIMPLE,           "Advanced Simple Profile" },
113     { FF_PROFILE_UNKNOWN },
114 };
115
116 const AVProfile ff_vc1_profiles[] = {
117     { FF_PROFILE_VC1_SIMPLE,   "Simple"   },
118     { FF_PROFILE_VC1_MAIN,     "Main"     },
119     { FF_PROFILE_VC1_COMPLEX,  "Complex"  },
120     { FF_PROFILE_VC1_ADVANCED, "Advanced" },
121     { FF_PROFILE_UNKNOWN },
122 };
123
124 const AVProfile ff_vp9_profiles[] = {
125     { FF_PROFILE_VP9_0, "Profile 0" },
126     { FF_PROFILE_VP9_1, "Profile 1" },
127     { FF_PROFILE_VP9_2, "Profile 2" },
128     { FF_PROFILE_VP9_3, "Profile 3" },
129     { FF_PROFILE_UNKNOWN },
130 };
131
132 #endif /* !CONFIG_SMALL */