Re: [FFmpeg-devel] [PATCH] fix av_log format specifier

2024-04-26 Thread marcus
This patch does not meet the guidelines of commit messages. On Thursday, April 25th, 2024 at 6:02 PM, Marcus B Spencer wrote: > > > Signed-off-by: Marcus B Spencer mar...@marcusspencer.xyz > > --- > libavcodec/bsf/noise.c | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [FFmpeg-devel] archive ffmpeg all objs into one lib, feasible?

2014-09-17 Thread Marcus Johnson
No, it won't work because the libraries are for different purposes. as per your example, 4xm in the libavcodec directory is for decoding the file, it implements the actual algorithm. 4xm in the libavformat directory is for demuxing the codec from the 4xm container, you need both for it to work.

[FFmpeg-devel] Bug in flac demuxer?

2014-10-18 Thread Marcus Johnson
I don't have access to my command line atm, but i was using the channel map feature to split a 24 bit 192khz 5.1 flac file into 6 mono wave files, and ffmpeg would downcovert it to 16 bit unless i added -acodec pcm_s24le after each -map flag, shouldn't ffmpeg read the bit depth of the input

Re: [FFmpeg-devel] OPW Qualification Task: Validate MLP Bitstream

2014-10-31 Thread Marcus Johnson
On Fri, Oct 31, 2014 at 10:09 AM, greeshma greeshmabalaba...@gmail.com wrote: https://docs.google.com/document/d/1oBy9AoGzJHR4UcvuogYa8sfFGUK96lcgF3qRF4HrIa4/edit?usp=sharing ​That's not going to work either, you need to use git to create a patch file, upload that file to dropbox or whatever,

Re: [FFmpeg-devel] Move ffmpeg to WinRT

2014-11-17 Thread Marcus Johnson
As of Windows 10, WinRT is deprecated, so it's kind of a waste of time dude :/ On Mon, Nov 17, 2014 at 5:02 AM, Jesse Jiang jessejiang0...@outlook.com wrote: Hi All, I want to move ffmpeg to WinRT platform, like Windows Store and Windows Phone. As the GCC cannot compiler to ARM-COFF, so I

Re: [FFmpeg-devel] Errors We are facing

2014-11-25 Thread Marcus Johnson
The SSR (Scalable Sample Rate) feature is not implemented, either add a patch to add that feature, or decode it with something else. On Tue, Nov 25, 2014 at 6:58 AM, Arpan Nag ar...@esolzmail.com wrote: Hello, During the conversion process we are seeing this error in an output log file

[FFmpeg-devel] Git branch

2014-12-19 Thread Marcus Johnson
I'm working on the DTS codec, and my code isn't complete yet, but a lot of it is done, I've committed a few patches to my own branch, and I need to update ffmpeg (there's a blocking change in the main tree so I can't currently) I was wondering if I could push the uncomplete code in it's own

Re: [FFmpeg-devel] Git branch

2014-12-20 Thread Marcus Johnson
it's not published anywhere, I just used the github app and clicked the new branch button, it's only on my computer right now On Sat, Dec 20, 2014 at 5:33 AM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Marcus Johnson bumblebritches57 at gmail.com writes: I'm working on the DTS codec, and my

[FFmpeg-devel] Duration/bitrate estimation

2015-01-21 Thread Marcus Johnson
What functions are used to estimate the duration and bit rate of a file? I'd like to add support for these features for the DTS format, and would rather not dig around the source looking for it. thanks in advance. ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] Read backwards with get_bits

2015-01-27 Thread Marcus Johnson
I just tried using skip_bits with a negative number and it seems to have worked fine, thanks guys. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] Read backwards with get_bits

2015-01-27 Thread Marcus Johnson
Can this be done at all? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH]Do not set bitrate for DTS-HD Master and High Resolution

2015-03-18 Thread Marcus Johnson
This reminds me of another bug with DTS files, it estimates the file duration by counting each frame I assume, including the HD ones resulting in it being massively incorrect for example here's the ffmpeg output of a DTS-HD MA file that's actually 98 minutes long Log: ffmpeg -i /Users/Marcus

Re: [FFmpeg-devel] [PATCH]Do not set bitrate for DTS-HD Master and High Resolution

2015-03-18 Thread Marcus Johnson
I see, I thought it counted frames and not just multiplied the bitrate by the number of frames. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH]Do not set bitrate for DTS-HD Master and High Resolution

