freebsd-ports/multimedia/dvbcut/files/patch-lavfmuxer.cpp
Stefan Eßer 8b8a92680a Unbreak compilation caused by removal of C++ compatibility wrappers
from include files that are installed by ffmpeg. The ffmpeg developers
wanted to make it clear, that C++ is not officially supported.
2007-07-17 06:27:12 +00:00

12 lines
315 B
C++

--- src/lavfmuxer.cpp~ 2007-04-13 19:36:27.000000000 +0200
+++ src/lavfmuxer.cpp 2007-07-17 01:09:12 +0200
@@ -16,7 +16,9 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+extern "C" {
#include <ffmpeg/avformat.h>
+}
#include <string.h>
#include <utility>
#include <list>