Fix DCHECK failure for UDP streams

Change-Id: I45816058bcf01b9db26a1fd1a88131303ff1623e
This commit is contained in:
KongQun Yang 2015-02-05 10:11:44 -08:00
parent 26a4969ea2
commit daac38db98
1 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@
#include "packager/media/formats/wvm/wvm_media_parser.h"
namespace {
const size_t kInitBufSize = 0x4000; // 16KB, sufficient to determine the
const size_t kInitBufSize = 0x10000; // 65KB, sufficient to determine the
// container and likely all init data.
const size_t kBufSize = 0x200000; // 2MB
}