[issue865] MTV output is flipped horizontally

2009-02-24 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Feb 24, 2009 at 09:02:42AM +, Benjamin Larsson wrote: New submission from Benjamin Larsson ba...@ludd.ltu.se: The output is upside down. Makes it useless to transcode to something else. I guess this probably fixes

[issue875] wmv3 and wma2 in mov container

2009-02-28 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Feb 28, 2009 at 10:46:42AM +, Kostya Shishkov wrote: Kostya Shishkov kostya.shish...@gmail.com added the comment: With this patch I can initialize decoder extradata but then decoder would spit Error while decoding

[issue887] pond.dv not recognized as DV file

2009-03-09 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Mar 09, 2009 at 09:07:10PM +, Diego Biurrun wrote: Diego Biurrun di...@biurrun.de added the comment: On Sat, Mar 07, 2009 at 10:00:49PM +, Reimar Döffinger wrote: Reimar Döffinger b...@reimardoeffinger.de

[issue887] pond.dv not recognized as DV file

2009-03-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Mar 09, 2009 at 03:37:09PM -0700, Baptiste Coudurier wrote: On 3/9/2009 3:54 PM, Reimar Döffinger wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Mar 09, 2009 at 09:07:10PM +, Diego

[issue896] Bad installation for latest ffmpeg on x86_64 platform

2009-03-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: When configured for the x86_64 architecture, the shared libraries are enabled, and the prefix is set to /usr (instead of default /usr/local) the libraries (both .a and .so) and .pc files are installed to /usr/lib and not /usr/lib64

[issue943] WMA decoding seems broken with mingw (ffmpeg.exe crash)

2009-04-01 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Apr 01, 2009 at 02:46:22PM +, Brian Kiefer wrote: Brian Kiefer kiefer_br...@bah.com added the comment: The problem also occurs when only using the DLLs built with the --enable-shared --disable-static flags

[issue946] Huffyuv encoded file depends on uninitialized memory content

2009-04-03 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Apr 03, 2009 at 05:03:04PM +, Vitor wrote: Vitor vitor1...@gmail.com added the comment: does changing av_malloc to av_mallocz in alloc_temp() help? No, the ugly hack that works is the following: I think this

[issue946] Huffyuv encoded file depends on uninitialized memory content

2009-04-03 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Apr 03, 2009 at 06:07:22PM +, Vitor wrote: Vitor vitor1...@gmail.com added the comment: More acceptable fix attached: Index: libavcodec/huffyuv.c

[issue945] DV encoder output depends on uninitalized memory

2009-04-03 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Apr 03, 2009 at 06:31:45PM +, Vitor wrote: Vitor vitor1...@gmail.com added the comment: More correct patch attached. Is it ok to add a bytestream_put_zeros() to bytestream.h to simplify it? Not sure if it applies

[issue945] DV encoder output depends on uninitalized memory

2009-04-03 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Apr 03, 2009 at 07:21:15PM +, Vitor wrote: Vitor vitor1...@gmail.com added the comment: Reimar Döffinger @roundup.ffmpeg.org wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Apr 03, 2009

[issue957] Nuppelvideo FATE test output depends on unitialized memory

2009-04-09 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: I think all issues are fixed, and without changing the FATE test results. -- status: open - closed substatus: analyzed - fixed FFmpeg issue tracker iss

[issue956] Cinepak decoder depends on unintialized memory

2009-04-09 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: I don't maintain the file, but your patch seems very obviously correct to me. Your description of the patch is bad though, it should be linesize[0] can not be used when copy from raw input data, since it might include and arbitrary

[issue960] Valgrind reports a mem leak in EA-TQI decoder

2009-04-09 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: IMHO the if (ret != chunk_size) checks should simply be replaced with if (ret 0) return ret; and thus partial frames be returned (it also means the correct AVERROR will be returned instead of always AVERROR(EIO)). If this causes

[issue945] DV encoder output depends on uninitalized memory

2009-04-09 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: My knowledge of DV is limited, but let's have a look. The first 4 memsets should not be necessary because of the memset(buf, 0xff, 80 * 6); /* first 6 DIF blocks are for control data */ that is already there. The 5th is already covered

[issue980] bad memory access in f_h264_decode_rbsp_trailing()

2009-04-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Apr 11, 2009 at 08:57:07AM +, =?utf-8?q?reimar_d=c3=b6ffinger_=3cissues=40roundup=2effmpeg=2eorg=3...@roundup.ffmpeg.org wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Apr 11, 2009 at 08

