AdapterIO: Remove default arguments in ctor
This commit is contained in:
@@ -38,9 +38,8 @@ private:
|
|||||||
class BAdapterIO : public BMediaIO {
|
class BAdapterIO : public BMediaIO {
|
||||||
public:
|
public:
|
||||||
BAdapterIO(
|
BAdapterIO(
|
||||||
int32 flags = B_MEDIA_STREAMING
|
int32 flags,
|
||||||
| B_MEDIA_SEEKABLE,
|
bigtime_t timeout);
|
||||||
bigtime_t timeout = B_INFINITE_TIMEOUT);
|
|
||||||
virtual ~BAdapterIO();
|
virtual ~BAdapterIO();
|
||||||
|
|
||||||
virtual void GetFlags(int32* flags) const;
|
virtual void GetFlags(int32* flags) const;
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ private:
|
|||||||
|
|
||||||
HTTPMediaIO::HTTPMediaIO(BUrl url)
|
HTTPMediaIO::HTTPMediaIO(BUrl url)
|
||||||
:
|
:
|
||||||
BAdapterIO(HTTP_TIMEOUT),
|
BAdapterIO(B_MEDIA_STREAMING | B_MEDIA_SEEKABLE, HTTP_TIMEOUT),
|
||||||
fContext(NULL),
|
fContext(NULL),
|
||||||
fReq(NULL),
|
fReq(NULL),
|
||||||
fListener(NULL),
|
fListener(NULL),
|
||||||
|
|||||||
Reference in New Issue
Block a user