[issue1611] Metasoft MJPEG codec

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Fixed in r21451. -- status: open - closed substatus: reproduced - fixed _ FFmpeg issue tracker iss...@roundup.ffmpeg.org

[issue1157] av_find_stream_info hangs when processing this AVI file

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: I'd like to add that we should really continue to demand svn: In incoming the version says: FFmpeg version git-6a1265c, Copyright (c) 2000-2008 Fabrice Bellard, et al. There is a subtle difference to the line posted here

[issue1713] rtsp.c demuxer fails to check filehandle being invalid

2010-01-26 Thread Jeremy Morton
New submission from Jeremy Morton ffm...@game-point.net: In rtsp.c, after this line: #if CONFIG_RTSP_DEMUXER the next line should be: if (tcp_fd != -1 FD_ISSET(tcp_fd, rfds)) { Internally, if the tcp_fd is -1, it should not be considered a valid FD and we don't want to check it with

[issue1713] rtsp.c demuxer fails to check filehandle being invalid

2010-01-26 Thread Ronald S. Bultje
Ronald S. Bultje rsbul...@gmail.com added the comment: Patch attached, for clarity. _ FFmpeg issue tracker iss...@roundup.ffmpeg.org https://roundup.ffmpeg.org/roundup/ffmpeg/issue1713

[issue1713] rtsp.c demuxer fails to check filehandle being invalid

2010-01-26 Thread Luca Abeni
Luca Abeni lucab...@email.it added the comment: Patch is ok, IMHO Luca _ FFmpeg issue tracker iss...@roundup.ffmpeg.org https://roundup.ffmpeg.org/roundup/ffmpeg/issue1713

[issue1713] rtsp.c demuxer fails to check filehandle being invalid

2010-01-26 Thread Ronald S. Bultje
Ronald S. Bultje rsbul...@gmail.com added the comment: Fixed in r21461. -- status: new - closed substatus: new - fixed _ FFmpeg issue tracker iss...@roundup.ffmpeg.org https://roundup.ffmpeg.org/roundup/ffmpeg/issue1713

[issue1713] rtsp.c demuxer fails to check filehandle being invalid

2010-01-26 Thread Jeremy Morton
Jeremy Morton ffm...@game-point.net added the comment: I accidentally removed my first message in this bug, the one preceding msg9050 (*facepalm), so here it is again: In rtsp.c, after this line: #if CONFIG_RTSP_DEMUXER the next line should be: if (tcp_fd != -1 FD_ISSET(tcp_fd, rfds)) {

[issue1633] Recent patch to libavcodec/h264.c breaks playback of legit files

2010-01-26 Thread Christos Gourdoupis
Christos Gourdoupis xg...@tellas.gr added the comment: te checks checks for 0, 0 is surely not valid Aaargh I didn't realize there's a check for 0, 0 hidden in there too. Now it makes sense. _ FFmpeg issue tracker iss...@roundup.ffmpeg.org

[issue1470] Can't open MXF file from BBC ingex recorder - could not resolve material track sequence strong ref

2010-01-26 Thread Philip de Nier
Philip de Nier philip.den...@rd.bbc.co.uk added the comment: Hi, Please find attached a patch that adds support for the 8-bit BBC Ingex Archive MXF file format. It also adds support for the 10-bit format which is used with DigiBeta tapes. A 10-bit sample file has been uploaded to here:

[issue1470] Can't open MXF file from BBC ingex recorder - could not resolve material track sequence strong ref

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Development policy is one feature per patch, so without knowing much about MXF, at least the UYVY part has to be separated from V210. In the mxf_essence_container_uls section of the patch, there are cosmetic changes

[issue1091] Codecs do not warn if an unsupported value for lowres is passed

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: This is not theora-specific, even codecs that support lowres (0) crash and/or produce broken output for too high values. Michael, is the correct solution to add a max_lowres value to struct AVCodec? -- substatus:

[issue1676] libavformat doesn't undertand file URLs

2010-01-26 Thread Michele Orrù
Michele Orrù maker...@gmail.com added the comment: This patch should fix. -- status: new - open _ FFmpeg issue tracker iss...@roundup.ffmpeg.org https://roundup.ffmpeg.org/roundup/ffmpeg/issue1676

[issue1099] Cinepak + lowres option = broken output

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Is now a duplicate of issue 1091. -- status: new - closed substatus: new - duplicate superseder: +Codecs do not warn if an unsupported value for lowres is passed

[issue1010] WMV3 bug with lowres option

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Is now a duplicate of issue 1091. -- status: new - closed substatus: new - duplicate superseder: +Codecs do not warn if an unsupported value for lowres is passed

[issue1023] FFplay crashes with IV32 codec and lowres option

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Is now a duplicate of issue 1091. -- status: new - closed substatus: new - duplicate superseder: +Codecs do not warn if an unsupported value for lowres is passed

[issue1676] libavformat doesn't undertand file URLs

2010-01-26 Thread Ramiro Polla
Ramiro Polla ram...@lisha.ufsc.br added the comment: Hmm, that's quite hackish. Besides, we don't add #ifdefs unless it's absolutely necessary, which isn't the case here. This only happens to work on unix because you can add as many /s as you want and it points to the same directory, for

[issue1470] Can't open MXF file from BBC ingex recorder - could not resolve material track sequence strong ref

2010-01-26 Thread Baptiste Coudurier
Baptiste Coudurier baptiste.coudur...@gmail.com added the comment: Hi, On 01/26/2010 10:27 AM, Philip de Nier wrote: Philip de Nierphilip.den...@rd.bbc.co.uk added the comment: Hi, Please find attached a patch that adds support for the 8-bit BBC Ingex Archive MXF file format. It also

[issue1676] libavformat doesn't undertand file URLs

2010-01-26 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Jan 11, 2010 at 10:21:52AM +, aviad rozenhek wrote: New submission from aviad rozenhek avia...@gmail.com: simple file URLs are of the form file://absolute-path, on windows platform an example would be

[issue1498] AC3 5.1 breaks ffmpeg

2010-01-26 Thread Jacques
Jacques jacques.h...@credit-suisse.com added the comment: Hi guys, I just had a look at SVN-r21465 and this is still an issue. put_le16(pb, 0xfffe) in riff.c on #334 is not tagging the audio stream correctly. VLC (1.0.3) still picks it up as undf and breaks and mplayer (dev-SVN-r28227-

[issue1498] AC3 5.1 breaks ffmpeg

2010-01-26 Thread Carl Eugen Hoyos
Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Did you consider that the problem might be vlc-related? AFAIK, the relevant application for avi files is WMP, no? _ FFmpeg issue tracker iss...@roundup.ffmpeg.org

[issue1498] AC3 5.1 breaks ffmpeg

2010-01-26 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Jan 26, 2010 at 10:03:40PM +, Jacques wrote: Jacques jacques.h...@credit-suisse.com added the comment: Hi guys, I just had a look at SVN-r21465 and this is still an issue. put_le16(pb, 0xfffe) in riff.c on

[issue1714] duration can't be computed for a .ts file when the pts wraps

2010-01-26 Thread jsmar
New submission from jsmar jm-ffm...@themarvins.org: The av_find_stream_info() api in libavformat fails to compute the duration of a mpeg transport stream (.ts) file it the pts wraps within the file. The problem is that the procedure av_estimate_timings_from_pts() doesn't handle the wrap. The