[issue980] bad memory access in f_h264_decode_rbsp_trailing()

2009-04-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Apr 11, 2009 at 09:34:31AM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: I find it unlikely that this is a Windows-issue: The OP uses an Apple gcc ;-) Oh, I

[issue941] h264 crash/valgrind warning in put_h264_qpel8_h_lowpass_l2_ssse3

2009-04-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Apr 11, 2009 at 09:02:40AM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Tested with different compilers on Core 2 Duo (with SSSE3 support): No crashes, valgrind

[issue979] ffmpeg built with shared libs - incorrect output, sometimes crashes.

2009-04-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Apr 11, 2009 at 11:04:48AM +, Eriks A wrote: Eriks A xir...@gmail.com added the comment: ffmpeg_g.exe -i 1.mp3 1.wav Ah, it is _you_ who I wanted to test a patch (I responded to the wrong issue earlier). Please try

[issue960] Valgrind reports a mem leak in EA-TQI decoder

2009-04-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: Fixed in SVN r18428 -- status: open - closed substatus: analyzed - fixed FFmpeg issue tracker iss...@roundup.ffmpeg.org https://roundup.ffmpeg.org/roundup/ffmpeg/issue960

[issue986] Truemotion2 decoder - chroma issues

2009-04-16 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: I'd suggest changing my patch to use (*src++ + 514) 2 to get free rounding, but otherwise after looking at all the sample files we have I do think it to be correct, even though it is hard to _know_ for sure

[issue986] Truemotion2 decoder - chroma issues

2009-04-16 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: Is that third party app the original game? Just to be sure your reference is actually reliable. Unfortunately I can't attach a new patch, but if you change av_clip_uint8((*src++ 2) + 128); to av_clip_uint8((*src++ + 257) 1

[issue986] Truemotion2 decoder - chroma issues

2009-04-16 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: One more change should be changing PIX_FMT_YUV420P to PIX_FMT_YUVJ420P. FFmpeg issue tracker iss...@roundup.ffmpeg.org https://roundup.ffmpeg.org/roundup/ffmpeg/issue986

[issue1039] Cannot find DV header

2009-04-28 Thread Reimar Döffinger
New submission from Reimar Döffinger b...@reimardoeffinger.de: On Tue, Apr 28, 2009 at 01:20:05PM -0400, Lukas Diduch wrote: My video file has been recorded with libiec61883, and can be played back fine using mplayer : A sample file uploaded to ftp://upload.ffmpeg.org/MPlayer/incoming (write

[issue1109] Support for XSUB (DivX subtitles) encoding.

2009-05-23 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, May 23, 2009 at 12:49:46PM +, ffsbugs wrote: New submission from ffsbugs ffm...@running-it.net: Patch posted on the mailinglist in february seems to work with trunk, but didn't see the results of it in 0.5 release

[issue1135] Segmentation fault while converting AVI...

2009-06-03 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Jun 01, 2009 at 09:30:15PM +, Baptiste Coudurier wrote: Baptiste Coudurier baptiste.coudur...@gmail.com added the comment: Attached valgrind output. Huh? That doesn't show anything really wrong. Which is also

[issue950] build failed using mingw32ce (with recent svn co) ...

2009-06-04 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Jun 04, 2009 at 02:25:51AM +, Arundev wrote: Arundev aru.arun@gmail.com added the comment: Build Still fails, I checkout the latest version from SVN. So i hope this information help you guys. Or please give me

[issue1177] Swscale error (demuxer failure?) in MOV file

2009-06-26 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Jun 26, 2009 at 01:47:35AM +, Jason Garrett-Glaser wrote: Jason Garrett-Glaser darkshik...@gmail.com added the comment: Missing references is a known issue; ffmpeg doesn't currently have support for decoding streams

[issue1153] ac3dec 5.1 material is 3x softer than 2.0 material

2009-06-27 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Jun 27, 2009 at 03:34:33PM +, Mark Spieth wrote: Mark Spieth mspi...@digivation.com.au added the comment: sorry for the delay dialnorm is the difference. 5.1 sits at 28 2.0 sits at 22 so this is a 6dB difference

[issue1183] Segfault in H.264 decoding with corrupt sample

