@@ -111,42 +111,42 @@ std::ostream& operator<<( std::ostream& flux, const UnknownProperties& unknownPr
111
111
std::ostream& operator <<( std::ostream& flux, const InputFile& input )
112
112
{
113
113
// wrapper
114
- flux << input.getProperties () << std::endl ;
114
+ flux << input.getProperties ();
115
115
116
116
// video streams
117
117
for ( size_t videoStreamIndex = 0 ; videoStreamIndex < input.getProperties ().videoStreams .size (); ++videoStreamIndex )
118
118
{
119
- flux << input.getProperties ().videoStreams .at ( videoStreamIndex ) << std::endl ;
119
+ flux << input.getProperties ().videoStreams .at ( videoStreamIndex );
120
120
}
121
121
122
122
// audio streams
123
123
for ( size_t audioStreamIndex = 0 ; audioStreamIndex < input.getProperties ().audioStreams .size (); ++audioStreamIndex )
124
124
{
125
- flux << input.getProperties ().audioStreams .at ( audioStreamIndex ) << std::endl ;
125
+ flux << input.getProperties ().audioStreams .at ( audioStreamIndex );
126
126
}
127
127
128
128
// data streams
129
129
for ( size_t dataStreamIndex = 0 ; dataStreamIndex < input.getProperties ().dataStreams .size (); ++dataStreamIndex )
130
130
{
131
- flux << input.getProperties ().dataStreams .at ( dataStreamIndex ) << std::endl ;
131
+ flux << input.getProperties ().dataStreams .at ( dataStreamIndex );
132
132
}
133
133
134
134
// subtitle streams
135
135
for ( size_t subtitleStreamIndex = 0 ; subtitleStreamIndex < input.getProperties ().subtitleStreams .size (); ++subtitleStreamIndex )
136
136
{
137
- flux << input.getProperties ().subtitleStreams .at ( subtitleStreamIndex ) << std::endl ;
137
+ flux << input.getProperties ().subtitleStreams .at ( subtitleStreamIndex );
138
138
}
139
139
140
140
// attachement streams
141
141
for ( size_t attachementStreamIndex = 0 ; attachementStreamIndex < input.getProperties ().attachementStreams .size (); ++attachementStreamIndex )
142
142
{
143
- flux << input.getProperties ().attachementStreams .at ( attachementStreamIndex ) << std::endl ;
143
+ flux << input.getProperties ().attachementStreams .at ( attachementStreamIndex );
144
144
}
145
145
146
146
// unknown streams
147
147
for ( size_t unknownStreamIndex = 0 ; unknownStreamIndex < input.getProperties ().unknownStreams .size (); ++unknownStreamIndex )
148
148
{
149
- flux << input.getProperties ().unknownStreams .at ( unknownStreamIndex ) << std::endl ;
149
+ flux << input.getProperties ().unknownStreams .at ( unknownStreamIndex );
150
150
}
151
151
152
152
return flux;
0 commit comments