summaryrefslogtreecommitdiffstats
path: root/stream/stream_lavf.c
diff options
context:
space:
mode:
authorllyyr <llyyr.public@gmail.com>2024-01-20 00:15:30 +0530
committerDudemanguy <random342@airmail.cc>2024-01-20 16:10:20 +0000
commit8fe2af09f18d83986d39961ce3469fa8857607d7 (patch)
treee499ab77549c4390c4ab97026559f0bf1e51c703 /stream/stream_lavf.c
parentf4a09fada9d1e1eada055350bae565ccd91146f4 (diff)
downloadmpv-8fe2af09f18d83986d39961ce3469fa8857607d7.tar.bz2
mpv-8fe2af09f18d83986d39961ce3469fa8857607d7.tar.xz
common: stream: don't mention Libav in errors/warnings
Diffstat (limited to 'stream/stream_lavf.c')
-rw-r--r--stream/stream_lavf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c
index c153ddd4a2..a471c086e5 100644
--- a/stream/stream_lavf.c
+++ b/stream/stream_lavf.c
@@ -324,7 +324,7 @@ static int open_f(stream_t *stream)
if (err < 0) {
if (err == AVERROR_PROTOCOL_NOT_FOUND)
MP_ERR(stream, "Protocol not found. Make sure"
- " ffmpeg/Libav is compiled with networking support.\n");
+ " FFmpeg is compiled with networking support.\n");
goto out;
}