@@ -33,55 +33,55 @@ bool AvExport matchFormat( const std::string& format, const std::string& filenam
33
33
* @brief Get pixel format supported by a video codec.
34
34
* @param videoCodecName: the video codec name (empty if not indicated, and so get all pixel formats supported by all video codecs).
35
35
*/
36
- std::vector<std::string> getPixelFormats ( const std::string& videoCodecName = " " );
36
+ std::vector<std::string> AvExport getPixelFormats ( const std::string& videoCodecName = " " );
37
37
38
38
/* *
39
39
* @brief Get sample format supported by an audio codec.
40
40
* @param audioCodecName: the audio codec name (empty if not indicated, and so get all sample formats supported by all audio codecs).
41
41
*/
42
- std::vector<std::string> getSampleFormats ( const std::string& audioCodecName = " " );
42
+ std::vector<std::string> AvExport getSampleFormats ( const std::string& audioCodecName = " " );
43
43
44
44
/* *
45
45
* @brief Get the corresponding AVPixelFormat from the pixel format name
46
46
* @param pixelFormat: the name of the pixel format
47
47
*/
48
- AVPixelFormat getAVPixelFormat ( const std::string& pixelFormat );
48
+ AVPixelFormat AvExport getAVPixelFormat ( const std::string& pixelFormat );
49
49
50
50
/* *
51
51
* @brief Get the corresponding AVSampleFormat from the sample format name
52
52
* @param sampleFormat: the name of the sample format
53
53
*/
54
- AVSampleFormat getAVSampleFormat ( const std::string& sampleFormat );
54
+ AVSampleFormat AvExport getAVSampleFormat ( const std::string& sampleFormat );
55
55
56
56
/* *
57
57
* @brief Get array of short/long names of all format supported by FFmpeg / libav.
58
58
*/
59
- NamesArray getFormatsNames ();
59
+ NamesArray AvExport getFormatsNames ();
60
60
61
61
/* *
62
62
* @brief Get array of short/long names of all video codec supported by FFmpeg / libav.
63
63
*/
64
- NamesArray getVideoCodecsNames ();
64
+ NamesArray AvExport getVideoCodecsNames ();
65
65
66
66
/* *
67
67
* @brief Get array of short/long names of all audio codec supported by FFmpeg / libav.
68
68
*/
69
- NamesArray getAudioCodecsNames ();
69
+ NamesArray AvExport getAudioCodecsNames ();
70
70
71
71
/* *
72
72
* @brief Get the list of options for each output format
73
73
*/
74
- OptionArrayMap getOutputFormatOptions ();
74
+ OptionArrayMap AvExport getOutputFormatOptions ();
75
75
76
76
/* *
77
77
* @brief Get the list of options for each video codec
78
78
*/
79
- OptionArrayMap getVideoCodecOptions ();
79
+ OptionArrayMap AvExport getVideoCodecOptions ();
80
80
81
81
/* *
82
82
* @brief Get the list of options for each audio codec
83
83
*/
84
- OptionArrayMap getAudioCodecOptions ();
84
+ OptionArrayMap AvExport getAudioCodecOptions ();
85
85
86
86
}
87
87
0 commit comments