Commit ded9ef62 authored by michael's avatar michael

Fix bug causing conversion to stop when output_packet() fails patch by...

Fix bug causing conversion to stop when output_packet() fails patch by (Patrice Bensoussan <patrice.bensoussan at free dot fr>)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3337 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 104e7449
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment