Skip to content

Commit 6ce13be

Browse files
author
Clement Champetier
committed
util: fixed documentation
1 parent ddbd377 commit 6ce13be

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/AvTranscoder/util.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,43 +61,43 @@ std::string AvExport getSampleFormatName(const AVSampleFormat sampleFormat);
6161

6262
#ifndef SWIG
6363
/**
64-
* @return The list of all formats available by FFmpeg / libav.
64+
* @return The list of all formats available in FFmpeg / libav.
6565
*/
6666
std::vector<AVOutputFormat*> getAvailableFormats();
6767
#endif
6868
/**
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.
7070
* @note Need to call preloadCodecsAndFormats before using this function.
7171
*/
7272
NamesMap AvExport getAvailableFormatsNames();
7373

7474
/**
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.
7676
* @note Need to call preloadCodecsAndFormats before using this function.
7777
*/
7878
NamesMap AvExport getAvailableVideoFormatsNames();
7979

8080
/**
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.
8282
* @note Need to call preloadCodecsAndFormats before using this function.
8383
*/
8484
NamesMap AvExport getAvailableAudioFormatsNames();
8585

8686
#ifndef SWIG
8787
/**
88-
* @return The list of all codecs available by FFmpeg / libav.
88+
* @return The list of all codecs available in FFmpeg / libav.
8989
*/
9090
std::vector<AVCodec*> getAvailableCodecs();
9191
#endif
9292

9393
/**
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.
9595
* @note Need to call preloadCodecsAndFormats before using this function.
9696
*/
9797
NamesMap AvExport getAvailableVideoCodecsNames();
9898

9999
/**
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.
101101
* @note Need to call preloadCodecsAndFormats before using this function.
102102
*/
103103
NamesMap AvExport getAvailableAudioCodecsNames();

0 commit comments

Comments
 (0)