ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Linux-DVB/DVB.pm
(Generate patch)

Comparing Linux-DVB/DVB.pm (file contents):
Revision 1.12 by root, Wed May 24 21:00:09 2006 UTC vs.
Revision 1.14 by root, Wed May 24 21:04:20 2006 UTC

19 19
20Noteworthy differences to the C API: unions and sub-structs are usually 20Noteworthy differences to the C API: unions and sub-structs are usually
21translated into flat perl hashes, i.e C<struct.u.qam.symbol_rate> 21translated into flat perl hashes, i.e C<struct.u.qam.symbol_rate>
22becomes C<< $struct->{symbol_rate} >>. 22becomes C<< $struct->{symbol_rate} >>.
23 23
24Noteworthy limitations of this module include: no way to set the 24Noteworthy limitations of this module include: No interface to the video,
25frequency or diseqc. No interface to the video, audio and net devices.
26If you need this functionality bug the author. 25audio and net devices. If you need this functionality bug the author.
27 26
28=cut 27=cut
29 28
30package Linux::DVB; 29package Linux::DVB;
31 30
187 186
188Sends a 22KHz tone burst of type SEC_MINI_A (0) or SEC_MINI_B (1). 187Sends a 22KHz tone burst of type SEC_MINI_A (0) or SEC_MINI_B (1).
189 188
190=item $ok = $fe->diseqc_cmd ($command) 189=item $ok = $fe->diseqc_cmd ($command)
191 190
192Sends a DiSEqC command. 191Sends a DiSEqC command ($command is 3 to 6 bytes of binary data).
193 192
194=item $reply = $fe->diseqc_reply ($timeout) 193=item $reply = $fe->diseqc_reply ($timeout)
195 194
196Receives a reply to a DiSEqC 2.0 command (or undef). 195Receives a reply to a DiSEqC 2.0 command and returns it as a binary octet
196string 0..4 bytes in length (or C<undef> in the error case).
197 197
198=cut 198=cut
199 199
200package Linux::DVB::Demux; 200package Linux::DVB::Demux;
201 201

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines