git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/exr : use the correct step value for plane pointers
5 mars, par James Almer -
swscale/input : add support for YAF16 and YAF32
5 mars, par James Almer -
avutil/pixfmt : add YAF16 and YAF32 pixel formats
5 mars, par James Almer -
avcodec/exr : Fix potential effective-type violation
5 mars, par Andreas Rheinhardtavcodec/exr: Fix potential effective-type violation Storing the values via a union of an uint32_t and a float makes said union the effective type of the destination. This means that it may only be read via such a union which is of course not what our users do/expect. So store the values via AV_WN32A instead which disables effective type analysis (for compilers that perform it). This also fixes a -Wdeclaration-after-statement warning introduced in 0e917389fe73c932049635d947bba076f1709589. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avcodec/exr : Remove write-only gamma_table
5 mars, par Andreas Rheinhardt