Skip to content

Commit c47b8ed

Browse files
author
Clement Champetier
committed
util: AvExport all functions
1 parent 56f322e commit c47b8ed

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/AvTranscoder/util.hpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,55 +33,55 @@ bool AvExport matchFormat( const std::string& format, const std::string& filenam
3333
* @brief Get pixel format supported by a video codec.
3434
* @param videoCodecName: the video codec name (empty if not indicated, and so get all pixel formats supported by all video codecs).
3535
*/
36-
std::vector<std::string> getPixelFormats( const std::string& videoCodecName = "" );
36+
std::vector<std::string> AvExport getPixelFormats( const std::string& videoCodecName = "" );
3737

3838
/**
3939
* @brief Get sample format supported by an audio codec.
4040
* @param audioCodecName: the audio codec name (empty if not indicated, and so get all sample formats supported by all audio codecs).
4141
*/
42-
std::vector<std::string> getSampleFormats( const std::string& audioCodecName = "" );
42+
std::vector<std::string> AvExport getSampleFormats( const std::string& audioCodecName = "" );
4343

4444
/**
4545
* @brief Get the corresponding AVPixelFormat from the pixel format name
4646
* @param pixelFormat: the name of the pixel format
4747
*/
48-
AVPixelFormat getAVPixelFormat( const std::string& pixelFormat );
48+
AVPixelFormat AvExport getAVPixelFormat( const std::string& pixelFormat );
4949

5050
/**
5151
* @brief Get the corresponding AVSampleFormat from the sample format name
5252
* @param sampleFormat: the name of the sample format
5353
*/
54-
AVSampleFormat getAVSampleFormat( const std::string& sampleFormat );
54+
AVSampleFormat AvExport getAVSampleFormat( const std::string& sampleFormat );
5555

5656
/**
5757
* @brief Get array of short/long names of all format supported by FFmpeg / libav.
5858
*/
59-
NamesArray getFormatsNames();
59+
NamesArray AvExport getFormatsNames();
6060

6161
/**
6262
* @brief Get array of short/long names of all video codec supported by FFmpeg / libav.
6363
*/
64-
NamesArray getVideoCodecsNames();
64+
NamesArray AvExport getVideoCodecsNames();
6565

6666
/**
6767
* @brief Get array of short/long names of all audio codec supported by FFmpeg / libav.
6868
*/
69-
NamesArray getAudioCodecsNames();
69+
NamesArray AvExport getAudioCodecsNames();
7070

7171
/**
7272
* @brief Get the list of options for each output format
7373
*/
74-
OptionArrayMap getOutputFormatOptions();
74+
OptionArrayMap AvExport getOutputFormatOptions();
7575

7676
/**
7777
* @brief Get the list of options for each video codec
7878
*/
79-
OptionArrayMap getVideoCodecOptions();
79+
OptionArrayMap AvExport getVideoCodecOptions();
8080

8181
/**
8282
* @brief Get the list of options for each audio codec
8383
*/
84-
OptionArrayMap getAudioCodecOptions();
84+
OptionArrayMap AvExport getAudioCodecOptions();
8585

8686
}
8787

0 commit comments

Comments
 (0)