From 948f0b016e262e99aee663272ff9ac2ee674933e Mon Sep 17 00:00:00 2001 From: redblue-pkt Date: Thu, 4 Oct 2018 03:45:40 +0200 Subject: [PATCH] add codec info Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/e43c85a3410cfaa2be925a355f26cd67050f14de Author: redblue-pkt Date: 2018-10-04 (Thu, 04 Oct 2018) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libarmbox/playback_libeplayer3.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libarmbox/playback_libeplayer3.cpp b/libarmbox/playback_libeplayer3.cpp index 8a3cf8f..b0bc5ed 100644 --- a/libarmbox/playback_libeplayer3.cpp +++ b/libarmbox/playback_libeplayer3.cpp @@ -553,7 +553,13 @@ void cPlayback::FindAllPids(int *apids, unsigned int *ac3flags, unsigned int *nu ac3flags[j] = 0; //todo else ac3flags[j] = 0; //todo - language[j] = std::string(_lang); + std::string _language = ""; + _language += std::string(_lang); + _language += " - "; + _language += "("; + _language += TrackList[i + 1]; + _language += ")"; + language[j] = _language; } } free(TrackList[i]);