Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
be95ddf5
Commit
be95ddf5
authored
May 05, 2002
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* plugins/avi/avi.c try to not freeze when reach end file
parent
5c983d98
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
114 additions
and
84 deletions
+114
-84
plugins/avi/avi.c
plugins/avi/avi.c
+109
-71
plugins/avi/libioRIFF.c
plugins/avi/libioRIFF.c
+2
-11
plugins/ffmpeg/ffmpeg.c
plugins/ffmpeg/ffmpeg.c
+3
-2
No files found.
plugins/avi/avi.c
View file @
be95ddf5
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc
* avi.c : AVI file Stream input module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: avi.c,v 1.1
1 2002/05/04 16:51:05
fenrir Exp $
* $Id: avi.c,v 1.1
2 2002/05/05 17:20:49
fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
...
@@ -833,7 +833,7 @@ static void AVIEnd( input_thread_t *p_input )
...
@@ -833,7 +833,7 @@ static void AVIEnd( input_thread_t *p_input )
}
}
static
mtime_t
__
AVI_GetPTS
(
AVIStreamInfo_t
*
p_info
)
static
mtime_t
AVI_GetPTS
(
AVIStreamInfo_t
*
p_info
)
{
{
/* XXX you need to add p_info->i_date to have correct pts */
/* XXX you need to add p_info->i_date to have correct pts */
/* p_info->p_index[p_info->i_idxposc] need to be valid !! */
/* p_info->p_index[p_info->i_idxposc] need to be valid !! */
...
@@ -879,7 +879,12 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
...
@@ -879,7 +879,12 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
{
{
return
(
0
);
return
(
0
);
}
}
if
(
p_info
->
i_idxposc
>
p_info
->
i_idxnb
)
{
return
(
-
1
);
}
p_info
->
i_idxposc
--
;
p_info
->
i_idxposc
--
;
/* create entry on the fly */
/* create entry on the fly */
/* TODO: when parsing for a stream take care of the other to not do
/* TODO: when parsing for a stream take care of the other to not do
the same things two time */
the same things two time */
...
@@ -906,9 +911,10 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
...
@@ -906,9 +911,10 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
if
(
RIFF_NextChunk
(
p_input
,
p_avi_demux
->
p_movi
)
!=
0
)
if
(
RIFF_NextChunk
(
p_input
,
p_avi_demux
->
p_movi
)
!=
0
)
{
{
__AVI_SeekToChunk
(
p_input
,
p_info
)
;
p_info
->
i_idxposc
++
;
return
(
-
1
);
return
(
-
1
);
}
}
/* save idxpos of p_info */
/* save idxpos of p_info */
/* now parse for all stream and stop when reach next chunk for p_info */
/* now parse for all stream and stop when reach next chunk for p_info */
for
(
i
=
0
;
(
i
<
15
)
||
(
!
b_inc
);
i
++
)
for
(
i
=
0
;
(
i
<
15
)
||
(
!
b_inc
);
i
++
)
...
@@ -917,6 +923,7 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
...
@@ -917,6 +923,7 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
u16
i_type
;
u16
i_type
;
if
(
(
p_chunk
=
RIFF_ReadChunk
(
p_input
))
==
NULL
)
if
(
(
p_chunk
=
RIFF_ReadChunk
(
p_input
))
==
NULL
)
{
{
p_info
->
i_idxposc
++
;
return
(
b_inc
==
1
?
0
:
-
1
);
return
(
b_inc
==
1
?
0
:
-
1
);
}
}
...
@@ -936,16 +943,19 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
...
@@ -936,16 +943,19 @@ static int __AVI_NextIndexEntry( input_thread_t *p_input,
__AVI_AddEntryIndex
(
p_info_i
,
&
index
);
__AVI_AddEntryIndex
(
p_info_i
,
&
index
);
if
(
(
p_info_i
==
p_info
)
&&
(
!
b_inc
)
)
if
(
(
p_info_i
==
p_info
)
&&
(
!
b_inc
)
)
{
{
p_info
->
i_idxposc
++
;
b_inc
=
1
;
b_inc
=
1
;
}
}
}
}
#undef p_info_i
#undef p_info_i
if
(
RIFF_NextChunk
(
p_input
,
p_avi_demux
->
p_movi
)
!=
0
)
if
(
RIFF_NextChunk
(
p_input
,
p_avi_demux
->
p_movi
)
!=
0
)
{
{
p_info
->
i_idxposc
++
;
return
(
b_inc
==
1
?
0
:
-
1
);
return
(
b_inc
==
1
?
0
:
-
1
);
}
}
}
}
p_info
->
i_idxposc
++
;
return
(
0
);
return
(
0
);
}
}
...
@@ -1040,11 +1050,16 @@ static int __AVI_GoToStreamBytes( input_thread_t *p_input,
...
@@ -1040,11 +1050,16 @@ static int __AVI_GoToStreamBytes( input_thread_t *p_input,
while
(
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_lengthtotal
+
while
(
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_lengthtotal
+
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_length
<=
i_byte
)
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_length
<=
i_byte
)
{
{
intf_WarnMsg
(
1
,
"read 0"
);
if
(
__AVI_NextIndexEntry
(
p_input
,
p_info
)
!=
0
)
if
(
__AVI_NextIndexEntry
(
p_input
,
p_info
)
!=
0
)
{
{
return
(
-
1
);
return
(
-
1
);
}
}
intf_WarnMsg
(
1
,
"read 1"
);
}
}
}
}
else
else
{
{
...
@@ -1099,8 +1114,14 @@ static pes_packet_t *__AVI_ReadStreamChunkInPES( input_thread_t *p_input,
...
@@ -1099,8 +1114,14 @@ static pes_packet_t *__AVI_ReadStreamChunkInPES( input_thread_t *p_input,
AVIStreamInfo_t
*
p_info
)
AVIStreamInfo_t
*
p_info
)
{
{
pes_packet_t
*
p_pes
;
pes_packet_t
*
p_pes
;
if
(
p_info
->
i_idxposc
>=
p_info
->
i_idxnb
)
{
return
(
NULL
);
}
if
(
(
__AVI_GoToStreamChunk
(
p_input
,
p_info
,
p_info
->
i_idxposc
)
!=
0
)
if
(
(
__AVI_GoToStreamChunk
(
p_input
,
p_info
,
p_info
->
i_idxposc
)
!=
0
)
||
(
RIFF_LoadChunkDataInPES
(
p_input
,
&
p_pes
)
!=
0
)
)
||
(
RIFF_LoadChunkDataInPES
(
p_input
,
&
p_pes
)
!=
0
)
)
/* ||( p_pes->i_pes_size != p_info->p_index[p_info->i_idxposc].i_length)) */
{
{
return
(
NULL
);
return
(
NULL
);
}
}
...
@@ -1135,24 +1156,28 @@ static pes_packet_t *__AVI_ReadStreamBytesInPES( input_thread_t *p_input,
...
@@ -1135,24 +1156,28 @@ static pes_packet_t *__AVI_ReadStreamBytesInPES( input_thread_t *p_input,
do
do
{
{
if
(
p_info
->
i_idxposc
>=
p_info
->
i_idxnb
)
{
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
return
(
NULL
);
}
if
(
__AVI_GoToStreamBytes
(
p_input
,
p_info
,
if
(
__AVI_GoToStreamBytes
(
p_input
,
p_info
,
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_lengthtotal
+
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_lengthtotal
+
p_info
->
i_idxposb
)
!=
0
)
p_info
->
i_idxposb
)
!=
0
)
{
{
input_DeletePacket
(
p_input
->
p_method_data
,
p_pes
->
p_first
);
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
return
(
NULL
);
return
(
NULL
);
}
}
i_read
=
input_SplitBuffer
(
p_input
,
&
p_data
,
i_read
=
input_SplitBuffer
(
p_input
,
&
p_data
,
__MIN
(
i_byte
,
__MIN
(
i_byte
,
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_length
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_length
-
p_info
->
i_idxposb
)
);
-
p_info
->
i_idxposb
)
);
if
(
i_read
<=
0
)
if
(
i_read
<=
0
)
{
{
p_pes
->
p_first
->
p_demux_start
=
p_pes
->
p_first
->
p_payload_start
;
input_DeletePacket
(
p_input
->
p_method_data
,
p_data
);
p_pes
->
i_pes_size
=
p_pes
->
p_first
->
p_payload_end
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
-
p_pes
->
p_first
->
p_payload_start
;
return
(
NULL
);
return
(
p_pes
);
}
}
FAST_MEMCPY
(
p_pes
->
p_first
->
p_demux_start
,
FAST_MEMCPY
(
p_pes
->
p_first
->
p_demux_start
,
p_data
->
p_demux_start
,
p_data
->
p_demux_start
,
...
@@ -1160,12 +1185,17 @@ static pes_packet_t *__AVI_ReadStreamBytesInPES( input_thread_t *p_input,
...
@@ -1160,12 +1185,17 @@ static pes_packet_t *__AVI_ReadStreamBytesInPES( input_thread_t *p_input,
i_byte
-=
i_read
;
i_byte
-=
i_read
;
p_info
->
i_idxposb
+=
i_read
;
p_info
->
i_idxposb
+=
i_read
;
p_pes
->
p_first
->
p_demux_start
+=
i_read
;
p_pes
->
p_first
->
p_demux_start
+=
i_read
;
input_DeletePacket
(
p_input
->
p_method_data
,
p_data
);
if
(
p_info
->
i_idxposb
>=
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_length
)
if
(
p_info
->
i_idxposb
>=
p_info
->
p_index
[
p_info
->
i_idxposc
].
i_length
)
{
{
p_info
->
i_idxposb
=
0
;
p_info
->
i_idxposb
=
0
;
__AVI_NextIndexEntry
(
p_input
,
p_info
);
if
(
__AVI_NextIndexEntry
(
p_input
,
p_info
)
!=
0
)
{
input_DeletePES
(
p_input
->
p_method_data
,
p_pes
);
return
(
NULL
);
}
}
}
input_DeletePacket
(
p_input
->
p_method_data
,
p_data
);
}
while
(
i_byte
>
0
);
}
while
(
i_byte
>
0
);
p_pes
->
p_first
->
p_demux_start
=
p_pes
->
p_first
->
p_payload_start
;
p_pes
->
p_first
->
p_demux_start
=
p_pes
->
p_first
->
p_payload_start
;
p_pes
->
i_pes_size
=
p_pes
->
p_first
->
p_payload_end
p_pes
->
i_pes_size
=
p_pes
->
p_first
->
p_payload_end
...
@@ -1301,13 +1331,13 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
...
@@ -1301,13 +1331,13 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
if
(
p_avi_demux
->
p_info_video
==
NULL
)
if
(
p_avi_demux
->
p_info_video
==
NULL
)
{
{
p_avi_demux
->
i_date
=
mdate
()
+
DEFAULT_PTS_DELAY
p_avi_demux
->
i_date
=
mdate
()
+
DEFAULT_PTS_DELAY
-
__
AVI_GetPTS
(
p_avi_demux
->
p_info_audio
);
-
AVI_GetPTS
(
p_avi_demux
->
p_info_audio
);
return
;
return
;
}
}
else
else
{
{
p_avi_demux
->
i_date
=
mdate
()
+
DEFAULT_PTS_DELAY
p_avi_demux
->
i_date
=
mdate
()
+
DEFAULT_PTS_DELAY
-
__
AVI_GetPTS
(
p_avi_demux
->
p_info_video
);
-
AVI_GetPTS
(
p_avi_demux
->
p_info_video
);
/* now resynch audio video video */
/* now resynch audio video video */
/*don't care of AVIF_KEYFRAME */
/*don't care of AVIF_KEYFRAME */
if
(
p_avi_demux
->
p_info_audio
!=
NULL
)
if
(
p_avi_demux
->
p_info_audio
!=
NULL
)
...
@@ -1315,7 +1345,7 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
...
@@ -1315,7 +1345,7 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
if
(
p_avi_demux
->
p_info_audio
->
header
.
i_samplesize
==
0
)
if
(
p_avi_demux
->
p_info_audio
->
header
.
i_samplesize
==
0
)
{
{
int
i_chunk
=
__AVI_PTSToChunk
(
p_avi_demux
->
p_info_audio
,
int
i_chunk
=
__AVI_PTSToChunk
(
p_avi_demux
->
p_info_audio
,
__
AVI_GetPTS
(
p_avi_demux
->
p_info_video
));
AVI_GetPTS
(
p_avi_demux
->
p_info_video
));
if
(
i_chunk
<
0
)
if
(
i_chunk
<
0
)
{
{
i_chunk
=
0
;
i_chunk
=
0
;
...
@@ -1327,7 +1357,7 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
...
@@ -1327,7 +1357,7 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
else
else
{
{
int
i_byte
=
__AVI_PTSToByte
(
p_avi_demux
->
p_info_audio
,
int
i_byte
=
__AVI_PTSToByte
(
p_avi_demux
->
p_info_audio
,
__
AVI_GetPTS
(
p_avi_demux
->
p_info_video
)
);
AVI_GetPTS
(
p_avi_demux
->
p_info_video
)
);
if
(
i_byte
<
0
)
if
(
i_byte
<
0
)
{
{
i_byte
=
0
;
i_byte
=
0
;
...
@@ -1341,7 +1371,7 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
...
@@ -1341,7 +1371,7 @@ static void __AVI_SynchroReInit( input_thread_t *p_input )
}
}
static
pes_packet_t
*
__
AVI_GetFrameInPES
(
input_thread_t
*
p_input
,
static
pes_packet_t
*
AVI_GetFrameInPES
(
input_thread_t
*
p_input
,
AVIStreamInfo_t
*
p_info
,
AVIStreamInfo_t
*
p_info
,
mtime_t
i_dpts
)
mtime_t
i_dpts
)
{
{
...
@@ -1375,7 +1405,7 @@ static pes_packet_t *__AVI_GetFrameInPES( input_thread_t *p_input,
...
@@ -1375,7 +1405,7 @@ static pes_packet_t *__AVI_GetFrameInPES( input_thread_t *p_input,
for
(
i
=
0
;
i
<
i_chunk
;
i
++
)
for
(
i
=
0
;
i
<
i_chunk
;
i
++
)
{
{
/* get pts while is valid */
/* get pts while is valid */
i_pts
=
__
AVI_GetPTS
(
p_info
);
i_pts
=
AVI_GetPTS
(
p_info
);
p_pes_tmp
=
__AVI_ReadStreamChunkInPES
(
p_input
,
p_info
);
p_pes_tmp
=
__AVI_ReadStreamChunkInPES
(
p_input
,
p_info
);
if
(
!
p_pes_tmp
)
if
(
!
p_pes_tmp
)
{
{
...
@@ -1400,9 +1430,10 @@ static pes_packet_t *__AVI_GetFrameInPES( input_thread_t *p_input,
...
@@ -1400,9 +1430,10 @@ static pes_packet_t *__AVI_GetFrameInPES( input_thread_t *p_input,
int
i_byte
=
__MAX
(
__AVI_PTSToByte
(
p_info
,
i_dpts
),
1024
);
int
i_byte
=
__MAX
(
__AVI_PTSToByte
(
p_info
,
i_dpts
),
1024
);
/* at least one Kbyte */
/* at least one Kbyte */
i_byte
=
__MIN
(
1024
*
1000
,
i_byte
);
/* but no more than 1000ko */
i_byte
=
__MIN
(
1024
*
1000
,
i_byte
);
/* but no more than 1000ko */
i_pts
=
__
AVI_GetPTS
(
p_info
);
i_pts
=
AVI_GetPTS
(
p_info
);
p_pes
=
__AVI_ReadStreamBytesInPES
(
p_input
,
p_info
,
i_byte
);
p_pes
=
__AVI_ReadStreamBytesInPES
(
p_input
,
p_info
,
i_byte
);
if
(
p_pes
!=
NULL
)
if
(
p_pes
!=
NULL
)
{
{
p_pes
->
i_pts
=
i_pts
;
p_pes
->
i_pts
=
i_pts
;
...
@@ -1411,7 +1442,7 @@ static pes_packet_t *__AVI_GetFrameInPES( input_thread_t *p_input,
...
@@ -1411,7 +1442,7 @@ static pes_packet_t *__AVI_GetFrameInPES( input_thread_t *p_input,
}
}
}
}
static
void
__
AVI_DecodePES
(
AVIStreamInfo_t
*
p_info
,
static
void
AVI_DecodePES
(
AVIStreamInfo_t
*
p_info
,
pes_packet_t
*
p_pes
,
pes_packet_t
*
p_pes
,
mtime_t
i_date
,
mtime_t
i_date
,
int
i_rate
)
int
i_rate
)
...
@@ -1450,8 +1481,11 @@ static void __AVI_DecodePES( AVIStreamInfo_t *p_info,
...
@@ -1450,8 +1481,11 @@ static void __AVI_DecodePES( AVIStreamInfo_t *p_info,
static
int
AVIDemux
(
input_thread_t
*
p_input
)
static
int
AVIDemux
(
input_thread_t
*
p_input
)
{
{
int
i
;
int
i
;
pes_packet_t
*
p_pes_audio
;
pes_packet_t
*
p_pes_master
;
/* video , or audio if no video */
pes_packet_t
*
p_pes_video
;
pes_packet_t
*
p_pes_slave
;
/* audio if there is video */
AVIStreamInfo_t
*
p_info_master
;
AVIStreamInfo_t
*
p_info_slave
;
demux_data_avi_file_t
*
p_avi_demux
;
demux_data_avi_file_t
*
p_avi_demux
;
/* try to use this to read data packet at the good time
/* try to use this to read data packet at the good time
...
@@ -1492,11 +1526,21 @@ static int AVIDemux( input_thread_t *p_input )
...
@@ -1492,11 +1526,21 @@ static int AVIDemux( input_thread_t *p_input )
}
}
}
}
}
}
/* by default synchro is made upon video */
if
(
p_avi_demux
->
p_info_video
)
{
p_info_master
=
p_avi_demux
->
p_info_video
;
p_info_slave
=
p_avi_demux
->
p_info_audio
;
}
else
{
p_info_master
=
p_avi_demux
->
p_info_audio
;
p_info_slave
=
NULL
;
}
/* for now, we need at least one video stream */
if
(
!
p_info_master
)
if
(
!
p_avi_demux
->
p_info_video
)
{
{
intf_ErrMsg
(
"input error:
no video ouput
selected"
);
intf_ErrMsg
(
"input error:
stream
selected"
);
return
(
-
1
);
return
(
-
1
);
}
}
...
@@ -1524,12 +1568,13 @@ static int AVIDemux( input_thread_t *p_input )
...
@@ -1524,12 +1568,13 @@ static int AVIDemux( input_thread_t *p_input )
}
}
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
if
(
p_input
->
stream
.
control
.
i_rate
!=
p_avi_demux
->
i_rate
)
if
(
(
p_input
->
stream
.
control
.
i_rate
!=
p_avi_demux
->
i_rate
)
&&
(
p_info_master
->
i_cat
==
VIDEO_ES
)
)
{
{
msleep
(
2
*
DEFAULT_PTS_DELAY
);
msleep
(
2
*
DEFAULT_PTS_DELAY
);
p_avi_demux
->
i_rate
=
p_input
->
stream
.
control
.
i_rate
;
p_avi_demux
->
i_rate
=
p_input
->
stream
.
control
.
i_rate
;
p_avi_demux
->
i_date
=
mdate
()
+
DEFAULT_PTS_DELAY
p_avi_demux
->
i_date
=
mdate
()
+
DEFAULT_PTS_DELAY
-
__AVI_GetPTS
(
p_avi_demux
->
p_info_video
)
*
-
AVI_GetPTS
(
p_info_master
)
*
(
mtime_t
)
p_avi_demux
->
i_rate
/
(
mtime_t
)
p_avi_demux
->
i_rate
/
(
mtime_t
)
DEFAULT_RATE
;
(
mtime_t
)
DEFAULT_RATE
;
if
(
p_avi_demux
->
i_rate
==
DEFAULT_RATE
)
if
(
p_avi_demux
->
i_rate
==
DEFAULT_RATE
)
...
@@ -1542,55 +1587,48 @@ static int AVIDemux( input_thread_t *p_input )
...
@@ -1542,55 +1587,48 @@ static int AVIDemux( input_thread_t *p_input )
}
}
if
(
p_avi_demux
->
i_rate
!=
DEFAULT_RATE
)
if
(
p_avi_demux
->
i_rate
!=
DEFAULT_RATE
)
{
{
p_
avi_demux
->
p_info_audio
=
NULL
;
p_
info_slave
=
NULL
;
}
}
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
/* take care of newly selected audio ES */
/* take care of newly selected audio ES */
if
(
(
p_avi_demux
->
p_info_audio
!=
NULL
)
if
(
p_info_master
->
b_selected
)
&&
(
p_avi_demux
->
p_info_audio
->
b_selected
))
{
{
p_
avi_demux
->
p_info_audio
->
b_selected
=
0
;
p_
info_master
->
b_selected
=
0
;
__AVI_SynchroReInit
(
p_input
);
/* resynchro, and make pts audio
__AVI_SynchroReInit
(
p_input
);
/* resynchro, and make pts audio
and video egual */
and video equal */
}
if
(
(
p_info_slave
)
&&
(
p_info_slave
->
b_selected
)
)
{
p_info_slave
->
b_selected
=
0
;
__AVI_SynchroReInit
(
p_input
);
}
}
/* get audio and video frame */
/* get audio and video frame */
if
(
p_avi_demux
->
p_info_video
!=
NULL
)
p_pes_master
=
AVI_GetFrameInPES
(
p_input
,
{
p_info_master
,
p_pes_video
=
__AVI_GetFrameInPES
(
p_input
,
p_avi_demux
->
p_info_video
,
100000
);
/* 100 ms */
100000
);
/* 100 ms */
if
(
p_avi_demux
->
p_info_audio
!=
NULL
)
if
(
p_info_slave
)
{
p_pes_slave
=
AVI_GetFrameInPES
(
p_input
,
p_info_slave
,
AVI_GetPTS
(
p_info_master
)
-
AVI_GetPTS
(
p_info_slave
)
+
10000
);
/* decode it first because video will make us wait */
AVI_DecodePES
(
p_info_slave
,
p_pes_slave
,
p_avi_demux
->
i_date
,
p_avi_demux
->
i_rate
);
}
AVI_DecodePES
(
p_info_master
,
p_pes_master
,
p_avi_demux
->
i_date
,
p_avi_demux
->
i_rate
);
/* at the end ? */
if
(
p_info_master
->
i_idxposc
>=
p_info_master
->
i_idxnb
)
{
{
p_pes_audio
=
__AVI_GetFrameInPES
(
p_input
,
p_avi_demux
->
p_info_audio
,
__AVI_GetPTS
(
p_avi_demux
->
p_info_video
)
-
__AVI_GetPTS
(
p_avi_demux
->
p_info_audio
)
);
}
else
{
p_pes_audio
=
NULL
;
}
}
else
{
p_pes_video
=
NULL
;
p_pes_audio
=
__AVI_GetFrameInPES
(
p_input
,
p_avi_demux
->
p_info_audio
,
100000
);
/* 100 ms */
}
/* send them to decoder */
__AVI_DecodePES
(
p_avi_demux
->
p_info_audio
,
p_pes_audio
,
p_avi_demux
->
i_date
,
p_avi_demux
->
i_rate
);
__AVI_DecodePES
(
p_avi_demux
->
p_info_video
,
p_pes_video
,
p_avi_demux
->
i_date
,
p_avi_demux
->
i_rate
);
if
(
!
p_pes_video
)
/* no more video */
{
/* currently i need a video stream */
return
(
0
);
return
(
0
);
}
}
return
(
1
);
return
(
1
);
}
}
plugins/avi/libioRIFF.c
View file @
be95ddf5
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* libioRIFF.c : AVI file Stream input module for vlc
* libioRIFF.c : AVI file Stream input module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: libioRIFF.c,v 1.
4 2002/05/04 16:51:05
fenrir Exp $
* $Id: libioRIFF.c,v 1.
5 2002/05/05 17:20:49
fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
...
@@ -128,7 +128,6 @@ static riffchunk_t * RIFF_ReadChunk(input_thread_t * p_input)
...
@@ -128,7 +128,6 @@ static riffchunk_t * RIFF_ReadChunk(input_thread_t * p_input)
if
((
p_riff
=
malloc
(
sizeof
(
riffchunk_t
)))
==
NULL
)
if
((
p_riff
=
malloc
(
sizeof
(
riffchunk_t
)))
==
NULL
)
{
{
intf_ErrMsg
(
"input error: not enough memory (ioriff)"
);
return
NULL
;
return
NULL
;
}
}
...
@@ -139,7 +138,6 @@ static riffchunk_t * RIFF_ReadChunk(input_thread_t * p_input)
...
@@ -139,7 +138,6 @@ static riffchunk_t * RIFF_ReadChunk(input_thread_t * p_input)
count
=
input_Peek
(
p_input
,
&
p_peek
,
12
);
count
=
input_Peek
(
p_input
,
&
p_peek
,
12
);
if
(
count
<
8
)
if
(
count
<
8
)
{
{
intf_ErrMsg
(
"input error: cannot peek() (ioriff)"
);
free
(
p_riff
);
free
(
p_riff
);
return
NULL
;
return
NULL
;
}
}
...
@@ -171,7 +169,6 @@ static int RIFF_NextChunk( input_thread_t * p_input,riffchunk_t *p_rifffather)
...
@@ -171,7 +169,6 @@ static int RIFF_NextChunk( input_thread_t * p_input,riffchunk_t *p_rifffather)
if
(
(
p_riff
=
RIFF_ReadChunk
(
p_input
)
)
==
NULL
)
if
(
(
p_riff
=
RIFF_ReadChunk
(
p_input
)
)
==
NULL
)
{
{
intf_ErrMsg
(
"ioriff: cannot read chunk."
);
return
(
-
1
);
return
(
-
1
);
}
}
i_len
=
p_riff
->
i_size
;
i_len
=
p_riff
->
i_size
;
...
@@ -181,9 +178,8 @@ static int RIFF_NextChunk( input_thread_t * p_input,riffchunk_t *p_rifffather)
...
@@ -181,9 +178,8 @@ static int RIFF_NextChunk( input_thread_t * p_input,riffchunk_t *p_rifffather)
{
{
i_lenfather
=
p_rifffather
->
i_size
;
i_lenfather
=
p_rifffather
->
i_size
;
if
(
i_lenfather
%
2
!=
0
)
{
i_lenfather
++
;}
if
(
i_lenfather
%
2
!=
0
)
{
i_lenfather
++
;}
if
(
p_rifffather
->
i_pos
+
i_lenfather
<=
p_riff
->
i_pos
+
i_len
)
if
(
p_rifffather
->
i_pos
+
i_lenfather
<=
p_riff
->
i_pos
+
i_len
+
8
)
{
{
intf_ErrMsg
(
"ioriff: next chunk out of bound"
);
free
(
p_riff
);
free
(
p_riff
);
return
(
1
);
/* pas dans nos frontiere */
return
(
1
);
/* pas dans nos frontiere */
}
}
...
@@ -191,7 +187,6 @@ static int RIFF_NextChunk( input_thread_t * p_input,riffchunk_t *p_rifffather)
...
@@ -191,7 +187,6 @@ static int RIFF_NextChunk( input_thread_t * p_input,riffchunk_t *p_rifffather)
if
(
__RIFF_SkipBytes
(
p_input
,
i_len
+
8
)
!=
0
)
if
(
__RIFF_SkipBytes
(
p_input
,
i_len
+
8
)
!=
0
)
{
{
free
(
p_riff
);
free
(
p_riff
);
intf_ErrMsg
(
"input error: cannot go to the next chunk (ioriff)."
);
return
(
-
1
);
return
(
-
1
);
}
}
free
(
p_riff
);
free
(
p_riff
);
...
@@ -205,7 +200,6 @@ static int RIFF_DescendChunk(input_thread_t * p_input)
...
@@ -205,7 +200,6 @@ static int RIFF_DescendChunk(input_thread_t * p_input)
{
{
if
(
__RIFF_SkipBytes
(
p_input
,
12
)
!=
0
)
if
(
__RIFF_SkipBytes
(
p_input
,
12
)
!=
0
)
{
{
intf_ErrMsg
(
"input error: cannot go into chunk."
);
return
(
-
1
);
return
(
-
1
);
}
}
return
(
0
);
return
(
0
);
...
@@ -229,7 +223,6 @@ static int RIFF_AscendChunk(input_thread_t * p_input ,riffchunk_t *p_rifffather)
...
@@ -229,7 +223,6 @@ static int RIFF_AscendChunk(input_thread_t * p_input ,riffchunk_t *p_rifffather)
if
((
__RIFF_SkipBytes
(
p_input
,
i_skip
))
!=
0
)
if
((
__RIFF_SkipBytes
(
p_input
,
i_skip
))
!=
0
)
{
{
intf_ErrMsg
(
"ioriff: cannot exit from subchunk."
);
return
(
-
1
);
return
(
-
1
);
}
}
return
(
0
);
return
(
0
);
...
@@ -280,7 +273,6 @@ static int RIFF_LoadChunkData(input_thread_t * p_input,riffchunk_t *p_riff )
...
@@ -280,7 +273,6 @@ static int RIFF_LoadChunkData(input_thread_t * p_input,riffchunk_t *p_riff )
RIFF_GoToChunkData
(
p_input
);
RIFF_GoToChunkData
(
p_input
);
if
(
input_SplitBuffer
(
p_input
,
&
p_riff
->
p_data
,
p_riff
->
i_size
)
!=
p_riff
->
i_size
)
if
(
input_SplitBuffer
(
p_input
,
&
p_riff
->
p_data
,
p_riff
->
i_size
)
!=
p_riff
->
i_size
)
{
{
intf_ErrMsg
(
"ioriff: cannot read enough data "
);
return
(
-
1
);
return
(
-
1
);
}
}
if
(
p_riff
->
i_size
%
2
!=
0
)
if
(
p_riff
->
i_size
%
2
!=
0
)
...
@@ -388,7 +380,6 @@ static int RIFF_TestFileHeader( input_thread_t * p_input, riffchunk_t ** pp_ri
...
@@ -388,7 +380,6 @@ static int RIFF_TestFileHeader( input_thread_t * p_input, riffchunk_t ** pp_ri
if
(
*
pp_riff
==
NULL
)
if
(
*
pp_riff
==
NULL
)
{
{
intf_ErrMsg
(
"input error: cannot retrieve header"
);
return
(
-
1
);
return
(
-
1
);
}
}
if
(
(
*
pp_riff
)
->
i_id
!=
FOURCC_RIFF
)
if
(
(
*
pp_riff
)
->
i_id
!=
FOURCC_RIFF
)
...
...
plugins/ffmpeg/ffmpeg.c
View file @
be95ddf5
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* ffmpeg.c: video decoder using ffmpeg library
* ffmpeg.c: video decoder using ffmpeg library
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: ffmpeg.c,v 1.
3 2002/04/27 16:13:23
fenrir Exp $
* $Id: ffmpeg.c,v 1.
4 2002/05/05 17:20:49
fenrir Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -234,7 +234,8 @@ static void __PACKET_NEXT( videodec_thread_t *p_vdec )
...
@@ -234,7 +234,8 @@ static void __PACKET_NEXT( videodec_thread_t *p_vdec )
p_vdec
->
p_data
->
p_payload_start
;
p_vdec
->
p_data
->
p_payload_start
;
}
}
}
while
(
p_vdec
->
i_data_size
<=
0
);
}
while
(
(
p_vdec
->
i_data_size
<=
0
)
||
(
p_vdec
->
p_data
->
b_discard_payload
)
);
}
}
static
void
__PACKET_FILL
(
videodec_thread_t
*
p_vdec
)
static
void
__PACKET_FILL
(
videodec_thread_t
*
p_vdec
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment