mirror of https://git.ffmpeg.org/ffmpeg.git
img2: Allow writing multiple files onto the same output file.
Fixes Ticket687 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
47044625ba
commit
102a2463d3
|
@ -391,11 +391,10 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||
|
||||
if (!img->is_pipe) {
|
||||
if (av_get_frame_filename(filename, sizeof(filename),
|
||||
img->path, img->img_number) < 0 && img->img_number>1) {
|
||||
av_log(s, AV_LOG_ERROR,
|
||||
"Could not get frame filename number %d from pattern '%s'\n",
|
||||
img->img_number, img->path);
|
||||
return AVERROR(EINVAL);
|
||||
img->path, img->img_number) < 0 && img->img_number==2) {
|
||||
av_log(s, AV_LOG_WARNING,
|
||||
"Writing multiple frames to the same file, check the pattern '%s' if this is not what you want\n",
|
||||
img->path);
|
||||
}
|
||||
for(i=0; i<3; i++){
|
||||
if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
|
||||
|
|
Loading…
Reference in New Issue