Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dvblast
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
dvblast
Commits
b373c984
Commit
b373c984
authored
Jul 09, 2010
by
Marian Ďurkovič
Committed by
Christophe Massiot
Jul 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unify kernel buffer size to 4 kB and introduce patch for cx88-based DVB cards.
parent
4527143a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
extra/kernel-patches/01-cx23885.patch
extra/kernel-patches/01-cx23885.patch
+1
-1
extra/kernel-patches/02-saa7146.patch
extra/kernel-patches/02-saa7146.patch
+1
-1
extra/kernel-patches/03-cx88.patch
extra/kernel-patches/03-cx88.patch
+11
-0
extra/kernel-patches/README
extra/kernel-patches/README
+2
-2
No files found.
extra/kernel-patches/01-cx23885.patch
View file @
b373c984
...
...
@@ -5,7 +5,7 @@
port->ts_packet_size = 188 * 4;
- port->ts_packet_count = 32;
+ port->ts_packet_count =
4
;
+ port->ts_packet_count =
5
;
*size = port->ts_packet_size * port->ts_packet_count;
*count = 32;
extra/kernel-patches/02-saa7146.patch
View file @
b373c984
...
...
@@ -5,7 +5,7 @@
}
saa7146_write(dev, PROT_ADDR3, budget->buffer_size);
- saa7146_write(dev, BASE_PAGE3, budget->pt.dma | ME1 | 0x90);
+ saa7146_write(dev, BASE_PAGE3, budget->pt.dma | ME1 | 0x
6
0);
+ saa7146_write(dev, BASE_PAGE3, budget->pt.dma | ME1 | 0x
5
0);
saa7146_write(dev, PITCH3, budget->buffer_width);
saa7146_write(dev, NUM_LINE_BYTE3,
extra/kernel-patches/03-cx88.patch
0 → 100644
View file @
b373c984
--- linux/drivers/media/video/cx88/cx88-dvb.c.orig 2010-02-22 14:58:43.000000000 +0100
+++ linux/drivers/media/video/cx88/cx88-dvb.c 2010-07-09 11:15:12.000000000 +0200
@@ -80,7 +80,7 @@
struct cx8802_dev *dev = q->priv_data;
dev->ts_packet_size = 188 * 4;
- dev->ts_packet_count = 32;
+ dev->ts_packet_count = 5;
*size = dev->ts_packet_size * dev->ts_packet_count;
*count = 32;
extra/kernel-patches/README
View file @
b373c984
...
...
@@ -5,5 +5,5 @@ These kernel patches are designed to dramatically improve the latency
between the DVB card and DVBlast's output, especially on low symbol rate
transponders, at the expense of a slightly higher CPU consumption.
Basically they decrease the size of the transmission buffers from the card
,
so that TS packets are handled more frequently.
Basically they decrease the size of the transmission buffers from the card
to 4 kB,
so that TS packets are handled more frequently.
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