[issue2318] FFserver bug

2011-01-30 Thread Luca Barbato

Luca Barbato lu_z...@gentoo.org added the comment:

Fixed

--
status: open - closed
substatus: open - fixed


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318



[issue2318] FFserver bug

2010-12-21 Thread landhar

landhar de...@larre-borges.com added the comment:

lu_zero says that the issue comes from the fact that the default values for the
stream and the codec are different. Isn't there any way to override this values
from the configuration file ?

On the other hand, his patch works in my machine.


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318



[issue2318] FFserver bug

2010-12-17 Thread Luca Barbato

Luca Barbato lu_z...@gentoo.org added the comment:

That's because the whole machinery got broken by the fact the codec defaults and
the stream defaults now are different (one is 0/0 the other 0/1). I have a
stupid patch to fix that by overwriting the value.

Still we should either rethink this monster.

diff --git a/ffserver.c b/ffserver.c
index fcc3359..d16b82a 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -3782,6 +3782,8 @@ static void build_feed_streams(void)
 AVStream *st;
 st = feed-streams[i];
 s-streams[i] = st;
+//XXX: workaround
+st-sample_aspect_ratio = st-codec-sample_aspect_ratio;
 }
 av_set_parameters(s, NULL);
 if (av_write_header(s)  0) {


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318



[issue2318] FFserver bug

2010-12-17 Thread Luca Barbato

Luca Barbato lu_z...@gentoo.org added the comment:

Update topic

--
topic: +ffserver


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318



[issue2318] FFserver bug

2010-11-26 Thread Colin Law

Colin Law clan...@googlemail.com added the comment:

It is unclear to me from the earlier reports here whether this bug is fatal or
whether the server continues.  For me it is fatal.  Using the sample config file
from http://www.ffmpeg.org/sample.html but with all streams except mutlipart
jpeg commented out I get the same codec width, height and framerate, and Aspect
ratio errors but then the server exits.
The workaround using rational.h file from revision 25337 does solve the problem
for me, but for the moment the current svn appears to be broken.
Running on Ubuntu 10.04.


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318



[issue2318] FFserver bug

2010-10-28 Thread Rocky

Rocky rocky.cardw...@lifespringschool.org added the comment:

This seems to have been introduced in revision 25338 with changes to the
av_cmp_q function in libavutil/rational.h.  I don't understand it well enough to
fix it but as a workaround it works for me when I use the rational.h file from
revision 25337.


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318



[issue2318] FFserver bug

2010-10-28 Thread Carl Eugen Hoyos

Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment:

Described as a regression.

--
priority: normal - important
status: new - open
substatus: new - open
topic: +regression


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318



[issue2318] FFserver bug

2010-10-25 Thread Benjamin Larsson

Benjamin Larsson ba...@ludd.ltu.se added the comment:

/ffmpeg6.1/ffmpeg-0.6.1$ ./ffserver -f ffserver.conf 
FFserver version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers
  built on Oct 22 2010 15:31:23 with gcc 4.4.3
  configuration: --enable-libmp3lame --enable-libfaac --enable-nonfree -
-enable-libx264 --enable-gpl --enable-pthreads
  libavutil 50.15. 1 / 50.15. 1
  libavcodec52.72. 2 / 52.72. 2
  libavformat   52.64. 2 / 52.64. 2
  libavdevice   52. 2. 0 / 52. 2. 0
  libswscale 0.11. 0 /  0.11. 0
Fri Oct 22 15:36:00 2010 FFserver started.

Same conf but 6.1 release.


FFmpeg issue tracker iss...@roundup.ffmpeg.org
https://roundup.ffmpeg.org/issue2318