mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
fix char conversion
Origin commit data
------------------
Branch: master
Commit: 944c27e51f
Author: TangoCash <eric@loxat.de>
Date: 2016-03-26 (Sat, 26 Mar 2016)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -350,7 +350,7 @@ void cPlayback::Close(void)
|
|||||||
// start
|
// start
|
||||||
bool cPlayback::Start(std::string filename, std::string headers)
|
bool cPlayback::Start(std::string filename, std::string headers)
|
||||||
{
|
{
|
||||||
Start(filename.c_str(),0,0,0,0,0);
|
Start((char *) filename.c_str(),0,0,0,0,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cPlayback::Start(char *filename, int /*vpid*/, int /*vtype*/, int /*apid*/, int /*ac3*/, int /*duration*/)
|
bool cPlayback::Start(char *filename, int /*vpid*/, int /*vtype*/, int /*apid*/, int /*ac3*/, int /*duration*/)
|
||||||
|
@@ -54,7 +54,7 @@ void cPlayback::Close(void)
|
|||||||
|
|
||||||
bool cPlayback::Start(std::string filename, std::string headers)
|
bool cPlayback::Start(std::string filename, std::string headers)
|
||||||
{
|
{
|
||||||
Start(filename.c_str(),0,0,0,0,0);
|
Start((char*) filename.c_str(),0,0,0,0,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, int)
|
bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, int)
|
||||||
|
Reference in New Issue
Block a user