@@ -61,43 +61,43 @@ std::string AvExport getSampleFormatName(const AVSampleFormat sampleFormat);
61
61
62
62
#ifndef SWIG
63
63
/* *
64
- * @return The list of all formats available by FFmpeg / libav.
64
+ * @return The list of all formats available in FFmpeg / libav.
65
65
*/
66
66
std::vector<AVOutputFormat*> getAvailableFormats ();
67
67
#endif
68
68
/* *
69
- * @brief Get a map of short/long names of all formats available by FFmpeg / libav.
69
+ * @brief Get a map of short/long names of all formats available in FFmpeg / libav.
70
70
* @note Need to call preloadCodecsAndFormats before using this function.
71
71
*/
72
72
NamesMap AvExport getAvailableFormatsNames ();
73
73
74
74
/* *
75
- * @brief Get a map of short/long names of all formats dedicate for video available by FFmpeg / libav.
75
+ * @brief Get a map of short/long names of all formats dedicate for video available in FFmpeg / libav.
76
76
* @note Need to call preloadCodecsAndFormats before using this function.
77
77
*/
78
78
NamesMap AvExport getAvailableVideoFormatsNames ();
79
79
80
80
/* *
81
- * @brief Get a map of short/long names of all formats dedicate for video available by FFmpeg / libav.
81
+ * @brief Get a map of short/long names of all formats dedicate for video available in FFmpeg / libav.
82
82
* @note Need to call preloadCodecsAndFormats before using this function.
83
83
*/
84
84
NamesMap AvExport getAvailableAudioFormatsNames ();
85
85
86
86
#ifndef SWIG
87
87
/* *
88
- * @return The list of all codecs available by FFmpeg / libav.
88
+ * @return The list of all codecs available in FFmpeg / libav.
89
89
*/
90
90
std::vector<AVCodec*> getAvailableCodecs ();
91
91
#endif
92
92
93
93
/* *
94
- * @brief Get a map of short/long names of all video codecs available by FFmpeg / libav.
94
+ * @brief Get a map of short/long names of all video codecs available in FFmpeg / libav.
95
95
* @note Need to call preloadCodecsAndFormats before using this function.
96
96
*/
97
97
NamesMap AvExport getAvailableVideoCodecsNames ();
98
98
99
99
/* *
100
- * @brief Get a map of short/long names of all audio codecs available by FFmpeg / libav.
100
+ * @brief Get a map of short/long names of all audio codecs available in FFmpeg / libav.
101
101
* @note Need to call preloadCodecsAndFormats before using this function.
102
102
*/
103
103
NamesMap AvExport getAvailableAudioCodecsNames ();
0 commit comments