git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/asvenc : Simplify writing extradata
22 mai, par Andreas Rheinhardtavcodec/asvenc: Simplify writing extradata It is confusing, because the AV_RL32("ASUS") already returns an endian-independent value, so converting it via av_le2ne32() makes no real sense: one would need to transform the native value to le and write it as a natie endian uint32_t for it to make sense (the current code only works because le2ne32 and ne2le32 are the same for both endianness that we care about). Or one can just use AV_RL32 and create the number via MKTAG(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
vulkan/ffv1 : fix sync issue in cached bitstream reader/writer
22 mai, par Lynnevulkan/ffv1: fix sync issue in cached bitstream reader/writer The issue is that there is an explicit lack of synchronization as only the very first invocation writes symbols and updates the state, which other invocations then store.
-
lavc/h2645_parse : More descriptive NALU header error
22 mai, par Frank Plowman -
avcodec/asvenc : Combine writing bits
22 mai, par Andreas Rheinhardtavcodec/asvenc: Combine writing bits Removes implicit checks for "do I need to output the buffer now?". Codesize with Clang 19 with -O3 decreased from 7136B to 6108B (although asv2_put_level() is now inlined). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
doc/examples/qsv_decode : use av_err2str
22 mai, par Tristan Matthews