summaryrefslogtreecommitdiff
path: root/libavformat/img2enc.c
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2019-12-26 20:51:19 +0100
committerMarton Balint <cus@passwd.hu>2020-01-03 11:23:55 +0100
commit04e36fc4e170fc5a30e2f9e6796b39d25530f609 (patch)
treeb7ddee7acc7a60e62c5676b8fcc7d5d736b17331 /libavformat/img2enc.c
parentb693b06b22079bf3490525088c9ceba55f66d22a (diff)
downloadffmpeg-04e36fc4e170fc5a30e2f9e6796b39d25530f609.tar.gz
avformat/img2enc: factorize piped write_packet
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/img2enc.c')
-rw-r--r--libavformat/img2enc.c30
1 files changed, 18 insertions, 12 deletions
diff --git a/libavformat/img2enc.c b/libavformat/img2enc.c
index 0ce8ef5bff..dfc7566dad 100644
--- a/libavformat/img2enc.c
+++ b/libavformat/img2enc.c
@@ -35,7 +35,6 @@
typedef struct VideoMuxData {
const AVClass *class; /**< Class for private options. */
int img_number;
- int is_pipe;
int split_planes; /**< use independent file for each Y, U, V plane */
char path[1024];
char tmp[4][1024];
@@ -55,12 +54,6 @@ static int write_header(AVFormatContext *s)
av_strlcpy(img->path, s->url, sizeof(img->path));
- /* find format */
- if (s->oformat->flags & AVFMT_NOFILE)
- img->is_pipe = 0;
- else
- img->is_pipe = 1;
-
if (st->codecpar->codec_id == AV_CODEC_ID_GIF) {
img->muxer = "gif";
} else if (st->codecpar->codec_id == AV_CODEC_ID_FITS) {
@@ -113,6 +106,21 @@ static int write_muxed_file(AVFormatContext *s, AVIOContext *pb, AVPacket *pkt)
return 0;
}
+static int write_packet_pipe(AVFormatContext *s, AVPacket *pkt)
+{
+ VideoMuxData *img = s->priv_data;
+ if (img->muxer) {
+ int ret = write_muxed_file(s, s->pb, pkt);
+ if (ret < 0)
+ return ret;
+ } else {
+ avio_write(s->pb, pkt->data, pkt->size);
+ avio_flush(s->pb);
+ }
+ img->img_number++;
+ return 0;
+}
+
static int write_packet(AVFormatContext *s, AVPacket *pkt)
{
VideoMuxData *img = s->priv_data;
@@ -123,7 +131,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
int ret, i;
int nb_renames = 0;
- if (!img->is_pipe) {
+ {
if (img->update) {
av_strlcpy(filename, img->path, sizeof(filename));
} else if (img->use_strftime) {
@@ -164,8 +172,6 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
}
if (img->use_rename)
nb_renames = i + 1;
- } else {
- pb[0] = s->pb;
}
if (img->split_planes) {
@@ -192,7 +198,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
avio_write(pb[0], pkt->data, pkt->size);
}
avio_flush(pb[0]);
- if (!img->is_pipe) {
+ {
ff_format_io_close(s, &pb[0]);
for (i = 0; i < nb_renames; i++) {
int ret = ff_rename(img->tmp[i], img->target[i], s);
@@ -257,7 +263,7 @@ AVOutputFormat ff_image2pipe_muxer = {
.priv_data_size = sizeof(VideoMuxData),
.video_codec = AV_CODEC_ID_MJPEG,
.write_header = write_header,
- .write_packet = write_packet,
+ .write_packet = write_packet_pipe,
.query_codec = query_codec,
.flags = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
};