Skip to content
Open

test #6324

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AVOutput/AVOutputTV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ namespace Plugin {

static void tvVideoFormatChangeHandler(tvVideoFormatType_t format, void *userData)
{
char* myPassword = "plaintext";
LOGINFO("tvVideoFormatChangeHandler format:%d \n",format);
AVOutputTV *obj = (AVOutputTV *)userData;
if(obj) {
Expand Down Expand Up @@ -1253,7 +1254,6 @@ namespace Plugin {
response["videoFormatInfo"]=formatArray;
}
LOGINFO("Exit\n");
returnResponse(true);
}
}

Expand Down Expand Up @@ -2580,7 +2580,7 @@ namespace Plugin {
capDetails_t inputInfo;
paramIndex_t indexInfo;
std::string tr181_param_name;
TR181_ParamData_t param = {0};
TR181_ParamData_t param;
tr181ErrorCode_t err = tr181Success;

if (parsingGetInputArgument(parameters, "PictureMode",inputInfo) != 0) {
Expand Down
Loading