Staging
v0.5.0
Revision f1b94134a4b879bc55c3dacdb496690c8ebdc03f authored by Vikram Fugro on 11 March 2016, 12:16:11 UTC, committed by Jean-Baptiste Kempf on 11 March 2016, 14:57:34 UTC
Allocate the output vlc pictures with dimensions padded,
as requested by the decoder (for alignments). This further
increases the chances of direct rendering.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent 6c813cb
Raw File
check_POTFILES.sh
#! /bin/sh

top_srcdir="${srcdir}/.."

set -xe

cd ${top_srcdir}

grep -v '^#' po/POTFILES.in | \
while read f
do
	test -n "$f" || continue
	if test ! -f "$f"
	then
		echo "$f: source file missing!" >&2
		exit 1
	fi
done
back to top