Commit b716c6c6 authored by Michael Niedermayer's avatar Michael Niedermayer

Remove unneeded assignment from av_encode() found by CSA.

Originally committed as revision 18567 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b5ee9c23
...@@ -1972,7 +1972,6 @@ static int av_encode(AVFormatContext **output_files, ...@@ -1972,7 +1972,6 @@ static int av_encode(AVFormatContext **output_files,
/* init pts */ /* init pts */
for(i=0;i<nb_istreams;i++) { for(i=0;i<nb_istreams;i++) {
ist = ist_table[i]; ist = ist_table[i];
is = input_files[ist->file_index];
ist->pts = 0; ist->pts = 0;
ist->next_pts = AV_NOPTS_VALUE; ist->next_pts = AV_NOPTS_VALUE;
ist->is_start = 1; ist->is_start = 1;
......
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