EBML input from S3 support
This commit is contained in:
parent
55be798e46
commit
364441c435
7 changed files with 176 additions and 61 deletions
|
@ -59,7 +59,7 @@ namespace Mist{
|
|||
}
|
||||
}
|
||||
void setInFile(int stdin_val){
|
||||
inFile = fdopen(stdin_val, "r");
|
||||
inFile.open(stdin_val);
|
||||
streamName = opt["sink"].asString();
|
||||
if (!streamName.size()){streamName = opt["source"].asString();}
|
||||
Util::streamVariables(streamName, opt["source"].asString());
|
||||
|
|
|
@ -443,7 +443,7 @@ namespace Mist{
|
|||
}
|
||||
|
||||
void EncodeInputEBML::setInFile(int stdin_val){
|
||||
inFile = fdopen(stdin_val, "r");
|
||||
inFile.open(stdin_val);
|
||||
streamName = opt["sink"].asString();
|
||||
if (!streamName.size()){streamName = opt["source"].asString();}
|
||||
Util::streamVariables(streamName, opt["source"].asString());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue