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
minimal has quit [Quit: Leaving]
iive has quit [Quit: They came for me...]
_whitelogger has joined #ffmpeg-devel
<fflogger> [editedticket] MasterQuestionable: Ticket #11593 ([ffmpeg] New User Question - working with youtube) updated https://trac.ffmpeg.org/ticket/11593#comment:6
mkver has quit [Ping timeout: 265 seconds]
_whitelogger has joined #ffmpeg-devel
jamrial has quit []
Martchus has joined #ffmpeg-devel
Martchus_ has quit [Ping timeout: 244 seconds]
Marth64 has joined #ffmpeg-devel
_av500_ has quit [Read error: Connection reset by peer]
_av500_ has joined #ffmpeg-devel
System_Error has quit [Remote host closed the connection]
_whitelogger has joined #ffmpeg-devel
zsoltiv has quit [Ping timeout: 248 seconds]
zsoltiv_ has quit [Ping timeout: 248 seconds]
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #ffmpeg-devel
Kei_N_ has joined #ffmpeg-devel
Kei_N has quit [Ping timeout: 252 seconds]
Marth64[m] has joined #ffmpeg-devel
Marth64 has quit [Ping timeout: 248 seconds]
<fflogger> [newticket] ezgoen: Ticket #11615 ([website] Web site Documentation - possibe error in https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#) created https://trac.ffmpeg.org/ticket/11615
<another|> urg. another one who misreports normal meson behaviour as a bug
<another|> had one of those in dav1d as well
mkver has joined #ffmpeg-devel
System_Error has joined #ffmpeg-devel
<fflogger> [newticket] ahmadconradi: Ticket #11616 ([undetermined] kmsgrab does not exit on ctrl+c) created https://trac.ffmpeg.org/ticket/11616
System_Error has quit [Ping timeout: 264 seconds]
System_Error has joined #ffmpeg-devel
DauntlessOne49 has quit [Read error: Connection reset by peer]
DauntlessOne49 has joined #ffmpeg-devel
<thardin> hrm. C has bsearch() but not lower_bound()
<thardin> don't we have a map implementation in lavu?
<thardin> right, there's tree.c
mkver has quit [Ping timeout: 245 seconds]
mkver has joined #ffmpeg-devel
<thardin> keys and elements can't be of different types? boo!
<fflogger> [editedticket] gamer191: Ticket #11020 ([ffmpeg] Invalid color range error on ffmpeg 7.0) updated https://trac.ffmpeg.org/ticket/11020#comment:9
<thardin> ah but av_tree_find() does allow different types. neat
<fflogger> [editedticket] gamer191: Ticket #11020 ([ffmpeg] Invalid color range error on ffmpeg 7.0) updated https://trac.ffmpeg.org/ticket/11020#comment:10
jamrial has joined #ffmpeg-devel
ssfl has joined #ffmpeg-devel
ssfl has quit [Remote host closed the connection]
ssfl has joined #ffmpeg-devel
<thardin> mov.c is literally the largest source file in lavf >_<
ssfl has quit [Remote host closed the connection]
<thardin> I think what I might do is create a default segment tree consisting of just one entry, with the usual AVIndexEntry* inside. demuxers that want finite-length segments can override the default "tree"
<thardin> having to always call av_tree_find() is perhaps a bit awkward, when we know the size of the tree is one. but AVTreeNode is opaque so
_av500_ is now known as av500
Xe has quit [Quit: ZNC 1.9.1 - https://znc.in]
Xe has joined #ffmpeg-devel
averne is now known as averne_
averne_ is now known as averne
<haasn> Lynne: I think mesa's implementation of VkDrmFormatModifierProperties2EXT for llvmpipe may be buggy
<haasn> it seems to report all properties as {0}, which coincidentally also makes the debug layers complain
<haasn> or maybe it only happens under certain circumstances
<haasn> it's strange
<Lynne> yeah, the ecosystem's recent support for udmas broke a lot
<thardin> mov fragments can overlap? aaaa
<JEEB> they should not...
<JEEB> each track is *supposed* to be continuous and you'd expect fragments to also follow that
<thardin> // The end of this new fragment may overlap in time with the start
<thardin> // of the next fragment in index_entries. Mark the samples in the next
<thardin> // fragment that overlap with AVINDEX_DISCARD_FRAME
<thardin> also when random accessing a mov there's no way to know this
<thardin> unless of course the previous fragment header is parsed to find this out. but then you also have to parse the header before that. and so on
<JEEB> I recommend sticking "14496-12 pdf 2015" into your favourite search engine
<JEEB> that is the last freely available version of ISOBMFF
<thardin> I have it downloaded
<JEEB> ok
<thardin> but yeah if the spec says that's not allowed then we should angrily reject files that do so
<thardin> disciplina disciplina
<JEEB> there could be something dumb in relation to track timescales vs movie timescales, but that wouldn't be something to do discard frame about, just similar handling to crappy time base containers so that inexact stuff gets fixed up
<thardin> I'm making some progress at least. using AVTree makes it possible to simplify the code
<JEEB> yea, mov I've also had ideas of how to step by step simplify it
<JEEB> such as adding generic templating for box and fullbox parsing
<JEEB> so not each fullbox function would be trying to handle things slightly differently
<thardin> I've said many times we should really have a parsing framework rather than the shotgun parsing that permeates the codebase
<thardin> with lazy eval stuff like fragmented files could be handled much more nicely
<thardin> also the way it just makes up timestamps in case of EOF is cursed
<thardin> luckily moving to a fragmented index means dealing with EOF is much simpler. that index fragment just becomes shorter. no need to move entries around
Xe has quit [Remote host closed the connection]
<thardin> come to think of it, it might just turn out that overlapping samples get tossed out automagically as a result of the fragment lookup logic
<thardin> gotta go. but mov_read_trun() is looking a lot cleaner
Xe has joined #ffmpeg-devel
<Lynne> I wonder if its possible to somehow use VP9 in MP4 and include film grain data in
<JEEB> the first part is just fine, the film grain I'm not so sure about since I'm not sure VP9 bitstream had a generic metadata packet type that they added with AV1 for example.
<Lynne> haasn: apparently host image copy is also incompatible with DRM modifier backed VkImages
<haasn> Lynne: in practice or in theory?
<haasn> also, mesa doesn't seem to support it
<haasn> at least on amd, I get hostImageCopy = false
<Lynne> its fairly newly added to mesa
<haasn> this is on git master
<Lynne> in practice
<Lynne> the issue is that the images are required to be non-block compressed
<Lynne> and modifiers these days often result in compressed images
<Lynne> and its currently not possible to correlate whether a modifier is compressed or not (and there's no feedback to let you know this in vulkan either)
<Lynne> there's talk to hook up optimalDeviceAccess to let you know this but nothing yet
<haasn> Lynne: seems only anv has it
<haasn> not radv
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #ffmpeg-devel
<fflogger> [newticket] ayosec: Ticket #11617 ([avcodec] heap-use-after-free in libavcodec/libaomenc.c found by AddressSanitizer) created https://trac.ffmpeg.org/ticket/11617
Arcitec has joined #ffmpeg-devel
sepro has quit [Quit: Bye!]
sepro has joined #ffmpeg-devel
Teukka has quit [Read error: Connection reset by peer]
Teukka has joined #ffmpeg-devel
Teukka has quit [Changing host]
Teukka has joined #ffmpeg-devel
microlappy has joined #ffmpeg-devel
<fflogger> [editedticket] ahmadconradi: Ticket #11616 ([ffmpeg] kmsgrab does not exit on ctrl+c) updated https://trac.ffmpeg.org/ticket/11616#comment:2
<fflogger> [editedticket] ahmadconradi: Ticket #11403 ([undetermined] Recording with kmsgrab can't be stopped properly) updated https://trac.ffmpeg.org/ticket/11403#comment:1
microlappy has quit [Quit: Konversation terminated!]
cone-112 has joined #ffmpeg-devel
<cone-112> ffmpeg Andreas Rheinhardt master:1b5a291dcc24: avcodec/dovi_rpuenc: Use av_unreachable() instead of av_assert0(0)
<cone-112> ffmpeg Andreas Rheinhardt master:8d45dc858ecf: avcodec/dovi_rpuenc: Avoid intermediate codec par in ff_dovi_configure()
<cone-112> ffmpeg Andreas Rheinhardt master:0adfe158292f: avcodec/dovi_rpuenc: Use av_cold for ff_dovi_configure init functions
<cone-112> ffmpeg Andreas Rheinhardt master:27c5e4b39afb: avcodec/libaomenc: Increase code locality
<fflogger> [editedticket] mkver: Ticket #11617 ([avcodec] heap-use-after-free in libavcodec/libaomenc.c found by AddressSanitizer) updated https://trac.ffmpeg.org/ticket/11617#comment:1
halloy5771 has joined #ffmpeg-devel
halloy5771 has quit [Client Quit]
bwu25 has joined #ffmpeg-devel
bwu25 has quit [Client Quit]
<fflogger> [editedticket] MasterQuestionable: Ticket #11403 ([avdevice] [Regression] Abnormal "kmsgrab" exit handling of FF7 threading change) updated https://trac.ffmpeg.org/ticket/11403#comment:2
<fflogger> [editedticket] MasterQuestionable: Ticket #11616 ([ffmpeg] kmsgrab does not exit on ctrl+c) updated https://trac.ffmpeg.org/ticket/11616#comment:3
minimal has joined #ffmpeg-devel
rvalue- has joined #ffmpeg-devel
rvalue has quit [Ping timeout: 272 seconds]
rvalue- is now known as rvalue
microlappy has joined #ffmpeg-devel
ccawley2011 has joined #ffmpeg-devel
microlappy has quit [Quit: Konversation terminated!]
<fflogger> [editedticket] MasterQuestionable: Ticket #11615 ([documentation] Wiki "CompilationGuide/Ubuntu" possible error) updated https://trac.ffmpeg.org/ticket/11615#comment:2
<fflogger> [editedticket] MasterQuestionable: Ticket #11605 ([avcodec] "h264_qsv" unsupported with old hardware) updated https://trac.ffmpeg.org/ticket/11605#comment:2
cone-112 has quit [Quit: transmission timeout]
ccawley2011 has quit [Ping timeout: 265 seconds]
av500 has quit [Remote host closed the connection]
av500 has joined #ffmpeg-devel
E81l7HT8T7sF9JdA has joined #ffmpeg-devel
E81l7HT8T7sF9JdA has quit [Quit: Leaving]
cone-427 has joined #ffmpeg-devel
<cone-427> ffmpeg Romain Beauxis master:ba3d4c2ba2b8: libavformat/oggdec.{c, h}: Add new_extradata, use it to pass extradata to the next decoded packet.
<cone-427> ffmpeg Romain Beauxis master:c9cc61d6200d: ogg/vorbis: factor out header processing logic.
<cone-427> ffmpeg Michael Niedermayer master:791a333a0ea5: avcodec/hevc/hevcdec: Check num_entry_point_offsets
<cone-427> ffmpeg Michael Niedermayer master:67040773dc8c: avcodec/ffv1enc_template: Fix remaining space check
<cone-427> ffmpeg Michael Niedermayer master:f6986e75be87: avcodec/speexdec: Pass and check remaining packets to decode functions
<cone-427> ffmpeg Romain Beauxis master:574f634e4984: ogg/vorbis: implement header packet skip in chained ogg bitstreams.
<cone-427> ffmpeg Romain Beauxis master:5030564376ea: libavformat/oggdec.h: Change paket function documentation to return 1 on header packets only.
<cone-427> ffmpeg Kacper Michajłow master:1a7e802c8f97: avformat/demux: use io_close2 when closing avfromat
Guest79 has joined #ffmpeg-devel
Guest79 has quit [Client Quit]
<mkver> michaelni: ASAN now reports a heap-buffer-overflow in the ogg-vorbis-chained-meta test.
<cone-427> ffmpeg Andreas Rheinhardt master:61a70e8e9ef6: avcodec/dvenc: Check for unaligned pointers, strides
<cone-427> ffmpeg Andreas Rheinhardt master:20ddada2a3c3: avcodec/pixblockdsp: Improve 8 vs 16 bit check
<cone-427> ffmpeg Andreas Rheinhardt master:17d5f30dd58d: avcodec/pixblockdsp: Pass bits_per_raw_sample directly
<cone-427> ffmpeg Andreas Rheinhardt master:fbf5cfaed51f: avcodec/pixblockdsp: Fix get_pixels alignment documentation
<cone-427> ffmpeg Andreas Rheinhardt master:23761c7acd53: avcodec/asvenc,dvenc: Optimize unaligned checks away if possible
<cone-427> ffmpeg Andreas Rheinhardt master:0435cd5a6208: avfilter/x86/vf_spp: Remove permutation-specific code
minimal has quit [Quit: Leaving]