input_stream: rename struct to InputStream

This commit is contained in:
Max Kellermann
2013-10-23 22:08:59 +02:00
parent c4d4011c63
commit 93deb84499
77 changed files with 530 additions and 522 deletions

View File

@@ -46,7 +46,7 @@ tag_file_scan(const char *path_fs,
if (plugin == nullptr)
return false;
struct input_stream *is = nullptr;
InputStream *is = nullptr;
Mutex mutex;
Cond cond;
@@ -58,11 +58,11 @@ tag_file_scan(const char *path_fs,
/* fall back to stream tag */
if (plugin->scan_stream != nullptr) {
/* open the input_stream (if not already
/* open the InputStream (if not already
open) */
if (is == nullptr)
is = input_stream::Open(path_fs, mutex, cond,
IgnoreError());
is = InputStream::Open(path_fs, mutex, cond,
IgnoreError());
/* now try the stream_tag() method */
if (is != nullptr) {