2009-06-30 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Jun 30, 2009 at 01:00:22AM +, Alexander Strange wrote: Alexander Strange astra...@ithinksw.com added the comment: The check if(nalsize = 1 || (nalsize+buf_index buf_size)){ overflows because nalsize is INT_MAX

[issue1197] DVD NTSC video plays twice as fast when encoded with libtheora

2009-06-30 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: Sorry for accidentally changing the title back. -- title: Video Plays Twice As Fast - DVD NTSC video plays twice as fast when encoded with libtheora _ FFmpeg issue tracker

[issue1240] Multiple crashing bugs in processing of malformed files

2009-07-03 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Jun 30, 2009 at 06:28:54PM +, WD wrote: Attached is a zip file with multiple (73) files that cause ffmpeg to crash. A lot of these file crash no longer with SVN, please get rid of those that work now, 73 files are simply

[issue1262] Modularized support for legally risky codecs

2009-07-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Jul 10, 2009 at 07:35:26AM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: First, this is already implemented: Just recompile/replace the .so file of your

[issue1276] r19342 breaks some mjpeg file

2009-08-01 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Aug 02, 2009 at 04:22:21AM +, Michael Niedermayer wrote: Michael Niedermayer michae...@gmx.at added the comment: On Mon, Jul 20, 2009 at 03:50:11AM +, Ramiro Polla wrote: file uploaded to /incoming/issue1276

[issue1276] r19342 breaks some mjpeg file

2009-08-01 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Aug 02, 2009 at 05:58:47AM +, Reimar Döffinger wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Aug 02, 2009 at 04:22:21AM +, Michael Niedermayer wrote: Michael Niedermayer michae

[issue1276] r19342 breaks some mjpeg file

2009-08-02 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Aug 02, 2009 at 06:04:21AM +, Reimar Döffinger wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Aug 02, 2009 at 05:58:47AM +, Reimar Döffinger wrote: Reimar Döffinger b

[issue1323] Memory leak(s) in libavcodec

2009-08-15 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Aug 14, 2009 at 10:33:41PM +, Jonas wrote: New submission from Jonas tdarksha...@hotmail.com: \libavcodec\intrax8.c: function x8_vlc_init calls alloc_table, that memory is never freed (x8_vlc_init - init_ac_vlc

[issue1322] lavf demuxer fails with smc mov

2009-08-15 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Aug 14, 2009 at 10:11:46PM +, compn wrote: New submission from compn te...@twmi.rr.com: http://samples.mplayerhq.hu/V-codecs/SMC/0102.mov mplayer -demuxer lavf 0102.mov blank video mplayer -demuxer mov 0102.mov

[issue1323] Memory leak(s) in libavcodec

2009-08-15 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Aug 15, 2009 at 04:05:59PM +, Jonas wrote: but i still would recommend implementing a ref count (or something else) and free the memory when last instance closes. ...yes this is possible in a multithreaded environment

[issue1339] Patch to fix some coverity issues that were found...

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 03:27:11PM +, Kent Mein wrote: Index: libavformat/rdt.c === --- libavformat/rdt.c (revision 19694) +++ libavformat/rdt.c (working copy

[issue1340] over run of static array

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 04:13:39PM +, Kent Mein wrote: New submission from Kent Mein m...@cs.umn.edu: Another coverity issue: CID: 443 Checker: OVERRUN_STATIC (help) File: base/src/extern/ffmpeg/libavcodec/dca.c Function

[issue1341] another overrun of static array.

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 04:49:07PM +, Kent Mein wrote: New submission from Kent Mein m...@cs.umn.edu: This is coverity CID: 442 Checker: OVERRUN_STATIC (help) File: base/src/extern/ffmpeg/libavcodec/dsputil.c Function

[issue1338] Unknown pixel format in WMV

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 06:16:50PM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Works fine with mplayer -vc ffwmv3, mplayer -vc ffwmv3vdpau and mplayer -vc wmv9dmo, so I

[issue1343] non-interleaved AVI read fix

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 05:23:26PM +, verem wrote: New submission from verem ve...@m1stereo.tv: As seen resulting file is at least 85 frames length but source is 48 The problem happens because of index aligning/honor code

[issue1322] lavf demuxer fails with smc mov

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 08:34:56PM +, Ronald S. Bultje wrote: Ronald S. Bultje rsbul...@gmail.com added the comment: Passing stsd isn't going to make it remuxable to other codecs... I would, though it might be a non-standard

[issue1322] lavf demuxer fails with smc mov

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 01:53:00PM -0700, Baptiste Coudurier wrote: On 08/25/2009 02:12 PM, Reimar Döffinger wrote: Reimar Döffingerb...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 08:34:56PM +, Ronald S

[issue1343] non-interleaved AVI read fix

2009-08-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Aug 25, 2009 at 09:26:22PM +, verem wrote: verem ve...@m1stereo.tv added the comment: May be i am wrong, but actually added condition (avi-stream_index 0) prevents from broking ast-remaining value: - ast

[issue1367] flashsv decoder should handle unchanged regions in a?frame instead of skipping them

2009-09-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Sep 10, 2009 at 08:37:00AM +, Jarkko Palviainen wrote: Jarkko Palviainen jarkko.palviai...@sesca.com added the comment: I actually got it working by simply replacing get_buffer() call with reget_buffer() in flashsv

[issue1367] flashsv decoder should handle unchanged regions in a?frame instead of skipping them

2009-09-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Sep 10, 2009 at 12:37:56PM +, Michael Niedermayer wrote: Michael Niedermayer michae...@gmx.at added the comment: [...] But, there's a catch with the gstreamer plugin: it sets its own get_buffer() function which

[issue1375] Problem Compiling ffmpeg on CentOS

2009-09-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Sep 11, 2009 at 07:10:21AM +, GuldantheWarlock wrote: Now since I'm logged in as root, I should have no problems accessing /tmp so I figure it's just a bug in the script. If you are a server admin you really should

[issue1381] RV30(?) - memory allocation error occurred

2009-09-12 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Sep 12, 2009 at 07:59:41PM +, ami_stuff wrote: New submission from ami_stuff ami_st...@o2.pl: C:\ffmpeg -i JustaSpa1937_64kb.rm FFmpeg version SVN-r19824, Copyright (c) 2000-2009 Fabrice Bellard, et al

[issue1382] MP3 - misidentified as DV stream

2009-09-13 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Sep 13, 2009 at 09:33:55PM +, ami_stuff wrote: New submission from ami_stuff ami_st...@o2.pl: MP3 file misidentified as DV stream. File uploaded to mp3_misidentified dir. Moved to samples/A-codecs/MP3

[issue1383] MP3 - misidentified as MPEG stream

2009-09-13 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Sep 13, 2009 at 09:41:42PM +, ami_stuff wrote: New submission from ami_stuff ami_st...@o2.pl: MP3 file misidentified as MPEG stream. File uploaded to mp3_misidentified_2 dir. Moved to samples/A-codecs/MP3

[issue1393] Picture Gear Pocket - misidentified as H263

2009-09-16 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Sep 16, 2009 at 04:35:37PM +, ami_stuff wrote: New submission from ami_stuff ami_st...@o2.pl: C:\ffmpeg -i Test2.prc Since that format is not supported I wouldn't really consider that a bug (maybe a feature request

[issue1392] Crash when decoding Targa file

2009-09-16 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Sep 16, 2009 at 02:39:38PM +, ami_stuff wrote: New submission from ami_stuff ami_st...@o2.pl: (gdb) run -i Test.TGA 123.bmp Starting program: C:\ffmpeg.exe -i Test.TGA 123.bmp ---Type return to continue, or q return

[issue1389] Unknown H.264 pixel format (works fine in MPlayer)

2009-09-16 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Sep 16, 2009 at 05:11:12PM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: The h264 stream is empty (as is the first audio stream), qtrle is decoded fine, second

[issue1398] Typo error for QT IV44 information

2009-09-20 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Sep 20, 2009 at 01:04:49PM +, ami_stuff wrote: ami_stuff ami_st...@o2.pl added the comment: Ok, I see that FFmpeg outputs full codec info directly from QT IV44 file and this text is not in the source code

[issue1398] Typo error for QT IV44 information

2009-09-21 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Sep 20, 2009 at 04:23:55PM -0700, Baptiste Coudurier wrote: On 09/20/2009 10:36 AM, Reimar Döffinger wrote: Reimar Döffingerb...@reimardoeffinger.de added the comment: On Sun, Sep 20, 2009 at 04:44:56PM +, Ramiro

[issue1398] Typo error for QT IV44 information

2009-09-21 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Sep 21, 2009 at 07:15:57AM +, Baptiste Coudurier wrote: Even more, it's fixed size, so if len is less than 31 you must skip the remaining bytes, otherwise you break demuxing. Ah, ok, then I tried again to fix something

[issue1356] valgrind reports many invalid reads with clockh264aac_344289.mp4

2009-09-24 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Sep 24, 2009 at 09:24:50AM +, Robert Swain wrote: Robert Swain robert.sw...@gmail.com added the comment: The attached, which is basically the same as the Google produced patch just without editing get_bits.h

[issue1421] BMP - probably problem with palette

2009-09-27 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Sep 27, 2009 at 07:38:21AM +, Kostya Shishkov wrote: Kostya Shishkov kostya.shish...@gmail.com added the comment: No, in this case palette is completely ignored. Maybe BMP decoder should unpack it to PAL8 or add

[issue1425] libswscale compile fails on mac os X

2009-09-29 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Sep 27, 2009 at 09:19:55PM +, Christopher Lee wrote: Configured as follows on Mac OS 10.5.8 CPPFLAGS=-I/sw/include LDFLAGS=-L/sw/lib ./configure --prefix=/sw --enable-libmp3lame --enable-shared --enable-libfaac

[issue1435] Doesn't find audio or video plugin

2009-09-30 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Sep 30, 2009 at 08:26:37AM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Possibly invalid. Personally I don't think so, checking the codec_tag and codec_id

[issue1182] Doesn't build on ia64 arch with --enable-shared

2009-09-30 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Sep 30, 2009 at 08:25:33PM +, varenet wrote: - The issue apparently consists in a relocation overflow (I'm suspecting very large tables are being allocated on the stack), with the following type of compiler output during

[issue1435] Doesn't find audio or video plugin

2009-10-01 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Oct 01, 2009 at 07:51:08AM +, Christian Marillat wrote: Christian Marillat maril...@free.fr added the comment: Thanks reimar but the problem is still here. It is being worked on. I've received that from users

[issue1435] Doesn't find audio or video plugin

2009-10-01 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: Should be fixed by SVN r20125 The cases that aren't fixed (if any) most likely were buggy and risked crashes all along. -- status: open - closed substatus: open - fixed

[issue1447] Video encoding with libtheora: output file looses a/v sync

2009-10-02 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Oct 02, 2009 at 10:28:24AM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: I suspect this is a duplicate of issue 1197. If my hack there fixes it it is. Problem

[issue1182] Doesn't build on ia64 arch with --enable-shared

2009-10-04 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Oct 01, 2009 at 12:05:38AM +, varenet wrote: varenet t-b...@parisc-linux.org added the comment: re readelf: here it is: $ readelf -S libavcodec/libavcodec.so There are 42 section headers, starting at offset

[issue1182] Doesn't build on ia64 arch with --enable-shared

2009-10-04 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Oct 04, 2009 at 07:32:08AM +, Reimar Döffinger wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Oct 01, 2009 at 12:05:38AM +, varenet wrote: varenet t-b...@parisc-linux.org added

[issue1455] MP3 from AIF puts noise to the end of the file

2009-10-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Oct 10, 2009 at 05:50:50PM +, Justin Ruggles wrote: --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -46,6 +46,12 @@ static const AVCodecTag codec_aiff_tags[] = { #define AIFF0 #define

[issue1455] MP3 from AIF puts noise to the end of the file

2009-10-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Oct 10, 2009 at 06:40:36PM +, Justin Ruggles wrote: And what is the purpose of the pos ctx-data_offset check anyway? It was to handle the case when the file is seeked to before the start of data

[issue1465] V210 decoder might give uninitialized memory as output

2009-10-10 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Oct 11, 2009 at 04:57:33AM +, Baptiste Coudurier wrote: vi...@vitor:~$ valgrind --malloc-fill=0xff ../../../ffmpeg.milepost/ffmpeg_g -i v210_720p-partial.avi -pix_fmt yuv422p16be -an -f framecrc - [ identical

[issue1465] rawvideo encoder might give uninitialized memory as output for 16 bit yuv

2009-10-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Oct 11, 2009 at 06:19:04AM +, Reimar Döffinger wrote: This looks more like an issue with the rawvideo encoder to me... And indeed I get the same thing with ./ffmpeg_g -i somefile.mpg -pix_fmt yuv422p16be -an -f framecrc

[issue1465] rawvideo encoder might give uninitialized memory as output for 16 bit yuv

2009-10-11 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Oct 11, 2009 at 07:15:10AM +, Reimar Döffinger wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Oct 11, 2009 at 06:19:04AM +, Reimar Döffinger wrote: This looks more like an issue

[issue865] MTV output is upside-down

2009-10-12 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Oct 12, 2009 at 02:07:14PM +, Reynaldo H. Verdejo Pinochet wrote: Reynaldo H. Verdejo Pinochet reyna...@opendot.cl added the comment: Reimar Döffinger wrote: Hm, I think I applied a fix for this some time ago, didn't I

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

2009-10-12 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Oct 12, 2009 at 03:50:57PM +, James A. T. Rice wrote: New submission from James A. T. Rice james_r-ffm...@jump.org.uk: I'm trying to transcode from mxf created with the BBC Ingex tools from http

[issue1182] Doesn't build on ia64 arch with --enable-shared

2009-10-13 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Oct 13, 2009 at 10:32:48AM +, Reimar Döffinger wrote: Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Oct 04, 2009 at 11:03:30AM +, Christian Marillat wrote: Christian Marillat maril

[issue1474] Avid AVI codec - uncompressed mode

2009-10-13 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Oct 13, 2009 at 08:24:46PM +, ami_stuff wrote: When I change FourCC in the attached file to YV12, I can see the video, but the video looks incorrectly. The format is UYVY, changing it to that will work

[issue1478] Forward Uncompressed - problem with change fields order option

2009-10-14 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Oct 14, 2009 at 05:16:30PM +, ami_stuff wrote: New submission from ami_stuff ami_st...@o2.pl: There is change fields order option in settings of the Forward Uncompressed codec. When I generate video with this option

[issue1479] support hardware encoders / decoders in general ... and why.

2009-10-14 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: Huh? You are rather late to the party, hardware acceleration support is either worked on or even included since a long time (in case of XvMC since a really, really long time), though progress is slow because making an API

[issue1478] Forward Uncompressed - problem with change fields order option

2009-10-14 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Oct 14, 2009 at 09:14:18PM +, ami_stuff wrote: When I convert fu_small_change_fields_mode.avi to out.avi this line is visible, just enlarge the output out.avi video when playing to see better. I have no problem seeing

[issue1489] FFmpeg fail to create very short videos ( 1.65 seconds) when threading is activated

2009-10-18 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Oct 17, 2009 at 07:22:58PM +, Francois Lagunas wrote: This bug appears only on short output videos No, it happens on all video, FFmpeg with libx264 fails to output delayed frames. x264_encoder_delayed_frames should

[issue1495] building static ffmpeg and ffplay

2009-10-23 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Fri, Oct 23, 2009 at 03:36:12PM +, victor.whiskey.yan...@gmail.com wrote: New submission from victor.whiskey.yan...@gmail.com victor.whiskey.yan...@gmail.com: Using gentoo linux and git/svn head (currently 20358) w gcc

[issue1507] QDesign2 audio codec - metalic noise

2009-11-01 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Nov 01, 2009 at 04:56:54PM +, Vitor wrote: Note that for this bug sample file, the changes quite big: vi...@vitor:~$ tiny_psnr r20236.wav r20237.wav 2 0 44 stddev: 660.78 PSNR: 39.92 bytes: 124928/ 124928 Could

[issue1507] QDesign2 audio codec - metalic noise

2009-11-01 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Nov 01, 2009 at 04:56:54PM +, Vitor wrote: Vitor vitor1...@gmail.com added the comment: This regression was caused by: r20237 | reimar

[issue1507] QDesign2 audio codec - metalic noise

2009-11-02 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Nov 02, 2009 at 12:34:43AM +, Vitor wrote: Vitor vitor1...@gmail.com added the comment: Reimar Döffinger wrote: That commit actually was nonsense, the cos table does not get initialized at all. What solution

[issue1507] QDesign2 audio codec - metalic noise

2009-11-02 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Nov 02, 2009 at 01:07:23PM +, Michael Niedermayer wrote: Michael Niedermayer michae...@gmx.at added the comment: On Mon, Nov 02, 2009 at 09:09:29AM +, Reimar Döffinger wrote: [...] 2) add a void

[issue1546] ffmpeg crashes with -threads more than 1

2009-11-19 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Nov 15, 2009 at 11:24:06PM +, Dennis Volodomanov wrote: New submission from Dennis Volodomanov denn...@conceiva.com: Since recently (a few weeks, probably) all ffmpeg builds I make crash when I have a -threads 2

[issue1567] Don't assume /bin/sh is GNU bash

2009-11-24 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Nov 24, 2009 at 09:01:41PM +, smcgovern wrote: smcgovern gsean...@gmail.com added the comment: version.sh may be POSIX-compliant, but on many platforms, /bin/sh is not. Not our problem, and that is final. Non-POSIX

[issue1001] Incorrect framerate only when using -f yuv4mpegpipe

2009-11-25 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Nov 25, 2009 at 09:24:35PM +, Michael Niedermayer wrote: Michael Niedermayer michae...@gmx.at added the comment: issue invalid as you try to store variable fps video in a format that does not support that. ffmpeg

[issue1577] Small memory leak when audio codec is aac.

2009-11-29 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sun, Nov 29, 2009 at 01:54:23PM +, Carl Eugen Hoyos wrote: With patch: ==5041== 2 bytes in 1 blocks are definitely lost in loss record 1 of 3 ==5041==at 0x4C23570: memalign (vg_replace_malloc.c:460) ==5041

[issue1182] Doesn't build on ia64 arch with --enable-shared

2009-12-03 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Dec 03, 2009 at 03:35:15PM +, Christian Marillat wrote: Christian Marillat maril...@free.fr added the comment: Sorry for the delay. I did a svn build today with --enable-hardcoded-tables without problem

[issue1197] DVD NTSC video plays twice as fast when encoded with libtheora

2009-12-07 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Mon, Dec 07, 2009 at 03:54:41PM +, Greg Maxwell wrote: Greg Maxwell gmaxw...@gmail.com added the comment: Just FYI— MPEG input unfortunately is essentially variable frame-rate data, which for what I can tell

[issue1608] ffmpeg stops when recording OTA DVB signal to mp3

2009-12-09 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Dec 09, 2009 at 07:33:03PM +, Ron Gage wrote: New submission from Ron Gage r...@rongage.org: I am using ffmpeg to record/transcode from over the air ATSC television to FLV video/MP3 audio. ffmpeg is dying after about

[issue1617] ffmpeg fails with vfr ogg due to nonsense r_frame_rate

2009-12-12 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Sat, Dec 12, 2009 at 09:32:22PM +, David Conrad wrote: I'm not really sure what any of the code setting r_frame_rate is supposed to do for vfr. AFAIK it is supposed to be completely irrelevant for formats (and encoders

[issue1623] Shooter Player, license violation

2009-12-19 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: Stop it! This has gone far enough and I ask anyone who is not a developer or has a significant amount of copyrighted code in either FFmpeg or ShooterPlayer to stop posting. If anyone else feels the need for further discussion please

[issue1528] QT RAW 4 colors don't want to decode

2009-12-29 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Tue, Dec 29, 2009 at 10:33:49PM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos ceho...@rainbow.studorg.tuwien.ac.at added the comment: Patch attached. _ FFmpeg issue

[issue1652] Incorrect handling of certain b-frames with MPEG4 ASP using packed bitstream

2009-12-30 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Dec 31, 2009 at 12:02:07AM +, Karl Blomster wrote: Karl Blomster thefl...@uppcon.com added the comment: I used DirectShow (with ffdshow (using libavcodec) as the decoder and Haali's Media Splitter as the demuxer

[issue1652] Incorrect handling of certain b-frames with MPEG4 ASP using packed bitstream

2009-12-30 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Wed, Dec 30, 2009 at 04:22:40PM +, Karl Blomster wrote: To demonstrate this issue with ffmpeg, try ffmpeg -i packed_bitstream_framedrop.avi -vcodec copy output.mp4. In the original video, there are 25 black frames

[issue1652] Incorrect handling of certain b-frames with MPEG4 ASP using packed bitstream

2009-12-30 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: On Thu, Dec 31, 2009 at 12:30:24AM +, Karl Blomster wrote: Karl Blomster thefl...@uppcon.com added the comment: To me this reads like all DirectShow filters are broken, in which case this is the wrong issue tracker

[issue1479] support hardware encoders / decoders in general ... and why.

2009-12-31 Thread Reimar Döffinger
Reimar Döffinger b...@reimardoeffinger.de added the comment: Not enough useful information, probably the requested feature already exists though. -- status: new - closed substatus: new - invalid _ FFmpeg issue tracker iss

  1   2   3   >