FFmpeg
img2enc.c
Go to the documentation of this file.
1 /*
2  * Image format
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2004 Michael Niedermayer
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include <time.h>
24 
25 #include "config_components.h"
26 
27 #include "libavutil/intreadwrite.h"
28 #include "libavutil/avstring.h"
29 #include "libavutil/bprint.h"
30 #include "libavutil/dict.h"
31 #include "libavutil/log.h"
32 #include "libavutil/mem.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/pixdesc.h"
36 #include "avformat.h"
37 #include "avio_internal.h"
38 #include "internal.h"
39 #include "img2.h"
40 #include "mux.h"
41 
42 typedef struct VideoMuxData {
43  const AVClass *class; /**< Class for private options. */
46  int split_planes; /**< use independent file for each Y, U, V plane */
47  int update;
49  int frame_pts;
50  const char *muxer;
53 } VideoMuxData;
54 
56 {
57  VideoMuxData *img = s->priv_data;
58  AVStream *st = s->streams[0];
60 
61  if (st->codecpar->codec_id == AV_CODEC_ID_GIF) {
62  img->muxer = "gif";
63  } else if (st->codecpar->codec_id == AV_CODEC_ID_FITS) {
64  img->muxer = "fits";
65  } else if (st->codecpar->codec_id == AV_CODEC_ID_AV1) {
66  img->muxer = "avif";
67  } else if (st->codecpar->codec_id == AV_CODEC_ID_RAWVIDEO) {
68  const char *str = strrchr(s->url, '.');
69  img->split_planes = str
70  && !av_strcasecmp(str + 1, "y")
71  && s->nb_streams == 1
72  && desc
73  &&(desc->flags & AV_PIX_FMT_FLAG_PLANAR)
74  && desc->nb_components >= 3;
75  }
76  img->img_number = img->start_img_number;
77 
78  return 0;
79 }
80 
82 {
83  VideoMuxData *img = s->priv_data;
84  AVCodecParameters *par = s->streams[pkt->stream_index]->codecpar;
85  AVStream *st;
86  AVPacket *const pkt2 = ffformatcontext(s)->pkt;
87  AVFormatContext *fmt = NULL;
88  int ret;
89 
90  /* URL is not used directly as we are overriding the IO context later. */
91  ret = avformat_alloc_output_context2(&fmt, NULL, img->muxer, s->url);
92  if (ret < 0)
93  return ret;
94  st = avformat_new_stream(fmt, NULL);
95  if (!st) {
96  ret = AVERROR(ENOMEM);
97  goto out;
98  }
99  st->id = pkt->stream_index;
100 
101  fmt->pb = pb;
102 
103  ret = av_packet_ref(pkt2, pkt);
104  if (ret < 0)
105  goto out;
106  pkt2->stream_index = 0;
107 
108  if ((ret = avcodec_parameters_copy(st->codecpar, par)) < 0 ||
109  (ret = avformat_write_header(fmt, NULL)) < 0 ||
110  (ret = av_interleaved_write_frame(fmt, pkt2)) < 0 ||
111  (ret = av_write_trailer(fmt))) {}
112 
113  av_packet_unref(pkt2);
114 out:
116  return ret;
117 }
118 
120 {
121  VideoMuxData *img = s->priv_data;
122  if (img->muxer) {
123  int ret = write_muxed_file(s, s->pb, pkt);
124  if (ret < 0)
125  return ret;
126  } else {
127  avio_write(s->pb, pkt->data, pkt->size);
128  }
129  img->img_number++;
130  return 0;
131 }
132 
133 static int write_and_close(AVFormatContext *s, AVIOContext **pb, const unsigned char *buf, int size)
134 {
135  avio_write(*pb, buf, size);
136  avio_flush(*pb);
137  return ff_format_io_close(s, pb);
138 }
139 
141 {
142  VideoMuxData *img = s->priv_data;
143  AVIOContext *pb[4] = {0};
144  char* target[4] = {0};
145  char* tmp[4] = {0};
146  AVCodecParameters *par = s->streams[pkt->stream_index]->codecpar;
148  int ret, i;
150  AVBPrint filename;
152 
153  if (img->update) {
154  av_bprintf(&filename, "%s", s->url);
155  } else if (img->use_strftime) {
156  time_t now0;
157  struct tm *tm, tmpbuf;
158  time(&now0);
159  tm = localtime_r(&now0, &tmpbuf);
160  av_bprint_strftime(&filename, s->url, tm);
161  } else if (img->frame_pts) {
163  av_log(s, AV_LOG_ERROR, "Cannot write filename by pts of the frames.");
164  ret = AVERROR(EINVAL);
165  goto fail;
166  }
167  } else if (ff_bprint_get_frame_filename(&filename, s->url,
168  img->img_number,
170  if (img->img_number == img->start_img_number) {
171  av_log(s, AV_LOG_WARNING, "The specified filename '%s' does not contain an image sequence pattern or a pattern is invalid.\n", s->url);
173  "Use a pattern such as %%03d for an image sequence or "
174  "use the -update option (with -frames:v 1 if needed) to write a single image.\n");
175  av_bprint_clear(&filename);
176  av_bprintf(&filename, "%s", s->url);
177  } else {
178  av_log(s, AV_LOG_ERROR, "Cannot write more than one file with the same name. Are you missing the -update option or a sequence pattern?\n");
179  ret = AVERROR(EINVAL);
180  goto fail;
181  }
182  }
183  if (!av_bprint_is_complete(&filename)) {
184  ret = AVERROR(ENOMEM);
185  goto fail;
186  }
187  for (i = 0; i < 4; i++) {
188  av_dict_copy(&options, img->protocol_opts, 0);
189  if (img->use_rename) {
190  tmp[i] = av_asprintf("%s.tmp", filename.str);
191  target[i] = av_strdup(filename.str);
192  if (!tmp[i] || !target[i]) {
193  ret = AVERROR(ENOMEM);
194  goto fail;
195  }
196  }
197  if (s->io_open(s, &pb[i], tmp[i] ? tmp[i] : filename.str, AVIO_FLAG_WRITE, &options) < 0) {
198  av_log(s, AV_LOG_ERROR, "Could not open file : %s\n", tmp[i] ? tmp[i] : filename.str);
199  ret = AVERROR(EIO);
200  goto fail;
201  }
202  if (options) {
203  av_log(s, AV_LOG_ERROR, "Could not recognize some protocol options\n");
204  ret = AVERROR(EINVAL);
205  goto fail;
206  }
207 
208  if (!img->split_planes || i+1 >= desc->nb_components)
209  break;
210  filename.str[filename.len - 1] = "UVAx"[i];
211  }
212  av_bprint_finalize(&filename, NULL);
213 
214  if (img->split_planes) {
215  int ysize = par->width * par->height;
216  int usize = AV_CEIL_RSHIFT(par->width, desc->log2_chroma_w) * AV_CEIL_RSHIFT(par->height, desc->log2_chroma_h);
217  if (desc->comp[0].depth >= 9) {
218  ysize *= 2;
219  usize *= 2;
220  }
221  if ((ret = write_and_close(s, &pb[0], pkt->data , ysize)) < 0 ||
222  (ret = write_and_close(s, &pb[1], pkt->data + ysize , usize)) < 0 ||
223  (ret = write_and_close(s, &pb[2], pkt->data + ysize + usize, usize)) < 0)
224  goto fail;
225  if (desc->nb_components > 3)
226  ret = write_and_close(s, &pb[3], pkt->data + ysize + 2*usize, ysize);
227  } else if (img->muxer) {
228  if ((ret = write_muxed_file(s, pb[0], pkt)) < 0)
229  goto fail;
230  ret = ff_format_io_close(s, &pb[0]);
231  } else {
232  ret = write_and_close(s, &pb[0], pkt->data, pkt->size);
233  }
234  if (ret < 0)
235  goto fail;
236 
237  for (i = 0; i < 4 && tmp[i]; i++) {
238  int ret = ff_rename(tmp[i], target[i], s);
239  if (ret < 0)
240  goto fail;
241  av_freep(&tmp[i]);
242  av_freep(&target[i]);
243  }
244 
245  img->img_number++;
246  return 0;
247 
248 fail:
249  av_bprint_finalize(&filename, NULL);
251  for (i = 0; i < FF_ARRAY_ELEMS(pb); i++) {
252  av_freep(&tmp[i]);
253  av_freep(&target[i]);
254  if (pb[i])
255  ff_format_io_close(s, &pb[i]);
256  }
257  return ret;
258 }
259 
260 static int query_codec(enum AVCodecID id, int std_compliance)
261 {
262  int i;
263  for (i = 0; ff_img_tags[i].id != AV_CODEC_ID_NONE; i++)
264  if (ff_img_tags[i].id == id)
265  return 1;
266 
267  // Anything really can be stored in img2
268  return std_compliance < FF_COMPLIANCE_NORMAL;
269 }
270 
271 #define OFFSET(x) offsetof(VideoMuxData, x)
272 #define ENC AV_OPT_FLAG_ENCODING_PARAM
273 static const AVOption muxoptions[] = {
274  { "update", "continuously overwrite one file", OFFSET(update), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
275  { "start_number", "set first number in the sequence", OFFSET(start_img_number), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, INT_MAX, ENC },
276  { "strftime", "use strftime for filename", OFFSET(use_strftime), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
277  { "frame_pts", "use current frame pts for filename", OFFSET(frame_pts), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
278  { "atomic_writing", "write files atomically (using temporary files and renames)", OFFSET(use_rename), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
279  { "protocol_opts", "specify protocol options for the opened files", OFFSET(protocol_opts), AV_OPT_TYPE_DICT, {0}, 0, 0, ENC },
280  { NULL },
281 };
282 
283 #if CONFIG_IMAGE2_MUXER
284 static const AVClass img2mux_class = {
285  .class_name = "image2 muxer",
286  .item_name = av_default_item_name,
287  .option = muxoptions,
288  .version = LIBAVUTIL_VERSION_INT,
289 };
290 
292  .p.name = "image2",
293  .p.long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
294  .p.extensions = "bmp,dpx,exr,jls,jpeg,jpg,jxl,ljpg,pam,pbm,pcx,pfm,pgm,pgmyuv,phm,"
295  "png,ppm,sgi,tga,tif,tiff,jp2,j2c,j2k,xwd,sun,ras,rs,im1,im8,"
296  "im24,sunras,vbn,xbm,xface,pix,y,avif,qoi,hdr,wbmp",
297  .priv_data_size = sizeof(VideoMuxData),
298  .p.video_codec = AV_CODEC_ID_MJPEG,
299  .write_header = write_header,
300  .write_packet = write_packet,
301  .query_codec = query_codec,
303  .p.priv_class = &img2mux_class,
304 };
305 #endif
306 #if CONFIG_IMAGE2PIPE_MUXER
308  .p.name = "image2pipe",
309  .p.long_name = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
310  .priv_data_size = sizeof(VideoMuxData),
311  .p.video_codec = AV_CODEC_ID_MJPEG,
312  .write_header = write_header,
313  .write_packet = write_packet_pipe,
314  .query_codec = query_codec,
316 };
317 #endif
ff_image2_muxer
const FFOutputFormat ff_image2_muxer
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: packet.c:432
VideoMuxData::img_number
int img_number
Definition: img2enc.c:45
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
AV_BPRINT_SIZE_UNLIMITED
#define AV_BPRINT_SIZE_UNLIMITED
AVOutputFormat::name
const char * name
Definition: avformat.h:506
av_bprint_is_complete
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition: bprint.h:218
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
write_packet_pipe
static int write_packet_pipe(AVFormatContext *s, AVPacket *pkt)
Definition: img2enc.c:119
AVFMT_NODIMENSIONS
#define AVFMT_NODIMENSIONS
Format does not need width/height.
Definition: avformat.h:482
out
FILE * out
Definition: movenc.c:55
av_bprint_init
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:47
ffformatcontext
static av_always_inline FFFormatContext * ffformatcontext(AVFormatContext *s)
Definition: internal.h:123
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
av_pix_fmt_desc_get
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3441
AVFMT_NOTIMESTAMPS
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:478
av_asprintf
char * av_asprintf(const char *fmt,...)
Definition: avstring.c:115
av_strcasecmp
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:208
AV_CODEC_ID_RAWVIDEO
@ AV_CODEC_ID_RAWVIDEO
Definition: codec_id.h:65
pixdesc.h
AVPacket::data
uint8_t * data
Definition: packet.h:552
AVOption
AVOption.
Definition: opt.h:429
VideoMuxData::muxer
const char * muxer
Definition: img2enc.c:50
write_and_close
static int write_and_close(AVFormatContext *s, AVIOContext **pb, const unsigned char *buf, int size)
Definition: img2enc.c:133
OFFSET
#define OFFSET(x)
Definition: img2enc.c:271
AVDictionary
Definition: dict.c:32
FFOutputFormat::p
AVOutputFormat p
The public AVOutputFormat.
Definition: mux.h:65
write_header
static int write_header(AVFormatContext *s)
Definition: img2enc.c:55
fail
#define fail()
Definition: checkasm.h:199
query_codec
static int query_codec(enum AVCodecID id, int std_compliance)
Definition: img2enc.c:260
ff_bprint_get_frame_filename
int ff_bprint_get_frame_filename(struct AVBPrint *buf, const char *path, int64_t number, int flags)
Return in 'buf' the path with 'd' replaced by a number.
Definition: utils.c:286
ff_rename
int ff_rename(const char *url_src, const char *url_dst, void *logctx)
Wrap ffurl_move() and log if error happens.
Definition: avio.c:862
write_packet
static int write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: img2enc.c:140
pkt
AVPacket * pkt
Definition: movenc.c:60
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
muxoptions
static const AVOption muxoptions[]
Definition: img2enc.c:273
ff_img_tags
const IdStrMap ff_img_tags[]
Definition: img2.c:104
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
AV_CEIL_RSHIFT
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:60
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:134
AVIO_FLAG_WRITE
#define AVIO_FLAG_WRITE
write-only
Definition: avio.h:618
avformat_write_header
av_warn_unused_result int avformat_write_header(AVFormatContext *s, AVDictionary **options)
Allocate the stream private data and write the stream header to an output media file.
Definition: mux.c:467
time_internal.h
avio_flush
void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:228
AVFormatContext
Format I/O context.
Definition: avformat.h:1264
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:767
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
VideoMuxData::use_strftime
int use_strftime
Definition: img2enc.c:48
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:76
VideoMuxData::update
int update
Definition: img2enc.c:47
NULL
#define NULL
Definition: coverity.c:32
AV_CODEC_ID_AV1
@ AV_CODEC_ID_AV1
Definition: codec_id.h:284
IdStrMap::id
enum AVCodecID id
Definition: img2.h:67
tmp
static uint8_t tmp[20]
Definition: aes_ctr.c:47
AV_CODEC_ID_FITS
@ AV_CODEC_ID_FITS
Definition: codec_id.h:290
AV_OPT_TYPE_DICT
@ AV_OPT_TYPE_DICT
Underlying C type is AVDictionary*.
Definition: opt.h:290
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:241
AVFormatContext::pb
AVIOContext * pb
I/O context.
Definition: avformat.h:1306
options
Definition: swscale.c:43
FFOutputFormat
Definition: mux.h:61
time.h
av_bprint_strftime
void av_bprint_strftime(AVBPrint *buf, const char *fmt, const struct tm *tm)
Append a formatted date and time to a print buffer.
Definition: bprint.c:166
av_packet_ref
int av_packet_ref(AVPacket *dst, const AVPacket *src)
Setup a new reference to the data described by a given packet.
Definition: packet.c:440
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:49
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
AVPacket::size
int size
Definition: packet.h:553
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
av_bprint_finalize
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
localtime_r
#define localtime_r
Definition: time_internal.h:46
VideoMuxData::split_planes
int split_planes
use independent file for each Y, U, V plane
Definition: img2enc.c:46
size
int size
Definition: twinvq_data.h:10344
AVFMT_NOFILE
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:468
ff_format_io_close
int ff_format_io_close(AVFormatContext *s, AVIOContext **pb)
Definition: avformat.c:868
avio_write
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:206
FF_COMPLIANCE_NORMAL
#define FF_COMPLIANCE_NORMAL
Definition: defs.h:60
img
#define img
Definition: vf_colormatrix.c:114
av_dict_free
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition: dict.c:233
VideoMuxData::use_rename
int use_rename
Definition: img2enc.c:51
VideoMuxData::frame_pts
int frame_pts
Definition: img2enc.c:49
AV_FRAME_FILENAME_FLAGS_MULTIPLE
#define AV_FRAME_FILENAME_FLAGS_MULTIPLE
Allow multiple d.
Definition: avformat.h:2820
AV_CODEC_ID_GIF
@ AV_CODEC_ID_GIF
Definition: codec_id.h:149
AV_CODEC_ID_MJPEG
@ AV_CODEC_ID_MJPEG
Definition: codec_id.h:59
av_write_trailer
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
Definition: mux.c:1238
bprint.h
log.h
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:50
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:545
avio_internal.h
AVCodecParameters::height
int height
Definition: codec_par.h:135
img2.h
ENC
#define ENC
Definition: img2enc.c:272
AVStream::id
int id
Format-specific stream ID.
Definition: avformat.h:756
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:744
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:81
avformat.h
av_bprintf
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:122
dict.h
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
av_bprint_clear
void av_bprint_clear(AVBPrint *buf)
Reset the string to "" but keep internal allocated data.
Definition: bprint.c:227
avformat_free_context
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
Definition: avformat.c:141
update
static av_always_inline void update(AVFilterContext *ctx, AVFrame *insamples, int is_silence, int current_sample, int64_t nb_samples_notify, AVRational time_base)
Definition: af_silencedetect.c:78
VideoMuxData
Definition: img2enc.c:42
AV_PIX_FMT_FLAG_PLANAR
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
Definition: pixdesc.h:132
write_muxed_file
static int write_muxed_file(AVFormatContext *s, AVIOContext *pb, AVPacket *pkt)
Definition: img2enc.c:81
ff_image2pipe_muxer
const FFOutputFormat ff_image2pipe_muxer
AVPacket::stream_index
int stream_index
Definition: packet.h:554
VideoMuxData::start_img_number
int start_img_number
Definition: img2enc.c:44
av_strdup
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:272
desc
const char * desc
Definition: libsvtav1.c:79
mem.h
FFFormatContext::pkt
AVPacket * pkt
Used to hold temporary packets for the generic demuxing code.
Definition: internal.h:111
AVCodecParameters::format
int format
Definition: codec_par.h:92
AVPixFmtDescriptor
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:529
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition: opt.h:327
av_interleaved_write_frame
int av_interleaved_write_frame(AVFormatContext *s, AVPacket *pkt)
Write a packet to an output media file ensuring correct interleaving.
Definition: mux.c:1223
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
av_dict_copy
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition: dict.c:247
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
avstring.h
avformat_alloc_output_context2
int avformat_alloc_output_context2(AVFormatContext **ctx, const AVOutputFormat *oformat, const char *format_name, const char *filename)
Allocate an AVFormatContext for an output format.
Definition: mux.c:95
VideoMuxData::protocol_opts
AVDictionary * protocol_opts
Definition: img2enc.c:52
avcodec_parameters_copy
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
Copy the contents of src to dst.
Definition: codec_par.c:106
mux.h