Re: [Libav-user] Force low-delay handling? question + feature suggestion

2011-11-24 Thread Carl Eugen Hoyos
Camera Man i.like.privacy.too@... writes: would it work to patch ff_h264_decode_init() and decode_postinit() to also check the AV_DISCARD mode, and if we are discarding B and/or nonref frames, would set avctx-has_b_frames=0 and low_delay=1 ? I don't know but I suggest that you write such a

Re: [Libav-user] Unable to compile i386 compatible ffmpeg dylibs on Mac OS X

2011-11-24 Thread Carl Eugen Hoyos
Simon Daniels simondaniels23@... writes: Thanks guys but omitting -fomit-frame-pointer in the last gcc call or replacing it with -fno-omit-frame-pointer resulted in the same error (trying both gcc and clang). [...] make V=1 of clang is: clang -m32 -I. -I/Users/user/Downloads/ffmpeg-0.8.7

[Libav-user] Creating a standard MP4 file using exisiting H264 Elementary stream

2011-11-24 Thread Shachar Arieli
Hi, I have an application which is required to create a video file (only video no audio) which is readable by the Microsoft media player (latest version). The video data is pre encoded (received from a hardware encoder) H264 Elementary stream. Currently I have a version that is able to create

Re: [Libav-user] Force low-delay handling? question + feature suggestion

2011-11-24 Thread Alex Cohn
On Thu, Nov 24, 2011 at 12:06, Carl Eugen Hoyos ceho...@ag.or.at wrote: Camera Man i.like.privacy.too@... writes: would it work to patch ff_h264_decode_init() and decode_postinit() to also check the AV_DISCARD mode, and if we are discarding B and/or nonref frames, would set

Re: [Libav-user] Unable to compile i386 compatible ffmpeg dylibs on Mac OS X

2011-11-24 Thread Simon Daniels
Hi Carl, Apologies - I had tried without -fomit-frame-pointer and replacing it with -fno-omit-frame-pointer but that wasn't what I pasted in the email. I'll be more detailed this time. Here's what I did this time. I'm sticking to ffmpeg-0.8.7 because I am a distributor. 1. Ran ./configure

Re: [Libav-user] Creating a standard MP4 file using exisiting H264 Elementary stream

2011-11-24 Thread Carl Eugen Hoyos
Shachar Arieli shachara@... writes: I have an application which is required to create a video file (only video no audio) which is readable by the Microsoft media player (latest version). Which version? Carl Eugen ___ Libav-user mailing list

Re: [Libav-user] Unable to compile i386 compatible ffmpeg dylibs on Mac OS X

2011-11-24 Thread Simon Daniels
Hi Carl, 1. ./configure --cc=gcc -m32 --disable-decoder=h264,svq3 --disable-parser=h264 completed just fine without any errors on 0.8.7. 2. I ran ./configure --cc=gcc-m32 on the current git head and got the same error as before. 3. Ran last gcc command with O1 and O2 and got same error on