Re: [Libav-user] how to build ffmpeg lib for android and ios platform

2016-07-17 Thread Carl Eugen Hoyos
Hwangho Kim writes: > https://github.com/kewlbear/FFmpeg-iOS-build-script Looks broken. Please report if FFmpeg compilation out-of-the-box for ios or Android fail. Carl Eugen ___ Libav-user mailing list Libav-user@ffmpeg.org

Re: [Libav-user] how to build ffmpeg lib for android and ios platform

2016-07-17 Thread Carl Eugen Hoyos
qw writes: > Hi,I know the steps of building ffmpeg lib on linux. However, > how to build ffmpeg lib for android and ios platform? FFmpeg is supposed to build on both Android and ios just as on Linux, if it does not work, please report back. Carl Eugen

Re: [Libav-user] how to build ffmpeg lib for android and ios platform

2016-07-17 Thread Hwangho Kim
2016-07-17 19:24 GMT+09:00 qw : > Hi, > > I know the steps of building ffmpeg lib on linux. However, how to build > ffmpeg lib for android and ios platform? > > Thanks! > > Regards > > andrew > > > > > ___ > Libav-user mailing list >

[Libav-user] how to build ffmpeg lib for android and ios platform

2016-07-17 Thread qw
Hi, I know the steps of building ffmpeg lib on linux. However, how to build ffmpeg lib for android and ios platform? Thanks! Regards andrew ___ Libav-user mailing list Libav-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/libav-user

[Libav-user] av_buffersink_get_frame incompatible with sws_scale

2016-07-17 Thread straycodemonkey
I'm using av_buffersink_get_frame to perform deinterlacing of video frames using the yadif filter. I then pass the resulting filtered onto a further process to composite various elements together to create a final frame. During this process sws_scale is used to resize / convert the filtered frame,

[Libav-user] what's the general setting for network reading and writing?

2016-07-17 Thread qw
Hi, If input or output is set to file, it's easy to set AVFormatContext. But for network application, there are many issues that should be considered, such as network delay, no network connection, and corrupted data. How to set AVFormatContext to deal with those general network issues?