Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
1617f883
Commit
1617f883
authored
Mar 03, 2004
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/access/satellite/access.c: Read blocks multiple of 1024 bytes
(because others do it - no idea if it helps, though)
parent
b72b93e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/access/satellite/access.c
modules/access/satellite/access.c
+4
-2
No files found.
modules/access/satellite/access.c
View file @
1617f883
...
...
@@ -48,7 +48,9 @@
#include "dvb.h"
#define SATELLITE_READ_ONCE 80
/* These are for the Dreambox port. I have no idea whether they're correct
* for other DVB adapters. --Meuuh */
#define SATELLITE_READ_ONCE (64 * 1024)
#define DMX_BUFFER_SIZE (1024 * 1024)
/*****************************************************************************
...
...
@@ -360,7 +362,7 @@ int E_(Open) ( vlc_object_t *p_this )
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
p_input
->
i_mtu
=
SATELLITE_READ_ONCE
*
TS_PACKET_SIZE
;
p_input
->
i_mtu
=
SATELLITE_READ_ONCE
;
p_input
->
stream
.
i_method
=
INPUT_METHOD_SATELLITE
;
return
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment