diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2022-08-31 16:24:22 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2022-08-31 16:24:22 +0200 |
commit | 7180416084cd9074e67a039992b43e5dc282fb81 (patch) | |
tree | a913d8f35a7629d677428bbd2cf99f52129b0fb3 | |
parent | 4fce3bab64699092100a65e957be4d1394c0b4d3 (diff) | |
download | ffmpeg-7180416084cd9074e67a039992b43e5dc282fb81.tar.gz |
lavf/sdp: Add missing version.h include
Fixes lavf version output in SDP, regression since 4eb9232c
-rw-r--r-- | libavformat/sdp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 99a19852ff..6888936290 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -33,6 +33,7 @@ #include "avc.h" #include "hevc.h" #include "rtp.h" +#include "version.h" #if CONFIG_NETWORK #include "network.h" #endif |