Package: mplayer / 2:1.3.0-6

Metadata

Package Version Patches format
mplayer 2:1.3.0-6 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001_version.patch | (download)

VERSION | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 modify the version file.
 Follow DOCS/tech/binary-packaging.txt instructions and adjust the version
 since we modify the source.
 .
 Official releases always have a VERSION file and get-orig-source generates
 one too.
0002_mplayer_debug_printf.patch | (download)

mplayer.c | 5 4 + 1 - 0 !
1 file changed, 4 insertions(+), 1 deletion(-)

 in case of crash, suggest installing package mplayer-dbgsym for debugging symbols
0100_svn37857_CVE 2016 4352.patch | (download)

libmpdemux/demux_gif.c | 11 11 + 0 - 0 !
1 file changed, 11 insertions(+)

 validate image size in demux_gif

Fixes crash with -vo null and overflow.gif
Reported by Gustavo Grieco
Debian-Bug: https://bugs.debian.org/823723


0101_svn37875_fix crash with screenshot filter.patch | (download)

libmpcodecs/vf_screenshot.c | 2 2 + 0 - 0 !
1 file changed, 2 insertions(+)

 fix crash with screenshot filter.
 avcodec_open2() now requires timebase to be always set, even for png images.
 The patch sets it to 1/1, since pictures do not have a framerate.
0200_fix_spelling_error_in_binary.patch | (download)

stream/dvb_tune.c | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 fix lintian warning about spelling error in binary
0201_PATH_MAX_HURD.patch | (download)

gui/dialog/fileselect.c | 6 6 + 0 - 0 !
libao2/ao_esd.c | 4 4 + 0 - 0 !
libmenu/menu_filesel.c | 5 5 + 0 - 0 !
libmpcodecs/vf_screenshot.c | 5 5 + 0 - 0 !
libmpdemux/mf.c | 5 5 + 0 - 0 !
mplayer.c | 5 5 + 0 - 0 !
osdep/osdep.h | 5 5 + 0 - 0 !
stream/stream_bd.c | 5 5 + 0 - 0 !
8 files changed, 40 insertions(+)

 fix ftbfs in gnu/hurd.
 - PATH_MAX does not have to be defined and is not define in GNU/Hurd.
 - O_NDELAY is deprecated and not defined in Hurd unless _BSD_SOURCE is defined.
 .
 Hardcoding PATH_MAX is ugly but if it's not defined then "anything" is a valid
 limit as long as it does not break malloc. It would be better if it used
 dynamically allocated memory instead of 4096 but someone can provide an
 improved patch for that.