Difference between revisions of "Hacker Guide/Demux"

From VideoLAN Wiki
Jump to navigation Jump to search
m (+{{Back to|Hacker Guide}})
 
(22 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{Back to|Hacker Guide}}
 
== Description  ==
 
== Description  ==
  
The modules of ''''demux'''' capability are designed to handle the different "file" formats. They usually come after the access in the modules chain.
+
The modules of ''''demux'''' capability are designed to handle the different "file" formats, like [[AVI]] or [[MKV]]. They usually come after the [[{{#rel2abs:../Access}}|Access]] module in the modules chain, and create the different tracks, that are sent to the decoders.
  
The '''demuxer''' modules are working on the stream that is provided by the core input to them.
+
The '''demuxer''' modules are working on the ''input stream'' that is provided by the core input to them. It splits the input stream into the different tracks (called ''elementary streams'').
  
Technically, the demuxers are '''pulling data''' from the stream; data is not pushed by the access to the demux.
+
Technically, the demuxers are '''pulling data''' from the stream; data is not pushed by the access to the demux.  
  
 
Examples of demuxers are [[ASF|WMV/ASF]], [[Ogg]] or [[Mkv]].
 
Examples of demuxers are [[ASF|WMV/ASF]], [[Ogg]] or [[Mkv]].
Line 11: Line 12:
 
== Write an demuxer module  ==
 
== Write an demuxer module  ==
  
To write an demuxer module, read the [[Documentation:Hacker's Guide/Module Writers Guide|introduction to module writing]].  
+
To write an demuxer module, start by reading the [[{{#rel2abs:../How To Write a Module}}|introduction to module writing]].  
  
 
Then, you should specify your module of being of demux type:  
 
Then, you should specify your module of being of demux type:  
  
  set_capability( "demux", 60 )
+
  set_capability( "demux", 60 )
  set_category( CAT_INPUT )                                                                                                                                                                                
+
  set_category( CAT_INPUT )
 
  set_subcategory( SUBCAT_INPUT_DEMUX )
 
  set_subcategory( SUBCAT_INPUT_DEMUX )
 
  
 
== Functions to implement  ==
 
== Functions to implement  ==
Line 24: Line 24:
 
After implementing Open() and Close() functions, you will need to implement a few majors features that will be implemented by your functions.  
 
After implementing Open() and Close() functions, you will need to implement a few majors features that will be implemented by your functions.  
  
As you can see {{VLCSourceFile|name=include/vlc_demux.h}}, you should define:  
+
As you can see {{VLCSourceFile|include/vlc_demux.h}}, you should define:
 +
 
 +
*Demux, as in pf_demux
 +
*Control, as in pf_control
 +
 
 +
After implementing those functions, you should assign them to the corresponding pf_ function.<br>
 +
 
 +
=== Demux  ===
 +
 
 +
''Prototype'':  
  
*Demux, as in pf_demux
+
  int (*pf_demux)  ( demux_t * );
*Control, as in pf_control
 
  
 +
Demux function is quite easy, it pulls data from '''s*''' the pointer to the stream_t.
  
After implementing those functions, you should assign them to the corresponding pf_ function.
+
''Return'':
  
 +
It should return 0 for EOF, something positive when success and something negative when fail to demux.
  
== Control  ==
+
 
 +
=== Control  ===
  
 
''Prototype'':  
 
''Prototype'':  
Line 41: Line 52:
 
Control function is quite easy, the input core will query the module using this function with:  
 
Control function is quite easy, the input core will query the module using this function with:  
  
*A pointer to the module structure.
+
*A pointer to the module structure.  
 
*An '''i_query''' parameter that can be of several type. We will cover afterward the most important on.  
 
*An '''i_query''' parameter that can be of several type. We will cover afterward the most important on.  
 
*A list of arguments, that depends on the '''i_query''' type.
 
*A list of arguments, that depends on the '''i_query''' type.
 
  
 
''Return'':  
 
''Return'':  
Line 50: Line 60:
 
If the query has succeeded, it should return VLC_SUCCESS. Else it should return VLC_EGENERIC (''fail'').  
 
If the query has succeeded, it should return VLC_SUCCESS. Else it should return VLC_EGENERIC (''fail'').  
  
=== Control Query types  ===
+
==== Control Query types  ====
  
See {{VLCSourceFile|name=include/vlc_demux.h}}
+
See {{VLCSourceFile|include/vlc_demux.h}}<br>
  
 +
== Useful primitives and types  ==
  
== Demux  ==
+
When implementing a demux, you will need to work on a '''stream''' (''stream_t''), but also to create and control '''tracks''' (ES) (''es_out_id_t'').
  
''Prototype'':
+
''stream_t *'' is the input (multiplexed) byte stream.<br />
 +
''es_out_id_t *'' are the elementary streams, to hand to the decoder.
  
  int (*pf_demux) ( demux_t * );
+
=== Tracks / ES manipulation ===
  
Demux function is quite easy, it pulls data from '''s*''' the pointer to the stream_t.
+
Tracks in VLC are named '''ES''', as ''Elementary Streams''  
  
 +
You will probably need
  
''Return'':
+
*es_out_Add
 
+
*es_out_Send
It should return 0 for EOF, something positive when success and something negative when fail to demux.
+
*es_out_Control
 
 
  
== Useful primitives ==
+
See {{VLCSourceFile|include/vlc_es_out.h}} and {{VLCSourceFile|include/vlc_es.h}}
  
When implementing a demux, you will need to work on a stream, but also to create and control '''tracks''' (ES).
+
=== Stream manipulation  ===
  
=== Tracks ===
+
Stream manipulation can be done with a few functions
Tracks in VLC are named '''ES''', as ''Elementary Streams''
+
*stream_Read
 +
*stream_Peek
 +
*stream_Control
 +
*stream_ReadLine
 +
*stream_Block
  
You will probably need
+
See {{VLCSourceFile|include/vlc_stream.h}} for more information
* es_out_Add
 
* es_out_Send
 
* es_out_Control
 
See {{VLCSourceFile|name=include/vlc_es_out.h}} and {{VLCSourceFile|name=include/vlc_es.h}}
 
  
{{Documentation}}{{Container}}
+
{{Hacker_Guide}}
[[Category:Coding]]
 

Latest revision as of 06:37, 17 April 2019

← Back to Hacker Guide

Description

The modules of 'demux' capability are designed to handle the different "file" formats, like AVI or MKV. They usually come after the Access module in the modules chain, and create the different tracks, that are sent to the decoders.

The demuxer modules are working on the input stream that is provided by the core input to them. It splits the input stream into the different tracks (called elementary streams).

Technically, the demuxers are pulling data from the stream; data is not pushed by the access to the demux.

Examples of demuxers are WMV/ASF, Ogg or Mkv.

Write an demuxer module

To write an demuxer module, start by reading the introduction to module writing.

Then, you should specify your module of being of demux type:

set_capability( "demux", 60 )
set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_DEMUX )

Functions to implement

After implementing Open() and Close() functions, you will need to implement a few majors features that will be implemented by your functions.

As you can see include/vlc_demux.h, you should define:

  • Demux, as in pf_demux
  • Control, as in pf_control

After implementing those functions, you should assign them to the corresponding pf_ function.

Demux

Prototype:

 int (*pf_demux)  ( demux_t * ); 

Demux function is quite easy, it pulls data from s* the pointer to the stream_t.

Return:

It should return 0 for EOF, something positive when success and something negative when fail to demux.


Control

Prototype:

int         (*pf_control)( access_t *, int i_query, va_list args);

Control function is quite easy, the input core will query the module using this function with:

  • A pointer to the module structure.
  • An i_query parameter that can be of several type. We will cover afterward the most important on.
  • A list of arguments, that depends on the i_query type.

Return:

If the query has succeeded, it should return VLC_SUCCESS. Else it should return VLC_EGENERIC (fail).

Control Query types

See include/vlc_demux.h

Useful primitives and types

When implementing a demux, you will need to work on a stream (stream_t), but also to create and control tracks (ES) (es_out_id_t).

stream_t * is the input (multiplexed) byte stream.
es_out_id_t * are the elementary streams, to hand to the decoder.

Tracks / ES manipulation

Tracks in VLC are named ES, as Elementary Streams

You will probably need

  • es_out_Add
  • es_out_Send
  • es_out_Control

See include/vlc_es_out.h and include/vlc_es.h

Stream manipulation

Stream manipulation can be done with a few functions

  • stream_Read
  • stream_Peek
  • stream_Control
  • stream_ReadLine
  • stream_Block

See include/vlc_stream.h for more information

This page is part of official VLC media player Documentation (User GuideStreaming HowToHacker GuideModules)
Please read the Documentation Editing Guidelines before you edit the documentation
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.