git.libav.org Git - libav.git/rss log
Libav master git repository
Les articles publiés sur le site
-
fate : Add tests for mov display matrix
24 octobre 2016, par Vittorio Giovarafate: Add tests for mov display matrix Rotation, sample/display aspect ratio and pure matrix export. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
avprobe : Add -show_stream_entry to get a single stream property
24 octobre 2016, par Vittorio Giovaraavprobe: Add -show_stream_entry to get a single stream property This is needed for improved fate testing and it is modeled after -show_format_entry. The main behavioral difference is that when a print function is called with an empty key, rather than discarding it, the closes key in the hierarchy is used instead. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
scale_npp : fix passthrough mode
24 octobre 2016, par Yogender Gupta -
dvbsubdec : Fixed segfault when decoding subtitles
21 octobre 2016, par Lorenz Brundvbsubdec: Fixed segfault when decoding subtitles This fixes a segfault (originally found in Movian, but traced to libav) when decoding subtitles because only an array of rects is allocated, but not the actual structs it contains. The issue was probably introduced in commit 2383323 where the loop to allocate the rects in the array was thrown away. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-
bktr : Use memset(0) instead of zero initialization for struct sigaction
21 octobre 2016, par Diego Biurrunbktr: Use memset(0) instead of zero initialization for struct sigaction sigaction is not defined in standards as a struct starting with another struct. Some *BSD variants do however, resulting in a warning from the zero initialization, which this change eliminates. This partially reverts a92be9b856bd11b081041c43c25d442028fe9a63.