File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -65,31 +65,37 @@ std::string AvExport getSampleFormatName(const AVSampleFormat sampleFormat);
65
65
#ifndef SWIG
66
66
/* *
67
67
* @brief Get array of short/long names of all format available by FFmpeg / libav.
68
+ * @note Need to call preloadCodecsAndFormats before using this function.
68
69
*/
69
70
NamesArray AvExport getAvailableFormatsNames ();
70
71
71
72
/* *
72
73
* @brief Get array of short/long names of all video codec available by FFmpeg / libav.
74
+ * @note Need to call preloadCodecsAndFormats before using this function.
73
75
*/
74
76
NamesArray AvExport getAvailableVideoCodecsNames ();
75
77
76
78
/* *
77
79
* @brief Get array of short/long names of all audio codec available by FFmpeg / libav.
80
+ * @note Need to call preloadCodecsAndFormats before using this function.
78
81
*/
79
82
NamesArray AvExport getAvailableAudioCodecsNames ();
80
83
81
84
/* *
82
85
* @brief Get the list of options for each output format
86
+ * @note Need to call preloadCodecsAndFormats before using this function.
83
87
*/
84
88
OptionArrayMap AvExport getAvailableOptionsPerOutputFormat ();
85
89
86
90
/* *
87
91
* @brief Get the list of options for each video codec
92
+ * @note Need to call preloadCodecsAndFormats before using this function.
88
93
*/
89
94
OptionArrayMap AvExport getAvailableOptionsPerVideoCodec ();
90
95
91
96
/* *
92
97
* @brief Get the list of options for each audio codec
98
+ * @note Need to call preloadCodecsAndFormats before using this function.
93
99
*/
94
100
OptionArrayMap AvExport getAvailableOptionsPerAudioCodec ();
95
101
#endif
You can’t perform that action at this time.
0 commit comments