diff options
author | Christophe Thommeret <hftom@free.fr> | 2009-02-18 15:08:06 +0000 |
---|---|---|
committer | Christophe Thommeret <hftom@free.fr> | 2009-02-18 15:08:06 +0000 |
commit | cd46d8edb40c79520e7a0908a3e9727433479199 (patch) | |
tree | e7640169db8eaf2a481c585ba52358920ee28550 /src | |
parent | 4086f48eeff9d5b4989bf2e43f6255002faa77be (diff) | |
download | xine-lib-cd46d8edb40c79520e7a0908a3e9727433479199.tar.gz xine-lib-cd46d8edb40c79520e7a0908a3e9727433479199.tar.bz2 |
Minor fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_vc1es.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/demuxers/demux_vc1es.c b/src/demuxers/demux_vc1es.c index 8f5e2b4bd..820993609 100644 --- a/src/demuxers/demux_vc1es.c +++ b/src/demuxers/demux_vc1es.c @@ -173,7 +173,6 @@ static int demux_vc1_es_next_ap( demux_vc1_es_t *this ) static int demux_vc1_es_send_chunk( demux_plugin_t *this_gen ) { demux_vc1_es_t *this = (demux_vc1_es_t *) this_gen; - //printf ("demux_vc1_es_send_chunk\n"); if ( this->mode==MODE_SMP ) { if (!demux_vc1_es_next_smp(this)) @@ -362,8 +361,8 @@ static demux_plugin_t *open_plugin( demux_class_t *class_gen, xine_stream_t *str xine_fast_memcpy( this->private+8, scratch+12, 4 ); /* height */ xine_fast_memcpy( this->private+4, scratch+16, 4 ); /* width */ xine_fast_memcpy( this->private+40, scratch+8, 4 ); /* sequence header */ + this->video_step = _X_LE_32( scratch+32 ); } - this->video_step = _X_LE_32( scratch+32 ); this->stream = stream; this->input = input; |