Closed
Bug 1419249
Opened 7 years ago
Closed 7 years ago
[Fennec][HLS] Audio only playback will not work correctly after seek.
Categories
(Firefox for Android Graveyard :: Audio/Video, defect, P2)
Firefox for Android Graveyard
Audio/Video
Tracking
(firefox59 verified)
RESOLVED
FIXED
Firefox 59
Tracking | Status | |
---|---|---|
firefox59 | --- | verified |
People
(Reporter: kikuo, Assigned: JamesCheng)
References
()
Details
Attachments
(1 file)
https://www2.nhk.or.jp/gogaku/mygogaku/streaming/?spid=00000904
For this audio only content, MFR keeps calling internal seek.
Reporter | ||
Updated•7 years ago
|
Summary: [Fennec][HLS] Audio only playback will work correctly after seek. → [Fennec][HLS] Audio only playback will work not correctly after seek.
Reporter | ||
Updated•7 years ago
|
Summary: [Fennec][HLS] Audio only playback will work not correctly after seek. → [Fennec][HLS] Audio only playback will not work correctly after seek.
Assignee | ||
Comment 1•7 years ago
|
||
We calculated the wrong start time with Audio-only content...
It makes us set the start time to Long.MIN_VALUE in this case.
I should fix it.
Assignee: nobody → jacheng
Comment hidden (mozreview-request) |
Assignee | ||
Comment 3•7 years ago
|
||
Hi John,
Does this bug related to webcompat?
I search "nhk" and I cannot get any opened bug from
https://github.com/webcompat/web-bugs/issues
BTW,
Should this bug be prioritized?
Thank you.
Flags: needinfo?(jolin)
Assignee | ||
Updated•7 years ago
|
Attachment #8930847 -
Flags: review?(kikuo)
Updated•7 years ago
|
Priority: -- → P2
Comment 4•7 years ago
|
||
(In reply to James Cheng[:JamesCheng] from comment #3)
> Hi John,
>
> Does this bug related to webcompat?
>
> I search "nhk" and I cannot get any opened bug from
>
> https://github.com/webcompat/web-bugs/issues
>
> BTW,
> Should this bug be prioritized?
>
> Thank you.
See https://github.com/webcompat/web-bugs/issues/13586. It's closed since this one is filed.
Flags: needinfo?(jolin)
Updated•7 years ago
|
Has STR: --- → yes
Reporter | ||
Comment 5•7 years ago
|
||
mozreview-review |
Comment on attachment 8930847 [details]
Bug 1419249 - Fix the wrong logic calculating starttime of the first sample.
https://reviewboard.mozilla.org/r/201950/#review207362
::: mobile/android/geckoview/src/main/java/org/mozilla/gecko/media/GeckoHlsPlayer.java:727
(Diff revision 1)
> }
> if (DEBUG) {
> Log.d(LOGTAG, "seeking : " + positionUs / 1000 +
> " (ms); startTime : " + startTime / 1000 + " (ms)");
> }
> - assertTrue(startTime != Long.MAX_VALUE);
> + assertTrue(startTime != Long.MAX_VALUE || startTime != Long.MIN_VALUE);
Shouldn't it be
assertTrue(startTime != Long.MAX_VALUE && startTime != Long.MIN_VALUE) ?
Attachment #8930847 -
Flags: review?(kikuo) → review+
Comment hidden (mozreview-request) |
Pushed by jacheng@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/4e75818a3342
Fix the wrong logic calculating starttime of the first sample. r=kikuo
Comment 8•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox59:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 59
Comment 9•7 years ago
|
||
Verified as fixed on Nightly 59 (2017-12-08).
Device: HTC Desire 820 (Android 6.0.1)
Updated•4 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•