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.0.1 has been released! | Please read ffmpeg.org/developer.html#Code-of-conduct
thilo has quit [Ping timeout: 256 seconds]
thilo has joined #ffmpeg-devel
HarshK23 has quit [Quit: Connection closed for inactivity]
Marth64 has quit [Quit: Leaving]
jarthur has quit [Ping timeout: 260 seconds]
jarthur_ has joined #ffmpeg-devel
jarthur_ has quit [Quit: jarthur_]
arch1t3cht7 has joined #ffmpeg-devel
lemourin has quit [Quit: The Lounge - https://thelounge.chat]
arch1t3cht has quit [Ping timeout: 268 seconds]
arch1t3cht7 is now known as arch1t3cht
lemourin has joined #ffmpeg-devel
awehr_ has joined #ffmpeg-devel
jarthur has joined #ffmpeg-devel
jarthur has quit [Quit: jarthur]
jarthur has joined #ffmpeg-devel
jarthur has quit [Client Quit]
Martchus_ has joined #ffmpeg-devel
Martchus has quit [Ping timeout: 264 seconds]
jarthur has joined #ffmpeg-devel
jamrial has quit []
IndecisiveTurtle has joined #ffmpeg-devel
IndecisiveTurtle has quit [Remote host closed the connection]
jarthur has quit [Quit: jarthur]
lexano has joined #ffmpeg-devel
jarthur has joined #ffmpeg-devel
Sean_McG has quit [Quit: leaving]
HarshK23 has joined #ffmpeg-devel
jarthur has quit [Quit: jarthur]
Hobbyboy has quit [Quit: The BNC has broken!]
Hobbyboy has joined #ffmpeg-devel
AbleBacon has quit [Read error: Connection reset by peer]
cone-378 has joined #ffmpeg-devel
<cone-378> ffmpeg Rémi Denis-Courmont master:f447189b0c80: lavc/h264dsp: R-V V 8-bit h264_idct_add
rvalue- has joined #ffmpeg-devel
rvalue has quit [Ping timeout: 268 seconds]
rvalue- is now known as rvalue
Kei_N has quit [Read error: Connection reset by peer]
Kei_N has joined #ffmpeg-devel
cone-378 has quit [Quit: transmission timeout]
ccawley2011 has joined #ffmpeg-devel
chainik has quit [Quit: (╯°□°)╯︵ ┻━┻]
s55 has quit [Read error: Connection reset by peer]
s55 has joined #ffmpeg-devel
novaphoenix has quit [Quit: i quit]
novaphoenix has joined #ffmpeg-devel
aaabbb_ has joined #ffmpeg-devel
cone-287 has joined #ffmpeg-devel
<cone-287> ffmpeg Stefano Sabatini master:9c357324f042: doc/filters/perlin: specify default values
aaabbb_ has quit [Quit: leaving]
mkver has joined #ffmpeg-devel
ccawley2011 has quit [Read error: Connection reset by peer]
<haasn> michaelni: adding SWS_FULL_CHR_H_INT to the default sws_flags *lowers* PSNR across FATE
<haasn> any clue what is going on there?
<haasn> err, adding SWS_FULL_CHR_H_INP I meant
<haasn> hmm the situation is even weirder
<haasn> adding just SWS_FULL_CHR_H_INT *also* lowers PSNR
<haasn> but adding both of those flags together *raises* PSNR
awehr_ has quit [Ping timeout: 240 seconds]
jamrial has joined #ffmpeg-devel
awehr_ has joined #ffmpeg-devel
awehr_ has quit [Ping timeout: 268 seconds]
awehr_ has joined #ffmpeg-devel
<awehr_> hello
<awehr_> i submitted my first patch, is there any way to know if someone has taken a look?
<awehr_> im not very familiar with how mailing lists and stuff work
aweh___ has joined #ffmpeg-devel
awehr_ has quit [Ping timeout: 264 seconds]
<ePirat> aweh___, people will reply to the mail with review comments
<ePirat> if you get no comments after a week or so, its fine to reply to your own mail with the patch with a ping message asking for review
<aweh___> got it
<aweh___> though i dont know if it ever got sent, i was struggling with formatting it lol
<ePirat> which is it?
<cone-287> ffmpeg James Almer master:a528a54ee119: avfilter/vf_tiltandshift: fix buffer offset for yuv422p input
<cone-287> ffmpeg James Almer master:3d5bad75019b: fate/filter-video: tests more pixel formats with the tiltandshift filter
<cone-287> ffmpeg James Almer release/7.0:2df8aaa8c58d: avfilter/vf_tiltandshift: fix buffer offset for yuv422p input
System_Error has quit [Ping timeout: 260 seconds]
System_Error has joined #ffmpeg-devel
<aweh___> ePirat: in avformat/hls, i sent
Livio has joined #ffmpeg-devel
elvis_a_presley has quit [Quit: smoke-bomb ; grapple-hook]
elvis_a_presley has joined #ffmpeg-devel
Livio has quit [Ping timeout: 252 seconds]
System_Error has quit [Quit: Leaving]
System_Error has joined #ffmpeg-devel
Krowl has joined #ffmpeg-devel
jarthur has joined #ffmpeg-devel
cone-287 has quit [Quit: transmission timeout]
AbleBacon has joined #ffmpeg-devel
jarthur has quit [Ping timeout: 260 seconds]
Livio has joined #ffmpeg-devel
jarthur has joined #ffmpeg-devel
Marth64 has joined #ffmpeg-devel
Krowl has quit [Read error: Connection reset by peer]
<mkver> jamrial: Your tiltandshift tests fail with CPUFLAGS=0 here.
<jamrial> mkver: probably missing bitexact flags for swscale..
<mkver> jamrial: Aren't these flags normally autoinserted in fate-run.sh? Why does this need special handling?
<jamrial> they don't, see the output of the tests with V=0
<jamrial> it inserts -bitexact which is a cli option that only applies to de/encoders and de/muxers, i think
<mkver> With flags I meant sws_flags which you add manually to the cmd.
<jamrial> no, framecrc does not seem to include it
<mkver> Ok then
darkapex has quit [Remote host closed the connection]
darkapex has joined #ffmpeg-devel
ccawley2011 has joined #ffmpeg-devel
aweh___ has quit [Ping timeout: 255 seconds]
awehr_ has joined #ffmpeg-devel
<courmisch> I want #[naked] functions in C. Why we can't have nice things
<Lynne> you can use attributes, can't you?
<Lynne> why do you need a naked C function anyway?
<courmisch> well in C, it would suck anyhow because inline asm syntax is awful
<courmisch> but there's two nice thigns about naked functions: can make them static, and don't need to declare them since they have a prototype
<courmisch> in Rust there is the added benefit that they participate in the namespacing
Krowl has joined #ffmpeg-devel
<Lynne> yeah, that's not very interesting
cone-744 has joined #ffmpeg-devel
<cone-744> ffmpeg James Almer master:ecd3a9783413: fate/filter-video: add missing swscale flags to tiltandshift tests
<Lynne> I use naked asm functions in lavu/tx to link transforms, the plan for other arches is to just deal with the ABI as its consistent
awehr_ has quit [Ping timeout: 264 seconds]
mark4o has joined #ffmpeg-devel
markh has quit [Ping timeout: 264 seconds]
mark4o is now known as markh
awehr_ has joined #ffmpeg-devel
Sean_McG has joined #ffmpeg-devel
awehr_ has quit [Ping timeout: 246 seconds]
Krowl has quit [Read error: Connection reset by peer]
ccawley2011 has quit [Read error: Connection reset by peer]
<Marth64> DVD seeking is ready. Patchset coming after current fixes merged
<Lynne> nice, I'd like to test them
<Marth64> :)
sepro0 has joined #ffmpeg-devel
sepro has quit [Ping timeout: 256 seconds]
sepro0 is now known as sepro
mkver has quit [Ping timeout: 246 seconds]
jarthur has quit [Quit: jarthur]
cone-744 has quit [Quit: transmission timeout]
Livio has quit [Ping timeout: 264 seconds]
aaabbb_ has joined #ffmpeg-devel
aaabbb_ has quit [Client Quit]
aaabbb_ has joined #ffmpeg-devel