Skip to content

Commit

Permalink
NFSFile: Chank ChunkSize to 1MB
Browse files Browse the repository at this point in the history
  • Loading branch information
fritsch committed Feb 4, 2015
1 parent ee2bae8 commit 79d7edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/filesystem/NFSFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ namespace XFILE
//implement iocontrol for seek_possible for preventing the stat in File class for
//getting this info ...
virtual int IoControl(EIoControl request, void* param){ if(request == IOCTRL_SEEK_POSSIBLE) return 1;return -1;};
virtual int GetChunkSize() {return 1;}
virtual int GetChunkSize() {return 1024*1024;}

virtual bool OpenForWrite(const CURL& url, bool bOverWrite = false);
virtual bool Delete(const CURL& url);
Expand Down

0 comments on commit 79d7edd

Please sign in to comment.