mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 20:01:53 +00:00
Read bigger chunks for MPEG ES (the smaller value was for debugging purposes).
This commit is contained in:
parent
fd8de8c292
commit
14c804f541
@ -162,8 +162,8 @@ mpeg_es_reader_c::read(generic_packetizer_c *,
|
|||||||
unsigned char *chunk;
|
unsigned char *chunk;
|
||||||
int num_read;
|
int num_read;
|
||||||
|
|
||||||
chunk = (unsigned char *)safemalloc(6022);
|
chunk = (unsigned char *)safemalloc(20000);
|
||||||
num_read = mm_io->read(chunk, 6022);
|
num_read = mm_io->read(chunk, 20000);
|
||||||
if (num_read <= 0) {
|
if (num_read <= 0) {
|
||||||
safefree(chunk);
|
safefree(chunk);
|
||||||
return FILE_STATUS_DONE;
|
return FILE_STATUS_DONE;
|
||||||
|
Loading…
Reference in New Issue
Block a user