michaelni changed the topic of #ffmpeg-devel to: Welcome to the FFmpeg development channel | Questions about using FFmpeg or developing with libav* libs should be asked in #ffmpeg | This channel is publicly logged | FFmpeg 7.1.1 has been released! | Please read ffmpeg.org/developer.html#Code-of-conduct
iive has quit [Quit: They came for me...]
jlj35 has quit [Quit: WeeChat 4.6.3]
_whitelogger has joined #ffmpeg-devel
Traneptora has joined #ffmpeg-devel
cone-118 has quit [Quit: transmission timeout]
Traneptora has quit [Quit: Quit]
Traneptora has joined #ffmpeg-devel
Warcop has joined #ffmpeg-devel
System_Error has joined #ffmpeg-devel
beastd has quit [Ping timeout: 272 seconds]
beastd has joined #ffmpeg-devel
jamrial has quit []
TheVibeCoder has joined #ffmpeg-devel
TheVibeCoder has quit [Changing host]
TheVibeCoder has joined #ffmpeg-devel
MisterMinister has quit [Ping timeout: 252 seconds]
marth64_ has quit [Remote host closed the connection]
marth64_ has joined #ffmpeg-devel
marth64_ has quit [Remote host closed the connection]
marth64_ has joined #ffmpeg-devel
<fflogger>
[newticket] guest: Ticket #11662 ([undetermined] ffplay does not detect when the remote side closes the connection) created https://trac.ffmpeg.org/ticket/11662
marth64_ has quit [Remote host closed the connection]
marth64_ has joined #ffmpeg-devel
Marth64[m] has joined #ffmpeg-devel
marth64_ has quit [Ping timeout: 252 seconds]
Marth64[m] has quit [Remote host closed the connection]
Marth64[m] has joined #ffmpeg-devel
Flat has quit [Quit: Rip internet]
marth64_ has joined #ffmpeg-devel
Marth64[m] has quit [Ping timeout: 248 seconds]
cone-395 has joined #ffmpeg-devel
<cone-395>
ffmpeg Desmond Liu master:060fc4e3a5ac: doc/scaler.texi: add missing gamma option
marth64_ has quit [Remote host closed the connection]
marth64_ has joined #ffmpeg-devel
realies9 has quit [Quit: ~]
realies9 has joined #ffmpeg-devel
<TheVibeCoder>
see the channelmap filter in Librempeg
Flat has joined #ffmpeg-devel
<kierank>
TheVibeCoder: do not discuss competing project
<kierank>
leadership will come for you
jamrial has joined #ffmpeg-devel
minimal has joined #ffmpeg-devel
rvalue- has joined #ffmpeg-devel
rvalue has quit [Ping timeout: 248 seconds]
rvalue- is now known as rvalue
jamrial_ has joined #ffmpeg-devel
jamrial has quit [Read error: Connection reset by peer]
<TheVibeCoder>
see the channelmap filter in Librempeg
Traneptora has quit [Quit: Quit]
<kasper93>
have you ever considered sending your patches upstream? You seem to be very talented coder.
<TheVibeCoder>
Librempeg is upstream
<TheVibeCoder>
FFmpeg is downstream
<llyyr>
why would he help competition
<kasper93>
and the competition is about what?
<Compn>
not competition just another fork
<Compn>
in a long line of forks
<TheVibeCoder>
the best fork
<ePirat>
mkver, fix for copy_tls_opts_dict checking on the list.
<ePirat>
mkver, there are a ton more instances of unchecked av_dict_set but checking all of them and erroring properly probably requires quite a bit of refactor of this code
<ePirat>
the failure cases are already right now so hard to follow
<kierank>
TheVibeCoder: who owns librempeg.org
<mkver>
ePirat: I only complained about these one because they seem important security-wise.
<ePirat>
to be fair we are in a bad place security wise anyway :D
<ePirat>
openssl doesnt even check the hostname
<ePirat>
mkver, I wonder if it would make sense to have an error state in AVDictionary to make these checks easier, similar to what AVBprint does, given we have a ton of unchecked ones…
zsoltiv_ has joined #ffmpeg-devel
<ePirat>
also why is -tls_verify 1 not the default…
<ePirat>
seems illogical that you pass a https url to ffmpeg and it doesnt verify anything
<kierank>
lol
zsoltiv has joined #ffmpeg-devel
<ePirat>
(and even if you set tls_verify, if you use openssl, it doesnt check the hostname)
<kasper93>
yeah, there is no reason to not check things in present year
<kasper93>
though I'm sure people will complain if you change that
<ePirat>
probably…
sebas_ has joined #ffmpeg-devel
<TheVibeCoder>
jamrial_: fixed ac3 bug/artifact
<ePirat>
wbs, do you think it makes sense to keep the hlsproto around?
System_Error has quit [Remote host closed the connection]
Traneptora has joined #ffmpeg-devel
odrling has quit [Remote host closed the connection]
odrling has joined #ffmpeg-devel
ngaullier has quit [Remote host closed the connection]
zsoltiv has quit [Ping timeout: 268 seconds]
zsoltiv_ has quit [Ping timeout: 252 seconds]
<fflogger>
[newticket] DaveFlater: Ticket #11663 ([avfilter] lv2 omitted values printed as NaN in help) created https://trac.ffmpeg.org/ticket/11663
MisterMinister has joined #ffmpeg-devel
System_Error has joined #ffmpeg-devel
<ePirat>
pross, in adpcm_sanyo_expand3 sign is uninitialized if none of the cases match
<ePirat>
add I meant, not sign…
<TheVibeCoder>
jamrial_: not interested in fixing bugs?
<jamrial_>
TheVibeCoder: yes, i sent a patch for another ticket in fact :p
<wbs>
ePirat: no, probably not. originally, it was useful for comparing how things work in some cases (there were some odd cases that worked better with hlsproto), but with 15 years of development on top of the demuxer, it's clear that the hlsproto approach was wrong, so let's bury it
<jamrial_>
TheVibeCoder: i can't even hear the click the ticket talks about...
<TheVibeCoder>
first play
<TheVibeCoder>
make sure seeking is not ever used
mkver has quit [Ping timeout: 252 seconds]
mkver has joined #ffmpeg-devel
System_Error has quit [Ping timeout: 244 seconds]
<indecisive_turtl>
Lynne: I'm not sure why, but there is some strange behavior when converting int16_t to int32_t. On the shader for estimating slice sizes, it reads a buffer of int16_t coefficients. If those values are negative, it will work fine as long as the type is kept int16_t, the moment it's promoted to int32_t it becomes unsigned
<indecisive_turtl>
Have you experienced this before?
<Lynne>
maybe averne would know?
<indecisive_turtl>
Only way to make it work correctly seems to be inserting a bitfieldExtract(coeff, 0, 16) to make it sign extend hmm
<indecisive_turtl>
Though could also be renderdoc debugger acting up, cause I feel that would break a lot of things if it was a real bug
System_Error has joined #ffmpeg-devel
<pross>
ePirat: thanks
<ePirat>
pross, sorry, had not noticed your patch before I pinged you…
<pross>
one of my tests is failing on softworkz's x86 mac build machines, but fate no longer prints the contents of the .err file. how would i go about fixing this? does FFmpeg have any x86 mac machines i can test on?
mkver has quit [Ping timeout: 248 seconds]
ZindaRood has joined #ffmpeg-devel
TheVibeCoder has quit [Ping timeout: 268 seconds]
ZindaRood has quit [Quit: Client closed]
<JEEB>
&31
jarthur has joined #ffmpeg-devel
System_Error has quit [Remote host closed the connection]
Traneptora has quit [Quit: Quit]
System_Error has joined #ffmpeg-devel
<ePirat>
pross, maybe try emailing softworkz
<ePirat>
maybe he can add printing the err file or something
System_Error has quit [Ping timeout: 244 seconds]
System_Error has joined #ffmpeg-devel
System_Error has quit [Remote host closed the connection]
System_Error has joined #ffmpeg-devel
System_Error has quit [Remote host closed the connection]