annotate debian/all-lang-config-mak.sh @ 33260:e180057420a5

Fix segfault with -lavdopts vstats and some codecs. The vstats option relies on avctx->coded_frame been filled. Unfortunately not all codecs do that (e.g. VP8) thus causing NULL dereference. FFmpeg code seem to always check if coded_frame != NULL, so we should do the same.
author iive
date Sun, 01 May 2011 20:21:00 +0000
parents c9f9a077d760
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31833
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
1 #!/bin/sh
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
2
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
3 # hack to avoid having to configure mplayer just for building the
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
4 # xml documentation
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
5
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
6 doc_lang_all=`echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g"`
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
7
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
8 echo "DOC_LANG_ALL = ${doc_lang_all}"
c9f9a077d760 Add new debian packaging based on official distro packages
siretart
parents:
diff changeset
9 echo "DOC_LANGS = ${doc_lang_all}"