File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ while (!demuxer->IsDone())
5757
5858// Save everything to disk by closing the muxer.
5959muxer->Close();
60-
6160```
6261
6362If you use the included simple-interface library, which only supports a subset of the full library, using ffmpeg-cpp becomes even easier:
@@ -74,9 +73,9 @@ int main()
7473 ffmpegCppGenerate(handle);
7574 ffmpegCppClose(handle);
7675}
77- ´´´
76+ ```
7877
79- ## C\#
78+ ## C
8079
8180The simple-interface is made in such a way that it can easily be called using [DllImport] from any C# project:
8281
@@ -140,7 +139,7 @@ The simple-interface is made in such a way that it can easily be called using [D
140139 [DllImport("simple_interface.dll", CallingConvention = CallingConvention.Cdecl)]
141140 private static extern void ffmpegCppClose(IntPtr handle);
142141 }
143- ´´´
142+ ```
144143
145144If you want to use ffmpeg-cpp in a C# project, you can easily do so by making your own C-wrapper around the
146145
You can’t perform that action at this time.
0 commit comments