Search found 12 matches

by superdump
Sun May 03, 2009 6:09 pm
Forum: Mac
Topic: mp4 to ATV conversion Audio Problem SVN2354
Replies: 8
Views: 1883

Re: mp4 to ATV conversion Audio Problem SVN2534

If I convert the file a RAW file from the camera to run on an AppleTV via Quicktime Pro or via iMovie (direct send to iTunes) I get Audio fine. If I send the file straight into HB, I get no audio. What am I doing wrong, is the magic question? This line from your log says that the ffmpeg AAC audio d...
by superdump
Fri Apr 03, 2009 1:56 pm
Forum: Development
Topic: MPEG surround standard (ISO-23003)
Replies: 1
Views: 814

Re: MPEG surround standard (ISO-23003)

I know that superdump's HE-AAC decoder made it into ffmpeg a few months ago. I wonder if there are any plans to add a SAC decoder to it. It might make a great SOC project. HE AAC is not in FFmpeg yet. It supports LC and Main AAC and a bunch of other bits and pieces, but no HE yet. I'm working on it...
by superdump
Mon Jun 30, 2008 9:51 am
Forum: Development
Topic: [patch] BluRay, AVCHD & partial DVB H.264 support
Replies: 80
Views: 27948

Re: [patch] BluRay, AVCHD & partial DVB H.264 support

Paul: The link to the ffmpeg latm patch on your site has the wrong URL. It points to localhost rather than pkendall.homeip.net. I may be wrong but I don't think this approach will be accepted into FFmpeg trunk but the patch will certainly be very useful as a base for further development. :) I look f...
by superdump
Thu Jun 26, 2008 7:33 am
Forum: Development
Topic: [patch] BluRay, AVCHD & partial DVB H.264 support
Replies: 80
Views: 27948

Re: [patch] BluRay, AVCHD & partial DVB H.264 support

I'm the guy who has made the LATM changes to ffmpeg for MythTV. Do you have a patch for FFmpeg somewhere? I am in the process of converting these C++ files to C and I will be re-doing the codec as a parser and making the libfaad codec handle another codec type. This will make the code simpler. Also...
by superdump
Mon Jun 02, 2008 9:11 am
Forum: Development
Topic: [patch] BluRay, AVCHD & partial DVB H.264 support
Replies: 80
Views: 27948

Re: [patch] BluRay, AVCHD & partial DVB H.264 support

In my opinion it should be implemented either in the demuxer or as a bitstream parser like the h.264 Annex B stuff. I say this because conceptually, LATM is a pseudo-container of multiple MPEG-4 Audio streams in one payload. As far as FFmpeg is concerned it would be ideal to have these presented as...
by superdump
Sun Jun 01, 2008 9:55 pm
Forum: Development
Topic: [patch] BluRay, AVCHD & partial DVB H.264 support
Replies: 80
Views: 27948

Re: [patch] BluRay, AVCHD & partial DVB H.264 support

Van, I've been looking at another LATM ffmpeg implementation, and what they did was to create a new AAC decoder within ffmpeg for AAC-LATM, and then modified the ffmpeg MPEG-TS demuxer to use it, which would strip the LATM and then pass the AAC on to faad2 as usual. If they did this as a codec, as ...
by superdump
Wed May 21, 2008 5:54 pm
Forum: Development
Topic: [patch] BluRay, AVCHD & partial DVB H.264 support
Replies: 80
Views: 27948

Re: [patch] BluRay, AVCHD & partial DVB H.264 support

Currently I think HB's TS demuxer is better than ffmpeg's. And I did a lot of my debugging of the patch above using the ffmpeg mpeg2 decoder rather than HB's which convinced me that HB's mpeg2 decoder is currently superior to ffmpeg's -- ffmpeg is very casual about time stamps - it's hard to associ...
by superdump
Thu Oct 18, 2007 12:29 am
Forum: Development
Topic: libswscale resizing artifacts
Replies: 12
Views: 3930

Correct. I'd already noticed this and have looked further into it as enabling accurate rounding on a 64-bit machine with MMX causes the segmentation fault every time. Unfortunately this is a known issue in libswscaler and it's not easy to fix. http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2007-Ma...
by superdump
Wed Oct 17, 2007 4:28 pm
Forum: Development
Topic: libswscale resizing artifacts
Replies: 12
Views: 3930

Do you have some kind of information from which I can work? Is the scaling issue identical to the images posted previously in this thread? The patch was committed quite a while ago when this issue was reported and the fix should be in 0.9.1. More information please.
by superdump
Tue Sep 04, 2007 9:19 pm
Forum: Development
Topic: libswscale resizing artifacts
Replies: 12
Views: 3930

It's OK. I wrote the swscaler code (EDIT: the code in HandBrake that is, not the library itself). After a bit of testing in FFmpeg, scaling your source image I found a flag in swscaler named 'accurate rounding'. This appears to fix the issue, so if you could try this patch and tell me if it fixes th...
by superdump
Tue Sep 04, 2007 7:31 pm
Forum: Development
Topic: libswscale resizing artifacts
Replies: 12
Views: 3930

Is the bad image the encoded result or taken from the preview in the OS X GUI?
by superdump
Tue Aug 28, 2007 2:18 am
Forum: Development
Topic: B-frames in HandBrake
Replies: 43
Views: 16342

I don't have any proof of these ideas other than a few experiments. It would appear the first sample gives the smallest rendering offset (the value being 0) when no b-frames as used. When b-frames are used but b-frame references (b-pyramid) are not, the third sample seems to give the smallest render...