@@ -19,8 +19,8 @@ std::ostream& operator<<( std::ostream& flux, const Properties& properties )
19
19
flux << std::left;
20
20
flux << separator << " Wrapper " << separator << std::endl;
21
21
22
- std::map<std::string, std::string> dataMap = properties.getDataMap ();
23
- for ( std::map<std::string, std::string> ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
22
+ MetadatasMap dataMap = properties.getDataMap ();
23
+ for ( MetadatasMap ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
24
24
{
25
25
flux << std::setw ( keyWidth ) << it->first << " : " << it->second << std::endl;
26
26
}
@@ -33,8 +33,8 @@ std::ostream& operator<<( std::ostream& flux, const VideoProperties& videoProper
33
33
flux << std::left;
34
34
flux << separator << " Video stream " << separator << std::endl;
35
35
36
- std::map<std::string, std::string> dataMap = videoProperties.getDataMap ();
37
- for ( std::map<std::string, std::string> ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
36
+ MetadatasMap dataMap = videoProperties.getDataMap ();
37
+ for ( MetadatasMap ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
38
38
{
39
39
flux << std::setw ( keyWidth ) << it->first << " : " << it->second << std::endl;
40
40
}
@@ -47,8 +47,8 @@ std::ostream& operator<<( std::ostream& flux, const AudioProperties& audioProper
47
47
flux << std::left;
48
48
flux << separator << " Audio stream " << separator << std::endl;
49
49
50
- std::map<std::string, std::string> dataMap = audioProperties.getDataMap ();
51
- for ( std::map<std::string, std::string> ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
50
+ MetadatasMap dataMap = audioProperties.getDataMap ();
51
+ for ( MetadatasMap ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
52
52
{
53
53
flux << std::setw ( keyWidth ) << it->first << " : " << it->second << std::endl;
54
54
}
@@ -60,8 +60,8 @@ std::ostream& operator<<( std::ostream& flux, const DataProperties& dataProperti
60
60
{
61
61
flux << separator << " Data stream " << separator << std::endl;
62
62
63
- std::map<std::string, std::string> dataMap = dataProperties.getDataMap ();
64
- for ( std::map<std::string, std::string> ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
63
+ MetadatasMap dataMap = dataProperties.getDataMap ();
64
+ for ( MetadatasMap ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
65
65
{
66
66
flux << std::setw ( keyWidth ) << it->first << " : " << it->second << std::endl;
67
67
}
@@ -73,8 +73,8 @@ std::ostream& operator<<( std::ostream& flux, const SubtitleProperties& subtitle
73
73
{
74
74
flux << separator << " Subtitle stream " << separator << std::endl;
75
75
76
- std::map<std::string, std::string> dataMap = subtitleProperties.getDataMap ();
77
- for ( std::map<std::string, std::string> ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
76
+ MetadatasMap dataMap = subtitleProperties.getDataMap ();
77
+ for ( MetadatasMap ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
78
78
{
79
79
flux << std::setw ( keyWidth ) << it->first << " : " << it->second << std::endl;
80
80
}
@@ -86,8 +86,8 @@ std::ostream& operator<<( std::ostream& flux, const AttachementProperties& attac
86
86
{
87
87
flux << separator << " Attachement stream " << separator << std::endl;
88
88
89
- std::map<std::string, std::string> dataMap = attachementProperties.getDataMap ();
90
- for ( std::map<std::string, std::string> ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
89
+ MetadatasMap dataMap = attachementProperties.getDataMap ();
90
+ for ( MetadatasMap ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
91
91
{
92
92
flux << std::setw ( keyWidth ) << it->first << " : " << it->second << std::endl;
93
93
}
@@ -99,8 +99,8 @@ std::ostream& operator<<( std::ostream& flux, const UnknownProperties& unknownPr
99
99
{
100
100
flux << separator << " Unknown stream " << separator << std::endl;
101
101
102
- std::map<std::string, std::string> dataMap = unknownProperties.getDataMap ();
103
- for ( std::map<std::string, std::string> ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
102
+ MetadatasMap dataMap = unknownProperties.getDataMap ();
103
+ for ( MetadatasMap ::iterator it = dataMap.begin (); it != dataMap.end (); ++it )
104
104
{
105
105
flux << std::setw ( keyWidth ) << it->first << " : " << it->second << std::endl;
106
106
}
0 commit comments