You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: Missing extra libs linker flags
ffmpeg .mak file can look like this when there are a lot of linked flags
for different libraries but now ffmpeg only reads the main EXTRALIBS=
while the other libs are ignored.
After this change it flat maps over all of the extralibs (I also added
support for -L flags) and everything works semlessly
```
EXTRALIBS=
...
EXTRALIBS-avdevice=-lm
EXTRALIBS-avfilter=-pthread -lm
EXTRALIBS-swscale=-lm
EXTRALIBS-postproc=-lm
EXTRALIBS-avformat=-lm
EXTRALIBS-avcodec=-pthread -lm -lmp3lame -lm -L/opt/homebrew/Cellar/x264/r3108/lib -lx264 -L/opt/homebrew/Cellar/x265/3.6/lib -lx265
EXTRALIBS-swresample=-lm
EXTRALIBS-avutil=-pthread -lm -framework CoreFoundation -framework CoreVideo -framework CoreMedia
EXTRALIBS-ffplay=
EXTRALIBS-ffprobe=
EXTRALIBS-ffmpeg=
EXTRALIBS-cpu_init=-pthread
EXTRALIBS-cws2fws=
```
0 commit comments