mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
libarmbox/libmipsbox: some manual code nicenings
Origin commit data
------------------
Branch: master
Commit: 6591fe32fc
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-11-07 (Sun, 07 Nov 2021)
Origin message was:
------------------
- libarmbox/libmipsbox: some manual code nicenings
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -198,8 +198,8 @@ static bool _open(cDemux *thiz, int num, int &fd, int &last_source, DMX_CHANNEL_
|
||||
hal_info_z("%s %s: %m\n", __FUNCTION__, devname(0, devnum));
|
||||
return false;
|
||||
}
|
||||
hal_debug_z("%s #%d pes_type: %s(%d), uBufferSize: %d fd: %d\n", __func__,
|
||||
num, DMX_T[dmx_type], dmx_type, buffersize, fd);
|
||||
hal_debug_z("%s #%d pes_type: %s(%d), uBufferSize: %d fd: %d\n",
|
||||
__func__, num, DMX_T[dmx_type], dmx_type, buffersize, fd);
|
||||
|
||||
/* this would actually need locking, but the worst that weill happen is, that
|
||||
* we'll DMX_SET_SOURCE twice per device, so don't bother... */
|
||||
@@ -465,8 +465,8 @@ bool cDemux::sectionFilter(unsigned short _pid, const unsigned char *const filte
|
||||
if (timeout == 0 && negmask == NULL)
|
||||
s_flt.timeout = to;
|
||||
|
||||
hal_debug("%s #%d pid:0x%04hx fd:%d type:%s len:%d to:%d flags:%x flt[0]:%02x\n", __func__, num,
|
||||
pid, fd, DMX_T[dmx_type], len, s_flt.timeout, s_flt.flags, s_flt.filter.filter[0]);
|
||||
hal_debug("%s #%d pid:0x%04hx fd:%d type:%s len:%d to:%d flags:%x flt[0]:%02x\n",
|
||||
__func__, num, pid, fd, DMX_T[dmx_type], len, s_flt.timeout, s_flt.flags, s_flt.filter.filter[0]);
|
||||
|
||||
if (debuglevel == 2)
|
||||
{
|
||||
@@ -474,10 +474,10 @@ bool cDemux::sectionFilter(unsigned short _pid, const unsigned char *const filte
|
||||
for (int i = 0; i < len; i++) fprintf(stderr, "%02hhx ", s_flt.filter.filter[i]);
|
||||
fprintf(stderr, "\n");
|
||||
fprintf(stderr, "mask: ");
|
||||
for (int i = 0; i < len; i++) fprintf(stderr, "%02hhx ", s_flt.filter.mask [i]);
|
||||
for (int i = 0; i < len; i++) fprintf(stderr, "%02hhx ", s_flt.filter.mask[i]);
|
||||
fprintf(stderr, "\n");
|
||||
fprintf(stderr, "mode: ");
|
||||
for (int i = 0; i < len; i++) fprintf(stderr, "%02hhx ", s_flt.filter.mode [i]);
|
||||
for (int i = 0; i < len; i++) fprintf(stderr, "%02hhx ", s_flt.filter.mode[i]);
|
||||
fprintf(stderr, "\n");
|
||||
}
|
||||
|
||||
|
@@ -56,7 +56,7 @@
|
||||
int _r; \
|
||||
if (fd >= 0) { \
|
||||
if ((_r = ::cmd(fd, args)) < 0) \
|
||||
hal_info(#cmd"(fd, "#args")\n"); \
|
||||
hal_info(#cmd"(fd, "#args")\n");\
|
||||
else \
|
||||
hal_debug(#cmd"(fd, "#args")\n");\
|
||||
} \
|
||||
@@ -689,9 +689,7 @@ void hdmi_cec::Receive(int what)
|
||||
case CEC_OPCODE_DEVICE_VENDOR_ID:
|
||||
case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
|
||||
{
|
||||
uint64_t iVendorId = ((uint64_t)rxmessage.data[1] << 16) +
|
||||
((uint64_t)rxmessage.data[2] << 8) +
|
||||
(uint64_t)rxmessage.data[3];
|
||||
uint64_t iVendorId = ((uint64_t)rxmessage.data[1] << 16) + ((uint64_t)rxmessage.data[2] << 8) + (uint64_t)rxmessage.data[3];
|
||||
hal_info(GREEN "[CEC] decoded message '%s' (%s)\n" NORMAL, ToString((cec_opcode)rxmessage.opcode), ToString((cec_vendor_id)iVendorId));
|
||||
break;
|
||||
}
|
||||
|
@@ -236,8 +236,8 @@ bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, in
|
||||
free(TrackList);
|
||||
}
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
//Chapters
|
||||
if (player && player->manager && player->manager->chapter)
|
||||
{
|
||||
@@ -582,13 +582,13 @@ void cPlayback::FindAllPids(uint16_t *apids, unsigned short *ac3flags, uint16_t
|
||||
else if (!strncmp("A_AAC", TrackList[i + 1], 5))
|
||||
ac3flags[j] = 5;
|
||||
else if (!strncmp("A_PCM", TrackList[i + 1], 5))
|
||||
ac3flags[j] = 0; //todo
|
||||
ac3flags[j] = 0; // todo
|
||||
else if (!strncmp("A_VORBIS", TrackList[i + 1], 8))
|
||||
ac3flags[j] = 0; //todo
|
||||
ac3flags[j] = 0; // todo
|
||||
else if (!strncmp("A_FLAC", TrackList[i + 1], 6))
|
||||
ac3flags[j] = 0; //todo
|
||||
ac3flags[j] = 0; // todo
|
||||
else
|
||||
ac3flags[j] = 0; //todo
|
||||
ac3flags[j] = 0; // todo
|
||||
std::string _language = "";
|
||||
_language += std::string(_lang);
|
||||
if (_language.compare("und") == 0)
|
||||
@@ -652,7 +652,8 @@ void cPlayback::FindAllTeletextsubtitlePids(int */*pids*/, unsigned int *numpids
|
||||
//int max_numpids = *numpids;
|
||||
*numpids = 0;
|
||||
|
||||
/* if (player && player->manager && player->manager->teletext)
|
||||
/*
|
||||
if (player && player->manager && player->manager->teletext)
|
||||
{
|
||||
char **TrackList = NULL;
|
||||
player->manager->teletext->Command(player, MANAGER_LIST, &TrackList);
|
||||
@@ -681,7 +682,8 @@ void cPlayback::FindAllTeletextsubtitlePids(int */*pids*/, unsigned int *numpids
|
||||
free(TrackList);
|
||||
*numpids = j;
|
||||
}
|
||||
} */
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
int cPlayback::GetTeletextPid(void)
|
||||
@@ -689,7 +691,8 @@ int cPlayback::GetTeletextPid(void)
|
||||
hal_info("%s\n", __func__);
|
||||
int pid = -1;
|
||||
|
||||
/* if (player && player->manager && player->manager->teletext)
|
||||
/*
|
||||
if (player && player->manager && player->manager->teletext)
|
||||
{
|
||||
char **TrackList = NULL;
|
||||
player->manager->teletext->Command(player, MANAGER_LIST, &TrackList);
|
||||
@@ -700,7 +703,7 @@ int cPlayback::GetTeletextPid(void)
|
||||
for (i = 0; TrackList[i] != NULL; i += 2)
|
||||
{
|
||||
int type = 0;
|
||||
printf("\t%s - %s\n", TrackList[i], TrackList[i+1]);
|
||||
printf("\t%s - %s\n", TrackList[i], TrackList[i + 1]);
|
||||
if (pid < 0)
|
||||
{
|
||||
if (2 != sscanf(TrackList[i], "%*d %d %*s %d %*d %*d", &pid, &type))
|
||||
@@ -713,7 +716,8 @@ int cPlayback::GetTeletextPid(void)
|
||||
}
|
||||
free(TrackList);
|
||||
}
|
||||
} */
|
||||
}
|
||||
*/
|
||||
|
||||
printf("teletext pid id %d (0x%x)\n", pid, pid);
|
||||
return pid;
|
||||
|
@@ -286,8 +286,8 @@ void cRecord::RecordThread()
|
||||
if (toread > readsize)
|
||||
toread = readsize;
|
||||
ssize_t s = dmx->Read(buf + buf_pos, toread, 50);
|
||||
hal_debug("%s: buf_pos %6d s %6d / %6d\n", __func__,
|
||||
buf_pos, (int)s, bufsize - buf_pos);
|
||||
hal_debug("%s: buf_pos %6d s %6d / %6d\n",
|
||||
__func__, buf_pos, (int)s, bufsize - buf_pos);
|
||||
if (s < 0)
|
||||
{
|
||||
if (errno != EAGAIN && (errno != EOVERFLOW || !overflow))
|
||||
|
@@ -189,8 +189,8 @@ static const char *vid_modes[] =
|
||||
"1080p25", // VIDEO_STD_1080P25
|
||||
"1080p50", // VIDEO_STD_1080P50
|
||||
"1080p60", // VIDEO_STD_1080P60
|
||||
"1080p2397", // VIDEO_STD_1080P2397
|
||||
"1080p2997", // VIDEO_STD_1080P2997
|
||||
"1080p2397",// VIDEO_STD_1080P2397
|
||||
"1080p2997",// VIDEO_STD_1080P2997
|
||||
"2160p24", // VIDEO_STD_2160P24
|
||||
"2160p25", // VIDEO_STD_2160P25
|
||||
"2160p30", // VIDEO_STD_2160P30
|
||||
|
Reference in New Issue
Block a user