mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-27 04:42:39 +00:00
Correctly use output format stream index for bitstream filter when doing stream copy.
Originally committed as revision 11480 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
90527811d7
commit
8b389f15cd
2
ffmpeg.c
2
ffmpeg.c
@ -1266,7 +1266,7 @@ static int output_packet(AVInputStream *ist, int ist_index,
|
||||
if(av_parser_change(ist->st->parser, ost->st->codec, &opkt.data, &opkt.size, data_buf, data_size, pkt->flags & PKT_FLAG_KEY))
|
||||
opkt.destruct= av_destruct_packet;
|
||||
|
||||
write_frame(os, &opkt, ost->st->codec, bitstream_filters[ost->file_index][pkt->stream_index]);
|
||||
write_frame(os, &opkt, ost->st->codec, bitstream_filters[ost->file_index][opkt.stream_index]);
|
||||
ost->st->codec->frame_number++;
|
||||
ost->frame_number++;
|
||||
av_free_packet(&opkt);
|
||||
|
Loading…
Reference in New Issue
Block a user