From: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH 2/5] avformat/movenc: factorize data shifting Date: Fri, 31 Dec 2021 13:36:26 +0100 Message-ID: <AM7PR03MB6660DE2E5F9727C09FF664DA8F469@AM7PR03MB6660.eurprd03.prod.outlook.com> (raw) In-Reply-To: <20211227002613.25069-2-cus@passwd.hu> Marton Balint: > And move data shift function from movenc to utils. > > Signed-off-by: Marton Balint <cus@passwd.hu> > --- > libavformat/internal.h | 7 ++++++ > libavformat/movenc.c | 55 ++--------------------------------------- > libavformat/utils.c | 56 ++++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 65 insertions(+), 53 deletions(-) > > diff --git a/libavformat/internal.h b/libavformat/internal.h > index 2ba795d669..63235ce5cf 100644 > --- a/libavformat/internal.h > +++ b/libavformat/internal.h > @@ -1019,4 +1019,11 @@ void ff_format_set_url(AVFormatContext *s, char *url); > > void avpriv_register_devices(const AVOutputFormat * const o[], const AVInputFormat * const i[]); > > +/** > + * Make shift_size amount of space at read_start by shifting data in the output > + * at read_start until the current IO position. The underlying IO context must > + * be seekable. > + */ > +int ff_format_shift_data(AVFormatContext *s, int64_t read_start, int shift_size); > + > #endif /* AVFORMAT_INTERNAL_H */ > diff --git a/libavformat/movenc.c b/libavformat/movenc.c > index 0f912dd012..40ad4f8642 100644 > --- a/libavformat/movenc.c > +++ b/libavformat/movenc.c > @@ -7150,13 +7150,8 @@ static int compute_sidx_size(AVFormatContext *s) > > static int shift_data(AVFormatContext *s) > { > - int ret = 0, moov_size; > + int moov_size; > MOVMuxContext *mov = s->priv_data; > - int64_t pos, pos_end; > - uint8_t *buf, *read_buf[2]; > - int read_buf_id = 0; > - int read_size[2]; > - AVIOContext *read_pb; > > if (mov->flags & FF_MOV_FLAG_FRAGMENT) > moov_size = compute_sidx_size(s); > @@ -7165,53 +7160,7 @@ static int shift_data(AVFormatContext *s) > if (moov_size < 0) > return moov_size; > > - buf = av_malloc(moov_size * 2); > - if (!buf) > - return AVERROR(ENOMEM); > - read_buf[0] = buf; > - read_buf[1] = buf + moov_size; > - > - /* Shift the data: the AVIO context of the output can only be used for > - * writing, so we re-open the same output, but for reading. It also avoids > - * a read/seek/write/seek back and forth. */ > - avio_flush(s->pb); > - ret = s->io_open(s, &read_pb, s->url, AVIO_FLAG_READ, NULL); > - if (ret < 0) { > - av_log(s, AV_LOG_ERROR, "Unable to re-open %s output file for " > - "the second pass (faststart)\n", s->url); > - goto end; > - } > - > - /* mark the end of the shift to up to the last data we wrote, and get ready > - * for writing */ > - pos_end = avio_tell(s->pb); > - avio_seek(s->pb, mov->reserved_header_pos + moov_size, SEEK_SET); > - > - /* start reading at where the new moov will be placed */ > - avio_seek(read_pb, mov->reserved_header_pos, SEEK_SET); > - pos = avio_tell(read_pb); > - > -#define READ_BLOCK do { \ > - read_size[read_buf_id] = avio_read(read_pb, read_buf[read_buf_id], moov_size); \ > - read_buf_id ^= 1; \ > -} while (0) > - > - /* shift data by chunk of at most moov_size */ > - READ_BLOCK; > - do { > - int n; > - READ_BLOCK; > - n = read_size[read_buf_id]; > - if (n <= 0) > - break; > - avio_write(s->pb, read_buf[read_buf_id], n); > - pos += n; > - } while (pos < pos_end); > - ff_format_io_close(s, &read_pb); > - > -end: > - av_free(buf); > - return ret; > + return ff_format_shift_data(s, mov->reserved_header_pos, moov_size); > } > > static int mov_write_trailer(AVFormatContext *s) > diff --git a/libavformat/utils.c b/libavformat/utils.c > index 332ba534d2..a78797ef57 100644 > --- a/libavformat/utils.c > +++ b/libavformat/utils.c > @@ -2035,3 +2035,59 @@ const char *av_disposition_to_string(int disposition) > > return NULL; > } > + > +int ff_format_shift_data(AVFormatContext *s, int64_t read_start, int shift_size) > +{ > + int ret; > + int64_t pos, pos_end; > + uint8_t *buf, *read_buf[2]; > + int read_buf_id = 0; > + int read_size[2]; > + AVIOContext *read_pb; > + > + buf = av_malloc_array(shift_size, 2); > + if (!buf) > + return AVERROR(ENOMEM); > + read_buf[0] = buf; > + read_buf[1] = buf + shift_size; > + > + /* Shift the data: the AVIO context of the output can only be used for > + * writing, so we re-open the same output, but for reading. It also avoids > + * a read/seek/write/seek back and forth. */ > + avio_flush(s->pb); > + ret = s->io_open(s, &read_pb, s->url, AVIO_FLAG_READ, NULL); > + if (ret < 0) { > + av_log(s, AV_LOG_ERROR, "Unable to re-open %s output file for shifting data\n", s->url); > + goto end; > + } > + > + /* mark the end of the shift to up to the last data we wrote, and get ready > + * for writing */ > + pos_end = avio_tell(s->pb); > + avio_seek(s->pb, read_start + shift_size, SEEK_SET); > + > + avio_seek(read_pb, read_start, SEEK_SET); > + pos = avio_tell(read_pb); This avio_tell() is redundant: avio_seek() returns the new position on non-error and in this case it is equal to read_start. > + > +#define READ_BLOCK do { \ > + read_size[read_buf_id] = avio_read(read_pb, read_buf[read_buf_id], shift_size); \ > + read_buf_id ^= 1; \ > +} while (0) > + > + /* shift data by chunk of at most shift_size */ > + READ_BLOCK; > + do { > + int n; > + READ_BLOCK; > + n = read_size[read_buf_id]; > + if (n <= 0) > + break; > + avio_write(s->pb, read_buf[read_buf_id], n); > + pos += n; > + } while (pos < pos_end); > + ff_format_io_close(s, &read_pb); > + > +end: > + av_free(buf); > + return ret; > +} > _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2021-12-31 12:36 UTC|newest] Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-12-27 0:26 [FFmpeg-devel] [PATCH 1/5] avformat/aviobuf: set AVIOContext->error on bprint buffer ENOMEM Marton Balint 2021-12-27 0:26 ` [FFmpeg-devel] [PATCH 2/5] avformat/movenc: factorize data shifting Marton Balint 2021-12-31 12:36 ` Andreas Rheinhardt [this message] 2021-12-27 0:26 ` [FFmpeg-devel] [PATCH 3/5] avformat/flvenc: use ff_format_shift_data for " Marton Balint 2021-12-27 0:26 ` [FFmpeg-devel] [PATCH 4/5] avformat/segafilmenc: use ff_format_shift_data for shifting Marton Balint 2021-12-31 12:30 ` Andreas Rheinhardt 2021-12-27 0:26 ` [FFmpeg-devel] [PATCH 5/5] avformat/utils: propagate return value of ff_format_io_close in ff_format_shift_data Marton Balint 2021-12-31 10:40 ` [FFmpeg-devel] [PATCH 1/5] avformat/aviobuf: set AVIOContext->error on bprint buffer ENOMEM Andreas Rheinhardt 2021-12-31 16:53 ` Marton Balint 2022-01-02 20:46 ` Marton Balint 2022-01-03 8:31 ` Andreas Rheinhardt 2022-01-03 19:18 ` Marton Balint
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=AM7PR03MB6660DE2E5F9727C09FF664DA8F469@AM7PR03MB6660.eurprd03.prod.outlook.com \ --to=andreas.rheinhardt@outlook.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git