From 46db105bd544c720a56b579666f46842bc2196e8 Mon Sep 17 00:00:00 2001 From: BPanther Date: Sat, 19 Jul 2025 09:44:52 +0200 Subject: [PATCH] unused variable removed Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/0773678f49374624b7cf2ad0cfa7bb0a03b9cf47 Author: BPanther Date: 2025-07-19 (Sat, 19 Jul 2025) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libarmbox/playback_libeplayer3.cpp | 5 ----- libarmbox/playback_libeplayer3.h | 1 - 2 files changed, 6 deletions(-) diff --git a/libarmbox/playback_libeplayer3.cpp b/libarmbox/playback_libeplayer3.cpp index d89e9af..9314cdd 100644 --- a/libarmbox/playback_libeplayer3.cpp +++ b/libarmbox/playback_libeplayer3.cpp @@ -129,7 +129,6 @@ bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, in { bool ret = false; bool isHTTP = false; - no_probe = false; hal_info("%s - filename=%s vpid=%u vtype=%d apid=%u ac3=%d\n", __func__, filename, vpid, vtype, apid, ac3); @@ -144,9 +143,6 @@ bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, in file = "file://"; file += filename; - if ((file.find(":31339/id=") != std::string::npos) || (file.find(":17999/1:") != std::string::npos) || (file.find(":10000") != std::string::npos) || (file.find(":8001/") != std::string::npos)) // for LocalTV and Entertain-TV streaming - no_probe = true; - if (file.substr(0, 7) == "file://") { if (file.substr(file.length() - 3) == ".ts") @@ -154,7 +150,6 @@ bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, in fn_ts = file.substr(7); fn_xml = file.substr(7, file.length() - 9); fn_xml += "xml"; - no_probe = true; } } else diff --git a/libarmbox/playback_libeplayer3.h b/libarmbox/playback_libeplayer3.h index a4762c2..83bfa14 100644 --- a/libarmbox/playback_libeplayer3.h +++ b/libarmbox/playback_libeplayer3.h @@ -21,7 +21,6 @@ class cPlayback static OpenThreads::Mutex mutex; bool enabled; bool playing, first; - bool no_probe; bool got_vpts_ts; int nPlaybackSpeed; int mAudioStream;