git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
510eae8
)
Fix bug causing conversion to stop when output_packet() fails patch by (Patrice Benso...
author
Patrice Bensoussan
<patrice.bensoussan@free.fr>
Sun, 25 Jul 2004 00:22:20 +0000
(
00:22
+0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sun, 25 Jul 2004 00:22:20 +0000
(
00:22
+0000)
Originally committed as revision 3337 to svn://svn.ffmpeg.org/ffmpeg/trunk
ffmpeg.c
patch
|
blob
|
history
diff --git
a/ffmpeg.c
b/ffmpeg.c
index
7b6d7f2
..
0ab88d0
100644
(file)
--- a/
ffmpeg.c
+++ b/
ffmpeg.c
@@
-1778,10
+1778,12
@@
static int av_encode(AVFormatContext **output_files,
for(; received_sigterm == 0;) {
int file_index, ist_index;
AVPacket pkt;
- double ipts_min
= 1e100
;
- double opts_min
= 1e100
;
+ double ipts_min;
+ double opts_min;
redo:
+ ipts_min= 1e100;
+ opts_min= 1e100;
/* if 'q' pressed, exits */
if (!using_stdin) {
if (q_pressed)