2015-03-18 Thread Marcus Johnson
That's even worse, is there any way we can fix it? how much effort would it require? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] DCA Decoder

2015-03-11 Thread Marcus Johnson
I thought the patch on LibAV was completely removed? it was purged from the codebase like 9 months ago or something, I stumbled on that while trying to fix some of the issues with the white paper I was having. I haven't bothered with the Core decoder, but everything I've extracted so far is fixed

[FFmpeg-devel] DCA Decoder

2015-03-11 Thread Marcus Johnson
I've been working on adding XLL for the last couple months, it's still not quite complete, basically I have to combine the Core and XLL samples before it's output, and I also have to finish the latter stages of decoding the XLL like channel decorreclation, and post processing. There are a few

Re: [FFmpeg-devel] FFmpeg 2.7

2015-06-06 Thread Marcus Johnson
I like the John Nash idea. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] Off topic question about format specifiers in the C stdlib

2015-05-31 Thread Marcus Johnson
No, I'm writing my own codec from the ground up; not an implementation of one that already exists based on a standardized codec like jpeg, but my own from scratch. I noticed that printf and scanf support format specifiers, so I was wondering if there was a function like getopt, but specifically

[FFmpeg-devel] Off topic question about format specifiers in the C stdlib

2015-05-30 Thread Marcus Johnson
I'm writing my own Video codec, and I'm trying to take multiple frames as the input with a specifier like %03d, is there a stdlib function for this, or will I have to write it myself? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] TrueHD Decoder fails on sample

2015-11-24 Thread Marcus Johnson
The sample is exactly 1 minute long, 48000hz sample rate, 24 bits per sample, 8 channels. and all samples are set to 0xFF here's the thd sample, and here's one of the 8 mono wavs (they're all literally the same, I manually created the file in a hex editor and copied it for all the others.)

[FFmpeg-devel] Lossless SilenceRemove Filter

2016-06-29 Thread Marcus Johnson
I'm not sure where to post this message, but this list seemed the most appropriate. It seems like a better way to go about removing non-digital silence would be to convert each sample to float or double, then compare that to the max dB considered silence, then store the starting offset and

[FFmpeg-devel] Job Request | Audio Codecs

2017-10-21 Thread Dylan Marcus
Hello, I am interested in hiring someone to expand FFmpeg with a flag that changes the behavior of channel ordering for as many audio codecs as possible. When this flag is seen in the command line it has FFmpeg use slightly modified channel order and channel assignment (TYPESCE instead of

[FFmpeg-devel] [PATCH] avutil/avcodec: expanded on channel configurations for spatial audio

2020-01-15 Thread Dylan Marcus
--- Changelog | 1 + libavcodec/aacenc.h| 16 libavutil/channel_layout.c | 8 ++ libavutil/channel_layout.h | 64 ++ 4 files changed, 61 insertions(+), 28 deletions(-) diff --git a/Changelog b/Changelog index

Re: [FFmpeg-devel] [PATCH] avutil/avcodec: expanded on channel configurations for spatial audio

2020-01-16 Thread Dylan Marcus
use cases. > > On 1/16/20, Dylan Marcus wrote: >> --- >> Changelog | 1 + >> libavcodec/aacenc.h| 16 >> libavutil/channel_layout.c | 8 ++ >> libavutil/channel_layout.h | 64 >> ++--

[FFmpeg-devel] [PATCH] fix av_log format specifier

2024-04-25 Thread Marcus B Spencer
Signed-off-by: Marcus B Spencer --- libavcodec/bsf/noise.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/bsf/noise.c b/libavcodec/bsf/noise.c index a622855717..d36be5fab4 100644 --- a/libavcodec/bsf/noise.c +++ b/libavcodec/bsf/noise.c @@ -173,7 +173,7 @@ static

[FFmpeg-devel] [PATCH] avcodec/bsf/noise: fix av_log format specifier

2024-04-26 Thread Marcus B Spencer
defined. Signed-off-by: Marcus B Spencer --- libavcodec/bsf/noise.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/bsf/noise.c b/libavcodec/bsf/noise.c index a622855717..d36be5fab4 100644 --- a/libavcodec/bsf/noise.c +++ b/libavcodec/bsf/noise.c @@ -173,7 +173,7