From 3115f9e6db7be80d14aa0aa96d046284a0cced38 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Sun, 23 Jun 2013 14:43:35 -0700 Subject: [PATCH] Fix compile error on older versions of FFmepg and Libav. --- src/modules/avformat/consumer_avformat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/avformat/consumer_avformat.c b/src/modules/avformat/consumer_avformat.c index bdfd556d..ff7a2c72 100644 --- a/src/modules/avformat/consumer_avformat.c +++ b/src/modules/avformat/consumer_avformat.c @@ -62,6 +62,7 @@ #define AV_CODEC_ID_NONE CODEC_ID_NONE #define AV_CODEC_ID_AC3 CODEC_ID_AC3 #define AV_CODEC_ID_VORBIS CODEC_ID_VORBIS +#define AV_CODEC_ID_RAWVIDEO CODEC_ID_RAWVIDEO #endif #define MAX_AUDIO_STREAMS (8) -- 2.39.5