From owner-freebsd-gecko@FreeBSD.ORG Sat Jun 2 09:56:56 2012 Return-Path: Delivered-To: freebsd-gecko@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DAF11065676 for ; Sat, 2 Jun 2012 09:56:56 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from server2.allsitecontrol.com (server2.allsitecontrol.com [63.143.36.210]) by mx1.freebsd.org (Postfix) with ESMTP id BA5B58FC16 for ; Sat, 2 Jun 2012 09:56:52 +0000 (UTC) Received: from cs-tor.bu.edu ([204.8.156.142]:46341 helo=internal.tormail.org) by server2.allsitecontrol.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.77) (envelope-from ) id 1Sal4X-001fxk-TT; Sat, 02 Jun 2012 05:56:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:Subject:Cc:To:From; bh=A0dnmGy6IMNg4r4mZboveUu97GOPkrahR8juxSfcG+Q=; b=LvVGOprQ+AkJ6F8lEqPq92pnUx941PKIfQic8pw21sDi3bmfekMUAiRYs0s/9meCw39WUUzDHLtAo0EnpHeaBpCMwQUCrgPqABV9gTDN3SaHr16bIEfvR65X73tketH2/cFPIFiNJmrKp3My07Z7hbp5EG62dt+nIxZfEMwi00o=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1Sal3r-000FjK-OV; Sat, 02 Jun 2012 09:55:58 +0000 From: Jan Beich To: AN Date: Sat, 02 Jun 2012 14:53:22 +0500 References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-TorMail-User: jbeich Message-Id: <1Sal3r-000FjK-OV@internal.tormail.org> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server2.allsitecontrol.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tormail.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-gecko@FreeBSD.org Subject: Re: issue with VP8 and Ogg video X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jun 2012 09:56:56 -0000 --=-=-= Content-Type: text/plain Content-Disposition: inline AN writes: > Hi: > > I want to report an issue I have playing HTML5 video in Firefox. > > - if you pause or stop a video it takes time (10-30 secs) before the sound > stops playing > > - after viewing a video Firefox cpu utilization pegs at 100% and stays > there until you exit firefox and restart it. > > I have seen this problem before with Adobe Flash, it seems that it has > been fixed with Flash. Now it happens with VP8, and Ogg. I would > like to help to troubleshoot this if I can. I am not a developer, > just a lowly user. [...] Try to test[1] on www/linux-firefox to verify if this a platform specific bug. In my case on Nightly after pause takes effect (a few *seconds* after hitting it) firefox cpu usage ramps up to 100% in audio_callback around pthread_mutex_unlock, i.e. sydney_audio_oss.c:459. And if I close the tab while sound still plays (whether or not I hit pause) the bug would not appear. [1] if you manage to make sound work (I haven't) despite linux aplay(1) working fine; a few related diffs attached, may or may not make a difference --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=alsa-oss.diff Content-Description: use oss in alsa by default Index: audio/linux-f10-alsa-lib/Makefile =================================================================== RCS file: /a/.csup/ports/audio/linux-f10-alsa-lib/Makefile,v retrieving revision 1.16 diff -u -p -r1.16 Makefile --- audio/linux-f10-alsa-lib/Makefile 3 Mar 2011 09:26:34 -0000 1.16 +++ audio/linux-f10-alsa-lib/Makefile 1 Jun 2012 17:14:47 -0000 @@ -25,4 +25,8 @@ RPMVERSION= 2.fc10 BRANDELF_FILES= usr/bin/aserver USE_LDCONFIG= yes +post-install: + ${INSTALL_DATA} ${PORTSDIR}/audio/alsa-lib/files/asound.conf.sample \ + ${LINUXBASE}/etc/asound.conf + .include --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=linux-nightly.diff Content-Description: update linux-firefox to Nightly Index: www/linux-firefox/Makefile =================================================================== RCS file: /a/.csup/ports/www/linux-firefox/Makefile,v retrieving revision 1.93 diff -u -p -r1.93 Makefile --- www/linux-firefox/Makefile 24 Apr 2012 20:53:35 -0000 1.93 +++ www/linux-firefox/Makefile 1 Jun 2012 03:22:11 -0000 @@ -6,19 +6,22 @@ # PORTNAME= firefox -PORTVERSION= 10.0.4 +DISTVERSION= 15.0a1 PORTEPOCH= 1 CATEGORIES= www -MASTER_SITE_SUBDIR?= firefox/releases/${PORTVERSION}esr/linux-i686/en-US -DISTNAME= ${PORTNAME}-${DISTVERSION}esr +MASTER_SITE_SUBDIR?= firefox/nightly/latest-mozilla-central +DISTNAME= ${PORTNAME}-${DISTVERSION}.en-US.linux-i686 MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla +NO_CHECKSUM= # different each day USE_LDCONFIG= yes USE_BZIP2= yes USE_LINUX_APPS= dbusglib dbuslibs alsalib +PREFS_FILE= ${WRKSRC}/defaults/preferences/channel-prefs.js + .include "${.CURDIR}/../linux-seamonkey/Makefile.common" .include Index: www/linux-firefox/pkg-plist =================================================================== RCS file: /a/.csup/ports/www/linux-firefox/pkg-plist,v retrieving revision 1.15 diff -u -p -r1.15 pkg-plist --- www/linux-firefox/pkg-plist 31 Jan 2012 21:34:12 -0000 1.15 +++ www/linux-firefox/pkg-plist 1 Jun 2012 03:19:15 -0000 @@ -15,14 +15,12 @@ lib/%%APP_NAME%%/components/libnkgnomevf lib/%%APP_NAME%%/crashreporter lib/%%APP_NAME%%/crashreporter-override.ini lib/%%APP_NAME%%/crashreporter.ini -lib/%%APP_NAME%%/defaults/pref/browser-prefs.js -lib/%%APP_NAME%%/defaults/pref/channel-prefs.js +lib/%%APP_NAME%%/defaults/preferences/channel-prefs.js lib/%%APP_NAME%%/dependentlibs.list lib/%%APP_NAME%%/dictionaries/en-US.aff lib/%%APP_NAME%%/dictionaries/en-US.dic lib/%%APP_NAME%%/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/icon.png lib/%%APP_NAME%%/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf -lib/%%APP_NAME%%/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/preview.png lib/%%APP_NAME%%/firefox lib/%%APP_NAME%%/firefox-bin lib/%%APP_NAME%%/icons/mozicon128.png @@ -59,7 +57,7 @@ lib/%%APP_NAME%%/searchplugins/google.xm lib/%%APP_NAME%%/searchplugins/twitter.xml lib/%%APP_NAME%%/searchplugins/wikipedia.xml lib/%%APP_NAME%%/searchplugins/yahoo.xml -lib/%%APP_NAME%%/update.locale +lib/%%APP_NAME%%/update-settings.ini lib/%%APP_NAME%%/updater lib/%%APP_NAME%%/updater.ini @exec /bin/cp -R %%LOCALBASE%%/lib/npapi/symlinks/%%APP_NAME%%/ %D/lib/%%APP_NAME%%/plugins/ 2>/dev/null || true @@ -74,7 +72,7 @@ lib/%%APP_NAME%%/updater.ini @dirrm lib/%%APP_NAME%%/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd} @dirrm lib/%%APP_NAME%%/extensions @dirrm lib/%%APP_NAME%%/dictionaries -@dirrm lib/%%APP_NAME%%/defaults/pref +@dirrm lib/%%APP_NAME%%/defaults/preferences @dirrm lib/%%APP_NAME%%/defaults @dirrm lib/%%APP_NAME%%/components @dirrm lib/%%APP_NAME%%/chrome/icons/default Index: www/linux-seamonkey/Makefile.common =================================================================== RCS file: /a/.csup/ports/www/linux-seamonkey/Makefile.common,v retrieving revision 1.15 diff -u -p -r1.15 Makefile.common --- www/linux-seamonkey/Makefile.common 12 Dec 2009 14:00:35 -0000 1.15 +++ www/linux-seamonkey/Makefile.common 1 Jun 2012 03:20:01 -0000 @@ -25,7 +25,7 @@ COMMON_DIR= ${.CURDIR}/../../www/linux-s PLIST_SUB+= APP_NAME=${APP_NAME} SUB_LIST+= APP_NAME=${APP_NAME} SUB_FILES= ${APP_NAME}.desktop -PREFS_FILE= ${WRKSRC}/defaults/pref/browser-prefs.js +PREFS_FILE?= ${WRKSRC}/defaults/pref/browser-prefs.js .if defined(PKGNAMESUFFIX) && ${PKGNAMESUFFIX:M*devel*} DESKTOP_SUFFIX?= (Linux, devel) .endif --=-=-=--