Skip to content

Commit aeaea6a

Browse files
Merge pull request #35 from cchampet/dev_Print
Print: add getMetadatasToDisplay
2 parents b2d5109 + 08e53ac commit aeaea6a

File tree

3 files changed

+178
-100
lines changed

3 files changed

+178
-100
lines changed

app/avMeta/avMeta.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ int main( int argc, char** argv )
1717
input.analyse( p, avtranscoder::InputFile::eAnalyseLevelFull );
1818

1919
// a simply metadata display
20-
displayMetadatas( input );
20+
std::cout << input << std::endl;
2121
}

app/avplay/AvReader.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class AvReader : public Reader
9898

9999
void printMetadatas()
100100
{
101-
displayMetadatas( m_inputFile );
101+
std::cout << m_inputFile << std::endl;
102102
}
103103

104104
private:

0 commit comments

Comments
 (0)