1 /*****************************************************************************
2 * dirac.c : Dirac Video demuxer
3 *****************************************************************************
4 * Copyright (C) 2002-2008 the VideoLAN team
7 * Authors: David Flynn <davidf@rd.bbc.co.uk>
8 * Based on vc1.c by: Laurent Aimar <fenrir@via.ecp.fr>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_demux.h>
36 #include <vlc_codec.h>
38 #define DEMUX_CFG_PREFIX "dirac-"
40 #define DEMUX_DTSOFFSET "dts-offset"
41 #define DEMUX_DTSOFFSET_TEXT N_("Value to adjust dts by")
42 #define DEMUX_DTSOFFSET_LONGTEXT DEMUX_DTSOFFSET_TEXT
44 /*****************************************************************************
46 *****************************************************************************/
47 static int Open ( vlc_object_t * );
48 static void Close( vlc_object_t * );
51 set_shortname( "Dirac");
52 set_category( CAT_INPUT );
53 set_subcategory( SUBCAT_INPUT_DEMUX );
54 set_description( N_("Dirac video demuxer" ) );
55 set_capability( "demux", 50 );
56 add_integer( DEMUX_CFG_PREFIX DEMUX_DTSOFFSET, 0, NULL,
57 DEMUX_DTSOFFSET_TEXT, DEMUX_DTSOFFSET_LONGTEXT, false )
58 set_callbacks( Open, Close );
61 /*****************************************************************************
63 *****************************************************************************/
68 mtime_t i_pts_offset_lowtide;
72 /* demuxer states, do not reorder (++ is used) */
73 DIRAC_DEMUX_DISCONT = 0, /* signal a discontinuity to packetizer */
74 DIRAC_DEMUX_FIRST, /* provide an origin timestamp for the packetizer */
75 DIRAC_DEMUX_STEADY, /* normal operation */
78 decoder_t *p_packetizer;
81 static int Demux( demux_t * );
82 static int Control( demux_t *, int, va_list );
84 #define DIRAC_PACKET_SIZE 4096
86 /*****************************************************************************
87 * Open: initializes demux structures
88 *****************************************************************************/
89 static int Open( vlc_object_t * p_this )
91 demux_t *p_demux = (demux_t*)p_this;
93 const uint8_t *p_peek;
96 if( stream_Peek( p_demux->s, &p_peek, 5 ) < 5 ) return VLC_EGENERIC;
98 if( p_peek[0] != 'B' || p_peek[1] != 'B' ||
99 p_peek[2] != 'C' || p_peek[3] != 'D') /* start of ParseInfo */
101 if( !p_demux->b_force ) return VLC_EGENERIC;
103 msg_Err( p_demux, "This doesn't look like a Dirac stream (incorrect parsecode)" );
104 msg_Warn( p_demux, "continuing anyway" );
107 p_demux->pf_demux = Demux;
108 p_demux->pf_control = Control;
109 p_demux->p_sys = p_sys = calloc( 1, sizeof( demux_sys_t ) );
110 if( !p_sys ) return VLC_ENOMEM;
112 p_sys->i_pts_offset_lowtide = INT64_MAX;
113 p_sys->i_state = DIRAC_DEMUX_FIRST;
115 p_sys->i_dtsoffset = var_CreateGetInteger( p_demux, DEMUX_CFG_PREFIX DEMUX_DTSOFFSET );
117 /* Load the packetizer */
118 es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_DIRAC );
119 p_sys->p_packetizer = demux_PacketizerNew( p_demux, &fmt, "dirac" );
120 if( !p_sys->p_packetizer )
129 /*****************************************************************************
130 * Close: frees unused data
131 *****************************************************************************/
132 static void Close( vlc_object_t * p_this )
134 demux_t *p_demux = (demux_t*)p_this;
135 demux_sys_t *p_sys = p_demux->p_sys;
137 demux_PacketizerDestroy( p_sys->p_packetizer );
139 if( p_sys->i_pts_offset_lowtide < INT64_MAX &&
140 p_sys->i_pts_offset_lowtide > 0 )
142 msg_Warn( p_demux, "For all packets seen, pts-dts (%"PRId64") could be reduced to 0",
143 p_sys->i_pts_offset_lowtide );
148 /*****************************************************************************
149 * Demux: reads and demuxes data packets
150 *****************************************************************************
151 * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
152 *****************************************************************************/
153 static int Demux( demux_t *p_demux)
155 demux_sys_t *p_sys = p_demux->p_sys;
156 block_t *p_block_in, *p_block_out;
158 if( p_sys->i_state == DIRAC_DEMUX_DISCONT )
161 p_block_in = block_Alloc( 128 );
164 p_block_in->i_flags = BLOCK_FLAG_DISCONTINUITY | BLOCK_FLAG_CORRUPTED;
169 p_block_in = stream_Block( p_demux->s, DIRAC_PACKET_SIZE );
174 if ( p_sys->i_state == DIRAC_DEMUX_FIRST)
177 /* by default, timestamps are invalid.
178 * Except when we need an anchor point */
179 p_block_in->i_dts = VLC_TS_0;
183 while( (p_block_out = p_sys->p_packetizer->pf_packetize( p_sys->p_packetizer, &p_block_in )) )
187 block_t *p_next = p_block_out->p_next;
188 p_block_out->p_next = NULL;
190 if( p_sys->p_es == NULL )
191 p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_out);
193 p_block_out->i_dts += p_sys->i_dtsoffset;
194 p_sys->i_dts = p_block_out->i_dts;
196 /* track low watermark for pts_offset -- can be used to show
197 * when it is too large */
198 mtime_t i_delay = p_block_out->i_pts - p_block_out->i_dts;
199 if( p_sys->i_pts_offset_lowtide > i_delay )
201 p_sys->i_pts_offset_lowtide = i_delay;
204 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
205 es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
207 p_block_out = p_next;
213 /*****************************************************************************
215 *****************************************************************************/
216 static int Control( demux_t *p_demux, int i_query, va_list args )
218 demux_sys_t *p_sys = p_demux->p_sys;
219 if( DEMUX_GET_TIME == i_query )
221 int64_t *pi64 = (int64_t*)va_arg( args, int64_t * );
222 *pi64 = p_sys->i_dts;
225 else if( DEMUX_GET_FPS == i_query )
227 if( !p_sys->p_packetizer->fmt_out.video.i_frame_rate )
231 double *pd = (double*)va_arg( args, double * );
232 *pd = (float) p_sys->p_packetizer->fmt_out.video.i_frame_rate
233 / p_sys->p_packetizer->fmt_out.video.i_frame_rate_base;
238 if( DEMUX_SET_POSITION == i_query || DEMUX_SET_TIME == i_query )
240 p_sys->i_state = DIRAC_DEMUX_DISCONT;
242 return demux_vaControlHelper( p_demux->s, 0, -1, 0, 1, i_query, args );