Closed
Bug 99080
Opened 24 years ago
Closed 23 years ago
using plugger, makes the temp file huge
Categories
(Core Graveyard :: Plug-ins, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: gjones5555, Assigned: srgchrpv)
References
()
Details
Attachments
(1 file)
|
675.73 KB,
audio/wav
|
Details |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3+) Gecko/20010907
BuildID: 2001090712
file takes a long time to load
the temp file looks like this after the device runs out of disk space
-rwxrwxr-x 1 gjones gjones 812904448 Sep 10 12:12
.mozilla/gjones/mvbdo1he.slt/plugtmp/card_shuffle.wav
The original file looks like this
-r--r--r-- 1 gjones gjones 691952 Aug 16 1999 MyMusic/card_shuffle.wav
I am using the verision of plugger from the RedHat compiled from
the redhat SRPM: plugger-3.3-4.src.rpm
The file plays only the first second or two of sound and then
goes into a loop.
File plays flawlessly in NetScape 4.78 using the same plugger.
Reproducible: Always
Steps to Reproduce:
1.just open the file after installing plugger
2.
3.
Actual Results: device runs out of space and only the first one or two seconds
of sound plays.
Expected Results: Play the file like NetScape 4.78
Having the same problem with the RealPlayer plugin
Comment 1•24 years ago
|
||
Could you attach the wav to this bug please?
| Reporter | ||
Comment 3•24 years ago
|
||
card_shuffle.wav is part of gnome-audio-extra-1.4.0 package which should be
available at ftp.gnome.org.
| Reporter | ||
Comment 4•24 years ago
|
||
| Reporter | ||
Comment 5•24 years ago
|
||
This problem only seems to occur when playing a file from the local drive.
Plugger works fine from the test files from plugger's home pages.
Comment 6•24 years ago
|
||
Marking these all WORKSFORME sorry about lack of response but were very
overloaded here. Only reopen the bug if you can reproduce with the following steps:
1) Download the latest nightly (or 0.9.6 which should be out RSN)
2) Create a new profile
3) test the bug again
If it still occurs go ahead and reopen the bug. Again sorry about no response
were quite overloaded here and understaffed.
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → WORKSFORME
| Assignee | ||
Comment 8•24 years ago
|
||
this ia a regression from the patch (attachment id 38998) checked in to fix bug
54689
here is why we are looping:
RCS file: /cvsroot/mozilla/modules/plugin/base/src/nsPluginHostImpl.cpp,v
retrieving revision 1.325
diff -u -r1.325 nsPluginHostImpl.cpp
--- nsPluginHostImpl.cpp 2001/11/07 03:02:47 1.325
+++ nsPluginHostImpl.cpp 2001/11/14 01:09:03
@@ -2106,7 +2106,7 @@
// if we are caching this to disk ourselves, lets write the bytes out.
nsCOMPtr<nsIOutputStream> outStream;
mPluginStreamInfo->GetLocalCachedFileStream(getter_AddRefs(outStream));
- while (outStream && amountWrote <= amountRead && NS_SUCCEEDED(rv))
+ while (outStream && amountWrote < amountRead && NS_SUCCEEDED(rv))
rv = outStream->Write(buffer, amountRead, &amountWrote);
delete [] buffer;
}
cc: peterlubczynski@netscape.com
Comment 9•24 years ago
|
||
Ahh...much better. r=peterl You should probably get dougt to sr= as I think
he's the orriginal author.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 10•24 years ago
|
||
d'oh!
sr=me
| Assignee | ||
Comment 11•24 years ago
|
||
on the trunk
/cvsroot/mozilla/modules/plugin/base/src/nsPluginHostImpl.cpp,v
new revision: 1.326; previous revision: 1.325
Assignee: av → serge
Comment 13•24 years ago
|
||
oops...should have mentioned that this fix is in XP code and would probably
effect other plugins...
Comment 14•23 years ago
|
||
is this linux only?
| Assignee | ||
Comment 15•23 years ago
|
||
this is in XP code, but we do have only linux test case
Comment 16•23 years ago
|
||
please check the fix into 0.9.4 branch
| Assignee | ||
Comment 17•23 years ago
|
||
nsPluginHostImpl.cpp checked into MOZILLA_0_9_4_BRANCH
new revision: 1.288.2.8; previous revision: 1.288.2.7
| Assignee | ||
Comment 19•23 years ago
|
||
resolve as fixied
Status: NEW → RESOLVED
Closed: 24 years ago → 23 years ago
Resolution: --- → FIXED
Comment 20•23 years ago
|
||
this works now both on branch and trunk, linux.verified. Reporter, pls double
check if u can, thx!
Status: RESOLVED → VERIFIED
| Reporter | ||
Comment 21•23 years ago
|
||
It works fine on the build I made from the source drop of 12/10/2001.
Updated•23 years ago
|
Keywords: verified0.9.4
| Assignee | ||
Comment 22•23 years ago
|
||
*** Bug 102123 has been marked as a duplicate of this bug. ***
Keywords: fixed0.9.4
Updated•3 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•