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
doc_helper.sh
#! /bin/sh

# Add <vlc_common.h> before most headers
# from old toolbox

# Clean env
LC_ALL=C
export LC_ALL
LANG=C
export LANG

if test "$1" = "" ; then
  exit 0
fi

##  Add includes to help doxygen
case "$1" in
  */vlc_common.h|*/include/vlc/*);;
  */include/*.h) echo "#include <vlc_common.h>" ;;
esac
cat $1
exit 0

back to top