Skip to content

Commit 1993920

Browse files
author
Clement Champetier
committed
util: added documentation when get formats/codecs
1 parent 558e59c commit 1993920

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/AvTranscoder/util.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,31 +65,37 @@ std::string AvExport getSampleFormatName(const AVSampleFormat sampleFormat);
6565
#ifndef SWIG
6666
/**
6767
* @brief Get array of short/long names of all format available by FFmpeg / libav.
68+
* @note Need to call preloadCodecsAndFormats before using this function.
6869
*/
6970
NamesArray AvExport getAvailableFormatsNames();
7071

7172
/**
7273
* @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.
7375
*/
7476
NamesArray AvExport getAvailableVideoCodecsNames();
7577

7678
/**
7779
* @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.
7881
*/
7982
NamesArray AvExport getAvailableAudioCodecsNames();
8083

8184
/**
8285
* @brief Get the list of options for each output format
86+
* @note Need to call preloadCodecsAndFormats before using this function.
8387
*/
8488
OptionArrayMap AvExport getAvailableOptionsPerOutputFormat();
8589

8690
/**
8791
* @brief Get the list of options for each video codec
92+
* @note Need to call preloadCodecsAndFormats before using this function.
8893
*/
8994
OptionArrayMap AvExport getAvailableOptionsPerVideoCodec();
9095

9196
/**
9297
* @brief Get the list of options for each audio codec
98+
* @note Need to call preloadCodecsAndFormats before using this function.
9399
*/
94100
OptionArrayMap AvExport getAvailableOptionsPerAudioCodec();
95101
#endif

0 commit comments

Comments
 (0)