summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2023-03-05 18:59:10 +0100
committerStefano Sabatini <stefasab@gmail.com>2023-03-12 16:45:05 +0100
commitcd0d267b9265af9c3cf19fca0a65992933e4a877 (patch)
treeb63d1f0a584a760cad3dc6b62d53a210a317eb95 /doc
parentdcf963f4906fa594aea3e54d3f2f84637624acca (diff)
downloadffmpeg-cd0d267b9265af9c3cf19fca0a65992933e4a877.tar.gz
doc/examples/mux: rename alloc_picture to alloc_frame
The new name is consistent with the updated API.
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/mux.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/examples/mux.c b/doc/examples/mux.c
index d1f682e196..b034aad56f 100644
--- a/doc/examples/mux.c
+++ b/doc/examples/mux.c
@@ -379,27 +379,27 @@ static int write_audio_frame(AVFormatContext *oc, OutputStream *ost)
/**************************************************************/
/* video output */
-static AVFrame *alloc_picture(enum AVPixelFormat pix_fmt, int width, int height)
+static AVFrame *alloc_frame(enum AVPixelFormat pix_fmt, int width, int height)
{
- AVFrame *picture;
+ AVFrame *frame;
int ret;
- picture = av_frame_alloc();
- if (!picture)
+ frame = av_frame_alloc();
+ if (!frame)
return NULL;
- picture->format = pix_fmt;
- picture->width = width;
- picture->height = height;
+ frame->format = pix_fmt;
+ frame->width = width;
+ frame->height = height;
/* allocate the buffers for the frame data */
- ret = av_frame_get_buffer(picture, 0);
+ ret = av_frame_get_buffer(frame, 0);
if (ret < 0) {
fprintf(stderr, "Could not allocate frame data.\n");
exit(1);
}
- return picture;
+ return frame;
}
static void open_video(AVFormatContext *oc, const AVCodec *codec,
@@ -420,7 +420,7 @@ static void open_video(AVFormatContext *oc, const AVCodec *codec,
}
/* allocate and init a re-usable frame */
- ost->frame = alloc_picture(c->pix_fmt, c->width, c->height);
+ ost->frame = alloc_frame(c->pix_fmt, c->width, c->height);
if (!ost->frame) {
fprintf(stderr, "Could not allocate video frame\n");
exit(1);
@@ -431,9 +431,9 @@ static void open_video(AVFormatContext *oc, const AVCodec *codec,
* output format. */
ost->tmp_frame = NULL;
if (c->pix_fmt != AV_PIX_FMT_YUV420P) {
- ost->tmp_frame = alloc_picture(AV_PIX_FMT_YUV420P, c->width, c->height);
+ ost->tmp_frame = alloc_frame(AV_PIX_FMT_YUV420P, c->width, c->height);
if (!ost->tmp_frame) {
- fprintf(stderr, "Could not allocate temporary picture\n");
+ fprintf(stderr, "Could not allocate temporary video frame\n");
exit(1);
}
}