Skip to content

Commit 48fccc1

Browse files
committed
VPLAY-11225 [Tech Debt] mediafailed event enhancements ( minor code etc )
Reason for change: Added minor code for MediaFailedEvent Risks: Low Test Procedure: Refer jira ticket Priority: P1 Signed-off-by: lashmintha <[email protected]>
1 parent ab7a914 commit 48fccc1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

AAMP-UVE-API.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2430,7 +2430,7 @@ When a player instance is no longer needed, recommend to call explicit release()
24302430
| AAMP_TUNE_INIT_FAILED_PLAYLIST_VIDEO_DNLD_ERROR | 10 | 1005 | AAMP: init failed (unable to download video playlist) |
24312431
| AAMP_TUNE_INIT_FAILED_PLAYLIST_AUDIO_DNLD_ERROR | 10 | 1006 | AAMP: init failed (unable to download audio playlist) |
24322432
| AAMP_TUNE_INIT_FAILED_TRACK_SYNC_ERROR | 10 | 1007 | AAMP: init failed (unsynchronized tracks) |
2433-
| AAMP_TUNE_CONTENT_NOT_FOUND | 20 | 201 | AAMP: Resource was not found at the URL(HTTP 404) |
2433+
| AAMP_TUNE_CONTENT_NOT_FOUND | 20 | 2001 | AAMP: Resource was not found at the URL(HTTP 404) |
24342434
| AAMP_TUNE_MANIFEST_REQ_FAILED | 30 | 3001 | AAMP: Manifest Download failed |
24352435
| AAMP_TUNE_FRAGMENT_DOWNLOAD_FAILURE | 30 | 3002 | AAMP: fragment download failures |
24362436
| AAMP_TUNE_INIT_FRAGMENT_DOWNLOAD_FAILURE | 30 | 3003 | AAMP: init fragment download failed |
@@ -2464,8 +2464,8 @@ When a player instance is no longer needed, recommend to call explicit release()
24642464
| AMP_TUNE_GST_PIPELINE_ERROR | 80 | 8001 | AAMP: Error from gstreamer pipeline |
24652465
| AAMP_TUNE_FAILED_PTS_ERROR | 80 | 8002 | AAMP: Playback failed due to PTS error |
24662466

2467-
| AAMP_TUNE_PLAYBACK_STALLED | 7600 | 76001 | AAMP: Playback was stalled due to lack of new fragments |
2468-
| AAMP_TUNE_FAILURE_UNKNOWN | 100 | 10001 | AAMP: Unknown Failure |
2467+
| AAMP_TUNE_PLAYBACK_STALLED | 7600 | 0 | AAMP: Playback was stalled due to lack of new fragments |
2468+
| AAMP_TUNE_FAILURE_UNKNOWN | 100 | 0 | AAMP: Unknown Failure |
24692469

24702470
---
24712471

priv_aamp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ static TuneFailureMap tuneFailureMap[] =
238238
{AAMP_TUNE_FAILED_PTS_ERROR, 80, 8002, "AAMP: Playback failed due to PTS error"},
239239

240240
//Playback failure
241-
{AAMP_TUNE_PLAYBACK_STALLED, 7600, 76001, "AAMP: Playback was stalled due to lack of new fragments"},
241+
{AAMP_TUNE_PLAYBACK_STALLED, 7600, 0, "AAMP: Playback was stalled due to lack of new fragments"},
242242

243243
//Unknown failure
244-
{AAMP_TUNE_FAILURE_UNKNOWN, 100,10001, "AAMP: Unknown Failure"}
244+
{AAMP_TUNE_FAILURE_UNKNOWN, 100, 0, "AAMP: Unknown Failure"}
245245
};
246246

247247
static const std::pair<std::string , std::string> gCDAIErrorDetails[] = {

0 commit comments

Comments
 (0)