Description: TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . transcode (3:1.1.7-8) unstable; urgency=medium . * Team upload. * debian/patches: - 10_freetype.patch: Fix compilation with recent versions of freetype. (Closes: #732142) - 11_underlinkage.patch: Fix underlinkage of some plugins. Author: Sebastian Ramacher Bug-Debian: http://bugs.debian.org/732142 --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- transcode-1.1.7.orig/export/export_ffmpeg.c +++ transcode-1.1.7/export/export_ffmpeg.c @@ -876,7 +876,7 @@ MOD_init lavc_venc_context->rc_qsquish = lavc_param_rc_qsquish; lavc_venc_context->rc_qmod_amp = lavc_param_rc_qmod_amp; lavc_venc_context->rc_qmod_freq = lavc_param_rc_qmod_freq; - lavc_venc_context->rc_eq = lavc_param_rc_eq; + lavc_venc_context->rc_eq = av_strdup(lavc_param_rc_eq); lavc_venc_context->rc_max_rate = lavc_param_rc_max_rate * 1000; lavc_venc_context->rc_min_rate = lavc_param_rc_min_rate * 1000; lavc_venc_context->rc_buffer_size = lavc_param_rc_buffer_size * 1024;