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
<haasn> ramiro: right, I used to mask out unused components from the swizzle mask but I reverted that because the past matching logic for swizzles required an exact match on the mask
<haasn> I can revert it now that we match swizzles per component
<haasn> at this point I'm not sure why I even still define the swizzles as a union, might as well just get rid of the uint8_t mask, it's no longer referenced in the code
<ramiro> haasn: thanks. I'm still using swscale4, so the patch doesn't apply, but I assume it does get better
<haasn> one thing you may need to be aware of in swscale5 is that I changed the order in which I stripe the kernel over the image
<haasn> I first process the main (block-aligned) image part in a single loop, then handle the last (unpadded) column in a separate loop
<haasn> mostly to reduce the loop overhead for the common (properly aligned/padded) case
<haasn> shouldn't matter if your impl is well-behaved (without side effects)
<ramiro> haasn: that looks like a good change. it will make it easier for me to replace the main/safe part with a single function.
<ramiro> also good catch about the last row. I had that issue with legacy swscale and some subsampled yuv code (I think it had odd height or something like that).
<haasn> ramiro: wdym replace main part?
<haasn> you want to hard-code a loop but not bother handling the tail in your hard-coded loop?
<haasn> that seems like it will be bad, because to handle the tail you need to process another entire block_w/h chunk
<haasn> I guess what we really want is the support for a variable block size implementation
<haasn> so you can e.g. define a function that uses 8 vector regs, one that uses 4 vector regs, and one that uses 2 vector regs and so on
<haasn> and then we can dynamically choose the largest block size for processing to avoid wasted work / needing a memcpy
<haasn> but I somehow doubt the performance gain will be worth the headache there :)
<haasn> ramiro: side note, checkasm may be .. tricky for JIT backends
<haasn> it may end up testing for every possible combination of cpu flags unless you can guaranteed a stable function pointer return :)
<haasn> I guess we can just wrap it in one layer of indirection to guarantee that
<Lynne> you can always do what lavu/tx does and checkasm the user-facing ABI with enough testcases to go through all combinations
<Lynne> ah... you probably don't expose the actual function pointer
<haasn> we technically do but the ABI is implementation defined
<haasn> (this is needed to pass vector registers directly between kernels)
<fflogger> [editedticket] MasterQuestionable: Ticket #11500 ([swscale] AV1 frame extraction (screenshot) fails) updated https://trac.ffmpeg.org/ticket/11500#comment:5
System_Error has quit [Ping timeout: 264 seconds]
martinr1 has joined #ffmpeg-devel
Guest77 has joined #ffmpeg-devel
<Lynne> haasn: isn't your topmost function proper C-ABI?
<Lynne> in x86/lavu/tx, we duplicate each function twice, one for if its the final user-facing function, and one if its meant for internal ABI linking
<haasn> I only expose reads to the top level
martinr1 has quit [Ping timeout: 244 seconds]
<haasn> Internal functions like lshift etc do not have user facing variants at all
<fflogger> [editedticket] MasterQuestionable: Ticket #11435 ([avformat] Added "-extension_picky" breaks various applications) updated https://trac.ffmpeg.org/ticket/11435#comment:16
System_Error has joined #ffmpeg-devel
Flat_ has joined #ffmpeg-devel
Guest77 has quit [Quit: Client closed]
Flat has quit [Ping timeout: 244 seconds]
<ramiro> haasn: I specifically want to avoid having to do functions with smaller and smaller chunks. there will be one main function (which will internally take care of the horizontal/vertical loops) which will be as fast as possible. the rest will run the c code. (or do the memcpy, but I'd have to check some benchmarks and the amount of extra code needed)
<ramiro> we currently have some converters that will try to do smaller and smaller chunks until they have hand-written scalar code for 1 pixel, and I don't think it's worth it to do that. it takes much more time and effort to write and test
<haasn> Right, then at least we may need to think about mixing together backends
<haasn> Pretty annoying either way
<haasn> I would be happy if the benchmarks show that the jit loop is not faster enough to warrant the effort
thilo has quit [Ping timeout: 248 seconds]
thilo has joined #ffmpeg-devel
<ramiro> haasn: this is a perf report from rgb24 to yuv444p: https://pastebin.com/bVmsZ6DL
<ramiro> the rest of the functions are negligible. note that run_op_pass is already taking 6.06% of the entire runtime
Anthony_ZO has joined #ffmpeg-devel
jdek has joined #ffmpeg-devel
cone-824 has joined #ffmpeg-devel
<cone-824> ffmpeg Andreas Rheinhardt master:4e806b326698: avcodec/mpeg4videodec: Actually check av_buffer_replace()
<cone-824> ffmpeg Andreas Rheinhardt master:114fccc4a503: avcodec/mpegvideo_enc: Set b-frame chain length properly
System_Error has quit [Remote host closed the connection]
derpydoo has joined #ffmpeg-devel
abdu93 has quit [Ping timeout: 240 seconds]
System_Error has joined #ffmpeg-devel
^Neo has quit [Ping timeout: 272 seconds]
derpydoo has quit [Read error: Connection reset by peer]
martinr1 has joined #ffmpeg-devel
<haasn> ramiro: I don’t suppose you can try swscale5?
martinr1 has quit [Ping timeout: 246 seconds]
mkver has quit [Ping timeout: 245 seconds]
beastd has quit [Ping timeout: 265 seconds]
<fflogger> [editedticket] MasterQuestionable: Ticket #11525 ([avdevice] 60fps stream from Elgato Facecam Pro is frozen) updated https://trac.ffmpeg.org/ticket/11525#comment:10
martinr1 has joined #ffmpeg-devel
martinr1 has quit [Ping timeout: 244 seconds]
beastd has joined #ffmpeg-devel
jamrial has quit []
derpydoo has joined #ffmpeg-devel
<fflogger> [editedticket] MasterQuestionable: Ticket #10775 ([avformat] More sensible HEVC handling for HLS creation) updated https://trac.ffmpeg.org/ticket/10775#comment:7
delewis_ has joined #ffmpeg-devel
delewis has quit [Remote host closed the connection]
<fflogger> [editedticket] MasterQuestionable: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:3
Guest87 has joined #ffmpeg-devel
Guest87 has quit [Client Quit]
martinr1 has joined #ffmpeg-devel
martinr1 has quit [Ping timeout: 252 seconds]
derpydoo has quit [Ping timeout: 244 seconds]
System_Error has quit [Remote host closed the connection]
System_Error has joined #ffmpeg-devel
martinr1 has joined #ffmpeg-devel
cone-824 has quit [Quit: transmission timeout]
martinr1 has quit [Ping timeout: 252 seconds]
derpydoo has joined #ffmpeg-devel
martinr1 has joined #ffmpeg-devel
martinr1 has quit [Ping timeout: 244 seconds]
av500 has quit [Read error: Connection reset by peer]
martinr1 has joined #ffmpeg-devel
martinr1 has quit [Ping timeout: 248 seconds]
martinr1 has joined #ffmpeg-devel
System_Error has quit [Remote host closed the connection]
mkver has joined #ffmpeg-devel
System_Error has joined #ffmpeg-devel
martinr1 has quit [Ping timeout: 246 seconds]
aaabbb has quit [Ping timeout: 260 seconds]
aaabbb has joined #ffmpeg-devel
DVedaa has quit [Ping timeout: 268 seconds]
DVedaa has joined #ffmpeg-devel
aaabbb has quit [Ping timeout: 276 seconds]
<fflogger> [editedticket] catap: Ticket #11525 ([avdevice] 60fps stream from Elgato Facecam Pro is frozen) updated https://trac.ffmpeg.org/ticket/11525#comment:11
martinr1 has joined #ffmpeg-devel
Raz- has quit [Quit: Leaving]
aaabbb has joined #ffmpeg-devel
twelve has joined #ffmpeg-devel
DVedaa has quit [Read error: Connection reset by peer]
DVedaa has joined #ffmpeg-devel
twelve has quit [Ping timeout: 244 seconds]
martinr1 has quit [Ping timeout: 268 seconds]
twelve has joined #ffmpeg-devel
twelve has quit [Remote host closed the connection]
DVedaa has quit [Read error: Connection reset by peer]
DVedaa has joined #ffmpeg-devel
aaabbb has quit [Ping timeout: 265 seconds]
ngaullier has joined #ffmpeg-devel
ngaullier has quit [Remote host closed the connection]
ngaullier has joined #ffmpeg-devel
<fflogger> [editedticket] MasterQuestionable: Ticket #11525 ([avdevice] 60fps stream from Elgato Facecam Pro is frozen) updated https://trac.ffmpeg.org/ticket/11525#comment:12
martinyr has joined #ffmpeg-devel
delewis has joined #ffmpeg-devel
delewis_ has quit [Remote host closed the connection]
HarshK23 has quit [Quit: Connection closed for inactivity]
martinyr has quit [Remote host closed the connection]
<fflogger> [newticket] CaptainProfit: Ticket #11530 ([avformat] nonrobust muxer work) created https://trac.ffmpeg.org/ticket/11530
abdu93 has joined #ffmpeg-devel
<fflogger> [newticket] helfix: Ticket #11531 ([ffmpeg] Audio stream not muxed with -c:a copy from RTSP) created https://trac.ffmpeg.org/ticket/11531
^Neo has joined #ffmpeg-devel
^Neo has joined #ffmpeg-devel
derpydoo has quit [Ping timeout: 272 seconds]
witchymary has quit [Remote host closed the connection]
witchymary has joined #ffmpeg-devel
<fflogger> [editedticket] cgbug: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:4
<fflogger> [editedticket] cgbug: Ticket #11490 ([avformat] [Regression] Audio silent for long MOV file) updated https://trac.ffmpeg.org/ticket/11490#comment:10
HarshK23 has joined #ffmpeg-devel
jamrial has joined #ffmpeg-devel
aaabbb has joined #ffmpeg-devel
<mkver> jamrial: Why did you not ping the cbs/movenc patches before applying them?
cone-439 has joined #ffmpeg-devel
<cone-439> ffmpeg Andreas Rheinhardt master:2ac2485c1f90: avcodec/mjpegenc: Don't allocate unnecessarily much memory
<jamrial> enough time passed after the last iteration with no comments
<mkver> No comment just means that no one has looked at it yet; I wanted to take a look, but then it was already pushed.
<jamrial> ah
<jamrial> sorry, you commented on the previous iterations pretty fast, so i assumed you had no comments for this one
<mkver> No, I was just busy with my mpvenc work.
Traneptora has quit [Quit: Quit]
Traneptora has joined #ffmpeg-devel
<Lynne> jamrial: I'm trying to port vp9 to use cbs_vp9, but I'm running into threading issues
<Lynne> I'm guessing cbs wasn't quite build for multithreading in mind
<jamrial> why port it?
<Lynne> guess why -_-
abdu93 has quit [Quit: Client closed]
<Lynne> vulkan needs even _more_ fields exposed, and adding them one by one was harder than simply adding cbs_vp9 and gradually switching everything to use the new header structs
<Lynne> besides, cbs is simply better, and that's a fact
abdu93 has joined #ffmpeg-devel
<jamrial> vvc doesn't seem to have threading issues and it uses cbs
<Lynne> how come it doesn't need an update_thread_context function?
<fflogger> [editedticket] catap: Ticket #11525 ([avdevice] 60fps stream from Elgato Facecam Pro is frozen) updated https://trac.ffmpeg.org/ticket/11525#comment:13
<Lynne> oh, it doesn't use standard frame threading
Traneptora has quit [Quit: Quit]
Traneptora has joined #ffmpeg-devel
<JEEB> yea VVC is the thing that added its dav1d-like threading controller
<mkver> and then duplicated it because the first attempt was not to their liking.
<jamrial> what's stopping us from adapting the lavu version to the lavc version?
<jamrial> it seems it should be a matter of deprecating two fields and adding other two?
<Lynne> I fixed the cbc issue by updating CodedBitstreamVP9Context in update_thread_context from src to dst
<mkver> Why was this public in the first place?
<Lynne> why wouldn't it be?
<JEEB> o_O
<JEEB> how did we end up with a dependency to autotools
<JEEB> ours is just barebones shell script that uses perl and a Makefile IIRC
<kasper93> theora
<JEEB> ahhh, yea. deps
<kasper93> there are some external libs built
<JEEB> so they're testing libtheora encoding?
<JEEB> yea, we only have a libtheora encoder entry
<JEEB> libavcodec/allcodecs.c:extern const FFCodec ff_theora_decoder;
<JEEB> libavcodec/allcodecs.c:extern const FFCodec ff_libtheora_encoder;
<JEEB> the first one is the built-in decoder
<JEEB> we may have had a libtheora decoder at some point, but I don't recall it from recent times
<JEEB> yea even in 2009 there seems to have been just the encoder
<BBB> poor skal, everytime webp makes it to hackernews, it's b/c of exploits and not b/c of it being technically great. I guess that's a sign of success/adoption?
<kasper93> it generates fuzzer for each configured encoder
<kasper93> so, yes, it is fuzzed
<JEEB> ok, then it makes sense
jamrial has quit [Ping timeout: 248 seconds]
<JEEB> BBB: yea if a library implementing a format you had something to do with gets widely enough utilized, it will be poked at in order to find a hole into a system
jamrial has joined #ffmpeg-devel
Anthony_ZO has quit [Ping timeout: 252 seconds]
<Lynne> I wish I could say something nice about it
jamrial has quit [Ping timeout: 252 seconds]
<fflogger> [editedticket] ffmpegScale: Ticket #11500 ([swscale] AV1 frame extraction (screenshot) fails) updated https://trac.ffmpeg.org/ticket/11500#comment:6
jamrial has joined #ffmpeg-devel
jamrial has quit [Ping timeout: 268 seconds]
abdu93 has quit [Quit: Client closed]
abdu93 has joined #ffmpeg-devel
blb has quit [Ping timeout: 248 seconds]
blb has joined #ffmpeg-devel
<fflogger> [editedticket] Micha: Ticket #6091 ([avcodec] support ds2 audio (dss pro audio) file format) updated https://trac.ffmpeg.org/ticket/6091#comment:18
<toots5446> michaelni: Do you have any feedback re: the latest patch series?
jamrial has joined #ffmpeg-devel
cone-439 has quit [Quit: transmission timeout]
cone-262 has joined #ffmpeg-devel
<cone-262> ffmpeg Lynne master:193610d9bac1: vulkan_decode: allow using NULL offsets/nb_slices in ff_vk_decode_add_slice()
<cone-262> ffmpeg Lynne master:5fc4acae9c76: vulkan_decode: allow using NULL sequence_params when decoding
<cone-262> ffmpeg Lynne master:4dadf71dceb6: lavu/vulkan: skip adding NULL buffers as deps in ff_vk_exec_add_dep_buf
<cone-262> ffmpeg Lynne master:5595068be562: vulkan_loader: remap video_maintenance2 in ff_vk_extensions_to_mask
<cone-262> ffmpeg Lynne master:8804ae158ba5: vulkan_functions: add note to update ff_vk_extensions_to_mask
abdu93 has quit [Ping timeout: 240 seconds]
minimal has joined #ffmpeg-devel
aaabbb has quit [Ping timeout: 252 seconds]
abdu93 has joined #ffmpeg-devel
aaabbb has joined #ffmpeg-devel
abdu12 has joined #ffmpeg-devel
abdu93 has quit [Ping timeout: 240 seconds]
Milardo has joined #ffmpeg-devel
abdu12 has quit [Ping timeout: 240 seconds]
abdu12 has joined #ffmpeg-devel
Milardo93 has joined #ffmpeg-devel
Milardo93 has quit [Client Quit]
Milardo4 has joined #ffmpeg-devel
Milardo has quit [Ping timeout: 240 seconds]
abdu12 has quit [Ping timeout: 240 seconds]
ngaullier has quit [Remote host closed the connection]
martinr1 has joined #ffmpeg-devel
Milardo4 has quit [Quit: Ping timeout (120 seconds)]
jamrial has quit [Read error: Connection reset by peer]
Milardo has joined #ffmpeg-devel
<ramiro> haasn: I ported asmjit to swscale5. op_pass_run still takes pretty much the same amount of time, it's at 5.95% of the total runtime.
martinr1 has quit [Ping timeout: 276 seconds]
abdu12 has joined #ffmpeg-devel
abdu9 has joined #ffmpeg-devel
Milardo has quit [Quit: Client closed]
abdu12 has quit [Ping timeout: 240 seconds]
Milardo has joined #ffmpeg-devel
<fflogger> [editedticket] brian6932: Ticket #9210 ([avformat] Concat images produces wrong timings when duration is in milliseconds) updated https://trac.ffmpeg.org/ticket/9210#comment:11
<fflogger> [editedticket] MasterQuestionable: Ticket #11500 ([swscale] AV1 frame extraction (screenshot) fails) updated https://trac.ffmpeg.org/ticket/11500#comment:7
Guest88 has joined #ffmpeg-devel
Guest88 has quit [Client Quit]
Milardo has quit [Ping timeout: 240 seconds]
abdu9 has quit [Ping timeout: 240 seconds]
<fflogger> [editedticket] MasterQuestionable: Ticket #11525 ([avdevice] Better frame dropping logic for live streams to avoid unjustifiable freezing?) updated https://trac.ffmpeg.org/ticket/11525#comment:14
abdu9 has joined #ffmpeg-devel
<BtbN> Why does the dude keep changing CLOSED issue titles to something completely different? My god
Milardo has joined #ffmpeg-devel
jamrial has joined #ffmpeg-devel
Milardo has quit [Ping timeout: 240 seconds]
Milardo has joined #ffmpeg-devel
<fflogger> [editedticket] catap: Ticket #11525 ([avdevice] Better frame dropping logic for live streams to avoid unjustifiable freezing?) updated https://trac.ffmpeg.org/ticket/11525#comment:16
Milardo has quit [Ping timeout: 240 seconds]
Milardo has joined #ffmpeg-devel
Milardo has quit [Ping timeout: 240 seconds]
cone-262 has quit [Quit: transmission timeout]
mkver has quit [Ping timeout: 245 seconds]
<fflogger> [newticket] LinAGKar: Ticket #11532 ([undetermined] Raw bitstream export/import makes video stuttery) created https://trac.ffmpeg.org/ticket/11532
martinr1 has joined #ffmpeg-devel
Milardo has joined #ffmpeg-devel
Milardo has quit [Client Quit]
<fflogger> [editedticket] MasterQuestionable: Ticket #11532 ([undetermined] Raw bitstream export/import makes video stuttery) updated https://trac.ffmpeg.org/ticket/11532#comment:1
martinr1 has quit [Ping timeout: 248 seconds]
<fflogger> [editedticket] MasterQuestionable: Ticket #9210 ([avformat] Malapropos timebase preset for "concat" demuxer?) updated https://trac.ffmpeg.org/ticket/9210#comment:12
b50d has joined #ffmpeg-devel
<fflogger> [editedticket] MasterQuestionable: Ticket #11530 ([avformat] Corrupted MP4 due to unfinished "moov atom" writing) updated https://trac.ffmpeg.org/ticket/11530#comment:2
b50d has quit [Client Quit]
<fflogger> [editedticket] jamrial: Ticket #11532 ([undetermined] Raw bitstream export/import makes video stuttery) updated https://trac.ffmpeg.org/ticket/11532#comment:2
<fflogger> [editedticket] LinAGKar: Ticket #11532 ([undetermined] Raw bitstream export/import makes video stuttery) updated https://trac.ffmpeg.org/ticket/11532#comment:3
Grimmauld has joined #ffmpeg-devel
Grimmauld has quit [Client Quit]
Grimmauld has joined #ffmpeg-devel
<fflogger> [editedticket] MasterQuestionable: Ticket #11532 ([undetermined] Raw bitstream export/import makes video stuttery) updated https://trac.ffmpeg.org/ticket/11532#comment:4
b50d has joined #ffmpeg-devel
twelve has joined #ffmpeg-devel
abdu18 has joined #ffmpeg-devel
abdu9 has quit [Ping timeout: 240 seconds]
b50d has quit [Remote host closed the connection]
IndecisiveTurtle has quit [Ping timeout: 268 seconds]
<fflogger> [editedticket] Balling: Ticket #11525 ([avdevice] Better frame dropping logic for live streams to avoid unjustifiable freezing?) updated https://trac.ffmpeg.org/ticket/11525#comment:17
faidz has joined #ffmpeg-devel
<fflogger> [editedticket] Balling: Ticket #11532 ([undetermined] Raw bitstream export/import makes video stuttery) updated https://trac.ffmpeg.org/ticket/11532#comment:5
IndecisiveTurtle has joined #ffmpeg-devel
twelve has quit [Remote host closed the connection]
<fflogger> [editedticket] LinAGKar: Ticket #11532 ([undetermined] Raw bitstream export/import makes video stuttery) updated https://trac.ffmpeg.org/ticket/11532#comment:6
<fflogger> [editedticket] catap: Ticket #11525 ([avdevice] Better frame dropping logic for live streams to avoid unjustifiable freezing?) updated https://trac.ffmpeg.org/ticket/11525#comment:18
<fflogger> [editedticket] catap: Ticket #11525 ([avdevice] Better frame dropping logic for live streams to avoid unjustifiable freezing?) updated https://trac.ffmpeg.org/ticket/11525#comment:19
martinr1 has joined #ffmpeg-devel
<fflogger> [editedticket] MasterQuestionable: Ticket #11525 ([avdevice] Better frame dropping logic for live streams to avoid unjustifiable freezing?) updated https://trac.ffmpeg.org/ticket/11525#comment:20
martinr1 has quit [Ping timeout: 244 seconds]
Grimmauld has quit [Quit: Client closed]
faidz has quit [Ping timeout: 268 seconds]
<fflogger> [editedticket] MasterQuestionable: Ticket #11531 ([ffmpeg] [Regression] AAC audio in RTSP no more muxed with "-c copy") updated https://trac.ffmpeg.org/ticket/11531#comment:3
<fflogger> [editedticket] bleak8197: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:5
Mirarora has quit [Quit: Mirarora encountered a fatal error and needs to close]
<fflogger> [editedticket] bleak8197: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:6
<fflogger> [editedticket] bleak8197: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:7
<fflogger> [editedticket] bleak8197: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:8
Mirarora has joined #ffmpeg-devel
<fflogger> [editedticket] MasterQuestionable: Ticket #11528 ([avcodec] Intermittent sound loss playing DSD (".dsf") in FFplay) updated https://trac.ffmpeg.org/ticket/11528#comment:9
martinr1 has joined #ffmpeg-devel
martinr1 has quit [Ping timeout: 252 seconds]
<fflogger> [editedticket] bleak8197: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:10
cone-938 has joined #ffmpeg-devel
<cone-938> ffmpeg Michael Niedermayer master:ffd537bcc2da: avcodec/ffv1enc: Eliminate encode_mul()
<cone-938> ffmpeg Michael Niedermayer master:430065a97b08: avcodec/ffv1dec: Fix end handling
<cone-938> ffmpeg Michael Niedermayer master:d4a23e664018: avcodec/ffv1enc: Fix end handling
<cone-938> ffmpeg Michael Niedermayer master:f334eadd3644: avcodec/ffv1enc: Fix off by 1 in assert
<cone-938> ffmpeg Michael Niedermayer master:226fcc7258ca: avcodec/ffv1enc: Store run1start_mul_index instead of computing
<fflogger> [editedticket] bleak8197: Ticket #11528 ([avcodec] High sizzle problem when playing 5.6MHz DSD (.dsf) audio file) updated https://trac.ffmpeg.org/ticket/11528#comment:11
Mirarora has quit [Quit: Mirarora encountered a fatal error and needs to close]
<fflogger> [editedticket] catap: Ticket #11525 ([avdevice] Better frame dropping logic for live streams to avoid unjustifiable freezing?) updated https://trac.ffmpeg.org/ticket/11525#comment:21
<fflogger> [editedticket] bleak8197: Ticket #11528 ([avcodec] Intermittent sound loss playing DSD (".dsf") in FFplay and harmonoid) updated https://trac.ffmpeg.org/ticket/11528#comment:13