2018-03-08 10:54 GMT+01:00, Mert Gedik <[email protected]>: > I am trying to build ffmpeg with only needed protocol and codecs, > so I run below configure command, > > *$ ./configure --disable-everything --disable-ffmpeg > --enable-decoder=aac,h264*
You should start with "--disable-all", "--disable-everything" is a debug option that does not exactly what you require. The first option means that you have to add things like "--enable-avcodec" iirc. Your issue is probably that you didn't add the necessary parsers: --enable-parser=aac,h264 Carl Eugen _______________________________________________ Libav-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/libav-user
