Mercurial > mplayer.hg
view debian/postrm @ 17079:c3893e949327
muxer_lavf MUST be disabled by default until someone adds AVParser
support to it. Otherwise users will generate files with totally
nonsensical pts if they use B frames! (And they are already doing so
-- see mplayer-users list!)
If anyone wants to volunteer to add AVParser support, go right ahead!
But until then, do not remove this check. :)
author | rfelker |
---|---|
date | Fri, 02 Dec 2005 19:43:36 +0000 |
parents | 02309ce6fc22 |
children |
line wrap: on
line source
#!/bin/sh set -e if [ "$1" = "purge" ]; then if [ -e /usr/share/debconf/confmodule ]; then # Source debconf library. . /usr/share/debconf/confmodule # Remove my changes to the db. db_purge fi if [ -d /etc/mplayer/ ]; then rm -rf /etc/mplayer/ fi fi #DEBHELPER#