Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
3439df81
Commit
3439df81
authored
Nov 24, 2003
by
Laurent Aimar
Browse files
* all: removed decoder_fifo_t.
parent
057d2ab9
Changes
33
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
3439df81
...
...
@@ -321,8 +321,7 @@ SOURCES_libvlc_common = \
src/input/stream.c
\
src/input/demux.c
\
src/input/subtitles.c
\
src/input/input_ext-plugins.c
\
src/input/input_ext-dec.c
\
src/input/input_ext-plugins.c
\
src/input/input_ext-intf.c
\
src/input/input_dec.c
\
src/input/input_programs.c
\
...
...
include/input_ext-dec.h
View file @
3439df81
...
...
@@ -2,7 +2,7 @@
* input_ext-dec.h: structures exported to the VideoLAN decoders
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: input_ext-dec.h,v 1.8
2
2003/11/
06 16:36:41 nitrox
Exp $
* $Id: input_ext-dec.h,v 1.8
3
2003/11/
24 00:39:00 fenrir
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Kaempf <maxx@via.ecp.fr>
...
...
@@ -80,455 +80,9 @@ struct pes_packet_t
unsigned
int
i_nb_data
;
/* Number of data packets in the chained list */
};
/*****************************************************************************
* decoder_fifo_t
*****************************************************************************
* This rotative FIFO contains PES packets that are to be decoded.
*****************************************************************************/
struct
decoder_fifo_t
{
VLC_COMMON_MEMBERS
/* Thread structures */
vlc_mutex_t
data_lock
;
/* fifo data lock */
vlc_cond_t
data_wait
;
/* fifo data conditional variable */
/* Data */
pes_packet_t
*
p_first
;
pes_packet_t
**
pp_last
;
int
i_depth
;
/* number of PES packets in the stack */
/* Communication interface between input and decoders */
input_buffers_t
*
p_packets_mgt
;
/* packets management services data */
/* Standard pointers given to the decoders as a toolbox. */
uint16_t
i_id
;
vlc_fourcc_t
i_fourcc
;
es_sys_t
*
p_demux_data
;
stream_ctrl_t
*
p_stream_ctrl
;
sout_instance_t
*
p_sout
;
void
*
p_waveformatex
;
void
*
p_bitmapinfoheader
;
void
*
p_spuinfo
;
decoder_t
*
p_dec
;
};
/*****************************************************************************
* bit_fifo_t : bit fifo descriptor
*****************************************************************************
* This type describes a bit fifo used to store bits while working with the
* input stream at the bit level.
*****************************************************************************/
typedef
uint32_t
WORD_TYPE
;
typedef
struct
bit_fifo_t
{
/* This unsigned integer allows us to work at the bit level. This buffer
* can contain 32 bits, and the used space can be found on the MSb's side
* and the available space on the LSb's side. */
WORD_TYPE
buffer
;
/* Number of bits available in the bit buffer */
int
i_available
;
}
bit_fifo_t
;
/*****************************************************************************
* bit_stream_t : bit stream descriptor
*****************************************************************************
* This type, based on a PES stream, includes all the structures needed to
* handle the input stream like a bit stream.
*****************************************************************************/
struct
bit_stream_t
{
/*
* Bit structures
*/
bit_fifo_t
fifo
;
/*
* Input structures
*/
/* The decoder fifo contains the data of the PES stream */
decoder_fifo_t
*
p_decoder_fifo
;
/* Callback to the decoder used when changing data packets ; set
* to NULL if your decoder doesn't need it. */
void
(
*
pf_bitstream_callback
)(
bit_stream_t
*
,
vlc_bool_t
);
/* Optional argument to the callback */
void
*
p_callback_arg
;
/*
* PTS retrieval
*/
mtime_t
i_pts
,
i_dts
;
byte_t
*
p_pts_validity
;
/*
* Byte structures
*/
/* Current PES packet (extracted from the PES stream) */
pes_packet_t
*
p_pes
;
/* Current data packet (in the current PES packet) */
data_packet_t
*
p_data
;
/* Pointer to the next byte that is to be read (in the current packet) */
byte_t
*
p_byte
;
/* Pointer to the last byte that is to be read (in the current packet */
byte_t
*
p_end
;
/* Temporary buffer in case we're not aligned when changing data packets */
WORD_TYPE
i_showbits_buffer
;
data_packet_t
showbits_data
;
};
/*****************************************************************************
* Inline functions used by the decoders to read bit_stream_t
*****************************************************************************/
/*
* DISCUSSION : How to use the bit_stream structures
*
* sizeof(WORD_TYPE) (usually 32) bits are read at the same time, thus
* minimizing the number of p_byte changes.
* Bits are read via GetBits() or ShowBits.
*
* XXX : Be aware that if, in the forthcoming functions, i_bits > 24,
* the data have to be already aligned on an 8-bit boundary, or wrong
* results will be returned. Use RealignBits() if unsure.
*/
#if (WORD_TYPE == uint32_t)
# define WORD_AT U32_AT
# define WORD_SIGNED int32_t
#elif (WORD_TYPE == uint64_t)
# define WORD_AT U64_AT
# define WORD_SIGNED int64_t
#else
# error Unsupported WORD_TYPE
#endif
/*****************************************************************************
* Prototypes from input_ext-dec.c
*****************************************************************************/
VLC_EXPORT
(
void
,
input_ExtractPES
,
(
decoder_fifo_t
*
,
pes_packet_t
**
)
);
VLC_EXPORT
(
void
,
input_DeletePES
,
(
input_buffers_t
*
,
pes_packet_t
*
)
);
VLC_EXPORT
(
int
,
InitBitstream
,
(
bit_stream_t
*
,
decoder_fifo_t
*
,
void
(
*
)(
bit_stream_t
*
,
vlc_bool_t
),
void
*
p_callback_arg
)
);
VLC_EXPORT
(
vlc_bool_t
,
NextDataPacket
,
(
decoder_fifo_t
*
,
bit_stream_t
*
)
);
VLC_EXPORT
(
void
,
BitstreamNextDataPacket
,
(
bit_stream_t
*
)
);
VLC_EXPORT
(
uint32_t
,
UnalignedShowBits
,
(
bit_stream_t
*
,
unsigned
int
)
);
VLC_EXPORT
(
void
,
UnalignedRemoveBits
,
(
bit_stream_t
*
)
);
VLC_EXPORT
(
uint32_t
,
UnalignedGetBits
,
(
bit_stream_t
*
,
unsigned
int
)
);
VLC_EXPORT
(
void
,
CloseBitstream
,
(
bit_stream_t
*
)
);
VLC_EXPORT
(
void
,
CurrentPTS
,
(
bit_stream_t
*
,
mtime_t
*
,
mtime_t
*
)
);
VLC_EXPORT
(
void
,
NextPTS
,
(
bit_stream_t
*
,
mtime_t
*
,
mtime_t
*
)
);
/*****************************************************************************
* AlignWord : fill in the bit buffer so that the byte pointer be aligned
* on a word boundary (XXX: there must be at least sizeof(WORD_TYPE) - 1
* empty bytes in the bit buffer)
*****************************************************************************/
static
inline
void
AlignWord
(
bit_stream_t
*
p_bit_stream
)
{
while
(
(
ptrdiff_t
)
p_bit_stream
->
p_byte
&
(
sizeof
(
WORD_TYPE
)
-
1
)
)
{
if
(
p_bit_stream
->
p_byte
<
p_bit_stream
->
p_end
)
{
p_bit_stream
->
fifo
.
buffer
|=
*
(
p_bit_stream
->
p_byte
++
)
<<
(
8
*
sizeof
(
WORD_TYPE
)
-
8
-
p_bit_stream
->
fifo
.
i_available
);
p_bit_stream
->
fifo
.
i_available
+=
8
;
}
else
{
BitstreamNextDataPacket
(
p_bit_stream
);
p_bit_stream
->
fifo
.
buffer
|=
*
(
p_bit_stream
->
p_byte
++
)
<<
(
8
*
sizeof
(
WORD_TYPE
)
-
8
-
p_bit_stream
->
fifo
.
i_available
);
p_bit_stream
->
fifo
.
i_available
+=
8
;
}
}
}
/*****************************************************************************
* ShowBits : return i_bits bits from the bit stream
*****************************************************************************/
static
inline
uint32_t
ShowBits
(
bit_stream_t
*
p_bit_stream
,
unsigned
int
i_bits
)
{
if
(
(
unsigned
int
)
p_bit_stream
->
fifo
.
i_available
>=
i_bits
)
{
return
(
p_bit_stream
->
fifo
.
buffer
>>
(
8
*
sizeof
(
WORD_TYPE
)
-
i_bits
)
);
}
if
(
p_bit_stream
->
p_byte
<=
p_bit_stream
->
p_end
-
sizeof
(
WORD_TYPE
)
)
{
return
(
(
p_bit_stream
->
fifo
.
buffer
|
(
WORD_AT
(
p_bit_stream
->
p_byte
)
>>
p_bit_stream
->
fifo
.
i_available
))
>>
(
8
*
sizeof
(
WORD_TYPE
)
-
i_bits
)
);
}
return
(
UnalignedShowBits
(
p_bit_stream
,
i_bits
)
);
}
/*****************************************************************************
* ShowSignedBits : return i_bits bits from the bit stream, using signed
* arithmetic
*****************************************************************************/
static
inline
int32_t
ShowSignedBits
(
bit_stream_t
*
p_bit_stream
,
unsigned
int
i_bits
)
{
if
(
(
unsigned
int
)
p_bit_stream
->
fifo
.
i_available
>=
i_bits
)
{
return
(
(
WORD_SIGNED
)
p_bit_stream
->
fifo
.
buffer
>>
(
8
*
sizeof
(
WORD_TYPE
)
-
i_bits
)
);
}
/* You can probably do something a little faster, but now I'm tired. */
return
(
(
WORD_SIGNED
)(
ShowBits
(
p_bit_stream
,
i_bits
)
<<
(
32
-
i_bits
))
>>
(
32
-
i_bits
)
);
}
/*****************************************************************************
* RemoveBits : removes i_bits bits from the bit buffer
* XXX: do not use for 32 bits, see RemoveBits32
*****************************************************************************/
static
inline
void
RemoveBits
(
bit_stream_t
*
p_bit_stream
,
unsigned
int
i_bits
)
{
p_bit_stream
->
fifo
.
i_available
-=
i_bits
;
if
(
p_bit_stream
->
fifo
.
i_available
>=
0
)
{
p_bit_stream
->
fifo
.
buffer
<<=
i_bits
;
return
;
}
if
(
p_bit_stream
->
p_byte
<=
p_bit_stream
->
p_end
-
sizeof
(
WORD_TYPE
)
)
{
p_bit_stream
->
fifo
.
buffer
=
WORD_AT
(
p_bit_stream
->
p_byte
)
<<
(
-
p_bit_stream
->
fifo
.
i_available
);
p_bit_stream
->
p_byte
=
(
byte_t
*
)
(
((
WORD_TYPE
*
)
p_bit_stream
->
p_byte
)
+
1
);
p_bit_stream
->
fifo
.
i_available
+=
sizeof
(
WORD_TYPE
)
*
8
;
return
;
}
UnalignedRemoveBits
(
p_bit_stream
);
}
/*****************************************************************************
* RemoveBits32 : removes 32 bits from the bit buffer (and as a side effect,
* refill it)
*****************************************************************************/
#if (WORD_TYPE == uint32_t)
static
inline
void
RemoveBits32
(
bit_stream_t
*
p_bit_stream
)
{
if
(
p_bit_stream
->
p_byte
<=
p_bit_stream
->
p_end
-
sizeof
(
WORD_TYPE
)
)
{
if
(
p_bit_stream
->
fifo
.
i_available
)
{
p_bit_stream
->
fifo
.
buffer
=
WORD_AT
(
p_bit_stream
->
p_byte
)
<<
(
32
-
p_bit_stream
->
fifo
.
i_available
);
p_bit_stream
->
p_byte
=
(
byte_t
*
)
(
((
WORD_TYPE
*
)
p_bit_stream
->
p_byte
)
+
1
);
return
;
}
p_bit_stream
->
p_byte
=
(
byte_t
*
)
(
((
WORD_TYPE
*
)
p_bit_stream
->
p_byte
)
+
1
);
return
;
}
p_bit_stream
->
fifo
.
i_available
-=
32
;
UnalignedRemoveBits
(
p_bit_stream
);
}
#else
# define RemoveBits32( p_bit_stream ) RemoveBits( p_bit_stream, 32 )
#endif
/*****************************************************************************
* GetBits : returns i_bits bits from the bit stream and removes them
* XXX: do not use for 32 bits, see GetBits32
*****************************************************************************/
static
inline
uint32_t
GetBits
(
bit_stream_t
*
p_bit_stream
,
unsigned
int
i_bits
)
{
uint32_t
i_result
;
p_bit_stream
->
fifo
.
i_available
-=
i_bits
;
if
(
p_bit_stream
->
fifo
.
i_available
>=
0
)
{
i_result
=
p_bit_stream
->
fifo
.
buffer
>>
(
8
*
sizeof
(
WORD_TYPE
)
-
i_bits
);
p_bit_stream
->
fifo
.
buffer
<<=
i_bits
;
return
(
i_result
);
}
if
(
p_bit_stream
->
p_byte
<=
p_bit_stream
->
p_end
-
sizeof
(
WORD_TYPE
)
)
{
i_result
=
p_bit_stream
->
fifo
.
buffer
>>
(
8
*
sizeof
(
WORD_TYPE
)
-
i_bits
);
p_bit_stream
->
fifo
.
buffer
=
WORD_AT
(
p_bit_stream
->
p_byte
);
p_bit_stream
->
p_byte
=
(
byte_t
*
)
(
((
WORD_TYPE
*
)
p_bit_stream
->
p_byte
)
+
1
);
i_result
|=
p_bit_stream
->
fifo
.
buffer
>>
(
8
*
sizeof
(
WORD_TYPE
)
+
p_bit_stream
->
fifo
.
i_available
);
p_bit_stream
->
fifo
.
buffer
<<=
(
-
p_bit_stream
->
fifo
.
i_available
);
p_bit_stream
->
fifo
.
i_available
+=
sizeof
(
WORD_TYPE
)
*
8
;
return
(
i_result
);
}
return
UnalignedGetBits
(
p_bit_stream
,
i_bits
);
}
/*****************************************************************************
* GetSignedBits : returns i_bits bits from the bit stream and removes them,
* using signed arithmetic
* XXX: do not use for 32 bits
*****************************************************************************/
static
inline
int32_t
GetSignedBits
(
bit_stream_t
*
p_bit_stream
,
unsigned
int
i_bits
)
{
if
(
(
unsigned
int
)
p_bit_stream
->
fifo
.
i_available
>=
i_bits
)
{
int32_t
i_result
;
p_bit_stream
->
fifo
.
i_available
-=
i_bits
;
i_result
=
(
WORD_SIGNED
)
p_bit_stream
->
fifo
.
buffer
>>
(
8
*
sizeof
(
WORD_TYPE
)
-
i_bits
);
p_bit_stream
->
fifo
.
buffer
<<=
i_bits
;
return
(
i_result
);
}
/* You can probably do something a little faster, but now I'm tired. */
return
(
(
WORD_SIGNED
)(
GetBits
(
p_bit_stream
,
i_bits
)
<<
(
32
-
i_bits
))
>>
(
32
-
i_bits
)
);
}
/*****************************************************************************
* GetBits32 : returns 32 bits from the bit stream and removes them
*****************************************************************************/
#if (WORD_TYPE == uint32_t)
static
inline
uint32_t
GetBits32
(
bit_stream_t
*
p_bit_stream
)
{
uint32_t
i_result
;
if
(
p_bit_stream
->
fifo
.
i_available
==
32
)
{
p_bit_stream
->
fifo
.
i_available
=
0
;
i_result
=
p_bit_stream
->
fifo
.
buffer
;
p_bit_stream
->
fifo
.
buffer
=
0
;
return
(
i_result
);
}
if
(
p_bit_stream
->
p_byte
<=
p_bit_stream
->
p_end
-
sizeof
(
WORD_TYPE
)
)
{
if
(
p_bit_stream
->
fifo
.
i_available
)
{
i_result
=
p_bit_stream
->
fifo
.
buffer
;
p_bit_stream
->
fifo
.
buffer
=
WORD_AT
(
p_bit_stream
->
p_byte
);
p_bit_stream
->
p_byte
=
(
byte_t
*
)
(
((
WORD_TYPE
*
)
p_bit_stream
->
p_byte
)
+
1
);
i_result
|=
p_bit_stream
->
fifo
.
buffer
>>
(
p_bit_stream
->
fifo
.
i_available
);
p_bit_stream
->
fifo
.
buffer
<<=
(
32
-
p_bit_stream
->
fifo
.
i_available
);
return
(
i_result
);
}
i_result
=
WORD_AT
(
p_bit_stream
->
p_byte
);
p_bit_stream
->
p_byte
=
(
byte_t
*
)
(
((
WORD_TYPE
*
)
p_bit_stream
->
p_byte
)
+
1
);
return
(
i_result
);
}
p_bit_stream
->
fifo
.
i_available
-=
32
;
return
UnalignedGetBits
(
p_bit_stream
,
32
);
}
#else
# define GetBits32( p_bit_stream ) GetBits( p_bit_stream, 32 )
#endif
/*****************************************************************************
* RealignBits : realigns the bit buffer on an 8-bit boundary
*****************************************************************************/
static
inline
void
RealignBits
(
bit_stream_t
*
p_bit_stream
)
{
p_bit_stream
->
fifo
.
buffer
<<=
(
p_bit_stream
->
fifo
.
i_available
&
0x7
);
p_bit_stream
->
fifo
.
i_available
&=
~
0x7
;
}
/*****************************************************************************
* GetChunk : reads a large chunk of data
*****************************************************************************
* The position in the stream must be byte-aligned, if unsure call
* RealignBits(). p_buffer must point to a buffer at least as big as i_buf_len
* otherwise your code will crash.
*****************************************************************************/
static
inline
void
GetChunk
(
bit_stream_t
*
p_bit_stream
,
byte_t
*
p_buffer
,
size_t
i_buf_len
)
{
ptrdiff_t
i_available
;
/* We need to take care because i_buf_len may be < 4. */
while
(
p_bit_stream
->
fifo
.
i_available
>
0
&&
i_buf_len
)
{
*
p_buffer
=
p_bit_stream
->
fifo
.
buffer
>>
(
8
*
sizeof
(
WORD_TYPE
)
-
8
);
p_buffer
++
;
i_buf_len
--
;
p_bit_stream
->
fifo
.
buffer
<<=
8
;
p_bit_stream
->
fifo
.
i_available
-=
8
;
}
i_available
=
p_bit_stream
->
p_end
-
p_bit_stream
->
p_byte
;
if
(
i_available
>=
(
ptrdiff_t
)
i_buf_len
)
{
p_bit_stream
->
p_decoder_fifo
->
p_vlc
->
pf_memcpy
(
p_buffer
,
p_bit_stream
->
p_byte
,
i_buf_len
);
p_bit_stream
->
p_byte
+=
i_buf_len
;
}
else
{
do
{
p_bit_stream
->
p_decoder_fifo
->
p_vlc
->
pf_memcpy
(
p_buffer
,
p_bit_stream
->
p_byte
,
i_available
);
p_bit_stream
->
p_byte
=
p_bit_stream
->
p_end
;
p_buffer
+=
i_available
;
i_buf_len
-=
i_available
;
BitstreamNextDataPacket
(
p_bit_stream
);
if
(
p_bit_stream
->
p_decoder_fifo
->
b_die
)
return
;
}
while
(
(
i_available
=
p_bit_stream
->
p_end
-
p_bit_stream
->
p_byte
)
<=
(
ptrdiff_t
)
i_buf_len
);
if
(
i_buf_len
)
{
p_bit_stream
->
p_decoder_fifo
->
p_vlc
->
pf_memcpy
(
p_buffer
,
p_bit_stream
->
p_byte
,
i_buf_len
);
p_bit_stream
->
p_byte
+=
i_buf_len
;
}
}
if
(
p_bit_stream
->
p_byte
<=
p_bit_stream
->
p_end
-
sizeof
(
WORD_TYPE
)
)
{
AlignWord
(
p_bit_stream
);
}
}
/*
* Communication interface between input and decoders
*/
/*****************************************************************************
* Prototypes from input_dec.c
*****************************************************************************/
VLC_EXPORT
(
void
,
DecoderError
,
(
decoder_fifo_t
*
p_fifo
)
);
#endif
/* "input_ext-dec.h" */
include/input_ext-intf.h
View file @
3439df81
...
...
@@ -4,7 +4,7 @@
* control the pace of reading.
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: input_ext-intf.h,v 1.
99
2003/11/2
2 18:04:10 gbazin
Exp $
* $Id: input_ext-intf.h,v 1.
100
2003/11/2
4 00:39:00 fenrir
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -68,10 +68,11 @@ struct es_descriptor_t
/* Decoder information */
es_format_t
fmt
;
decoder_fifo_t
*
p_decoder_fifo
;
void
*
p_waveformatex
;
void
*
p_bitmapinfoheader
;
void
*
p_spuinfo
;
/* Decoder */
decoder_t
*
p_dec
;
count_t
c_packets
;
/* total packets read */
count_t
c_invalid_packets
;
/* invalid packets read */
...
...
include/input_ext-plugins.h
View file @
3439df81
...
...
@@ -3,7 +3,7 @@
* but exported to plug-ins
*****************************************************************************
* Copyright (C) 1999-2002 VideoLAN
* $Id: input_ext-plugins.h,v 1.4
2
2003/
05/05 22:23:31 gbazin
Exp $
* $Id: input_ext-plugins.h,v 1.4
3
2003/
11/24 00:39:00 fenrir
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -55,9 +55,12 @@ VLC_EXPORT( int, input_UnselectES,( input_thread_t *, es_descriptor_t * ) );
/*****************************************************************************
* Prototypes from input_dec.c
*****************************************************************************/
decoder_
fifo_
t
*
input_RunDecoder
(
input_thread_t
*
,
es_descriptor_t
*
);
decoder_t
*
input_RunDecoder
(
input_thread_t
*
,
es_descriptor_t
*
);
void
input_EndDecoder
(
input_thread_t
*
,
es_descriptor_t
*
);
VLC_EXPORT
(
void
,
input_DecodePES
,
(
decoder_fifo_t
*
,
pes_packet_t
*
)
);
VLC_EXPORT
(
void
,
input_DecodePES
,
(
decoder_t
*
,
pes_packet_t
*
)
);
void
input_DecodeBlock
(
decoder_t
*
,
block_t
*
);
void
input_EscapeDiscontinuity
(
input_thread_t
*
);
void
input_EscapeAudioDiscontinuity
(
input_thread_t
*
);
VLC_EXPORT
(
void
,
input_NullPacket
,
(
input_thread_t
*
,
es_descriptor_t
*
)
);
...
...
include/vlc_codec.h
View file @
3439df81
...
...
@@ -2,7 +2,7 @@
* vlc_codec.h: codec related structures
*****************************************************************************
* Copyright (C) 1999-2003 VideoLAN
* $Id: vlc_codec.h,v 1.
4
2003/11/
16 21:07:30 gbazin
Exp $
* $Id: vlc_codec.h,v 1.
5
2003/11/
24 00:39:00 fenrir
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -48,12 +48,6 @@ struct decoder_t
module_t
*
p_module
;
decoder_sys_t
*
p_sys
;
/* Deprecated */
int
(
*
pf_decode
)(
decoder_t
*
,
block_t
*
);
decoder_fifo_t
*
p_fifo
;
int
(
*
pf_run
)
(
decoder_fifo_t
*
);
/* End deprecated */
picture_t
*
(
*
pf_decode_video
)(
decoder_t
*
,
block_t
**
);
aout_buffer_t
*
(
*
pf_decode_audio
)(
decoder_t
*
,
block_t
**
);
void
(
*
pf_decode_sub
)
(
decoder_t
*
,
block_t
**
);
...
...
include/vlc_common.h
View file @
3439df81
...
...
@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: vlc_common.h,v 1.
8
9 2003/11/2
2 13:56:21 ipkiss
Exp $
* $Id: vlc_common.h,v 1.9
0
2003/11/2
4 00:39:00 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
...
...
@@ -270,7 +270,6 @@ typedef struct sout_cfg_t sout_cfg_t;
typedef struct slp_session_t slp_session_t;*/
/* Decoders */
typedef
struct
decoder_fifo_t
decoder_fifo_t
;
typedef
struct
decoder_t
decoder_t
;
typedef
struct
decoder_sys_t
decoder_sys_t
;
...
...
@@ -284,7 +283,6 @@ typedef struct data_buffer_t data_buffer_t;
typedef
struct
stream_position_t
stream_position_t
;
typedef
struct
stream_ctrl_t
stream_ctrl_t
;
typedef
struct
pes_packet_t
pes_packet_t
;
typedef
struct
bit_stream_t
bit_stream_t
;
typedef
struct
network_socket_t
network_socket_t
;
typedef
struct
iso639_lang_t
iso639_lang_t
;
...
...
include/vlc_es.h
View file @
3439df81
...
...
@@ -2,7 +2,7 @@
* vlc_es.h
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: vlc_es.h,v 1.
3
2003/11/2
2 18:04:10 gbazin
Exp $
* $Id: vlc_es.h,v 1.
4
2003/11/2
4 00:39:00 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -87,6 +87,11 @@ struct subs_format_t
{
char
*
psz_encoding
;
struct
{
/* FIXME */
uint32_t
palette
[
16
+
1
];
}
spu
;
};
/**
...
...
include/vlc_objects.h
View file @
3439df81
...
...
@@ -2,7 +2,7 @@
* vlc_objects.h: vlc_object_t definition.
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: vlc_objects.h,v 1.2
0
2003/1
0/14 22:41:41 gbazin
Exp $
* $Id: vlc_objects.h,v 1.2
1
2003/1
1/24 00:39:00 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -40,8 +40,6 @@
#define VLC_OBJECT_ITEM (-6)
#define VLC_OBJECT_INPUT (-7)
#define VLC_OBJECT_DECODER (-8)
/* tmp for backward compat */
#define VLC_OBJECT_DECODER_FIFO (-999)
#define VLC_OBJECT_VOUT (-9)
#define VLC_OBJECT_AOUT (-10)
#define VLC_OBJECT_SOUT (-11)
...
...
modules/access/cdda.c
View file @
3439df81
...
...
@@ -2,7 +2,7 @@
* cdda.c : CD digital audio input module for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: cdda.c,v 1.
6
2003/
09/07 22:4
9:0
5
fenrir Exp $
* $Id: cdda.c,v 1.
7
2003/
11/24 00:3
9:0
1
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -492,9 +492,9 @@ static int CDDADemux( input_thread_t * p_input )
p_input
->
stream
.
p_selected_program
,
p_demux
->