diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-01-19 13:33:28 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-01-20 10:34:48 +0100 |
commit | 08bebeb1bed3feee99d30cd6066d3466291dc8ed (patch) | |
tree | 89bcdd9a892d3a837b1a09d3ab0bde48557c4049 /libavdevice/v4l2enc.c | |
parent | a8bc79c3fd96a8287e241e6913ad5cf4d4838f5c (diff) | |
download | ffmpeg-08bebeb1bed3feee99d30cd6066d3466291dc8ed.tar.gz |
Revert "all: Don't set AVClass.item_name to its default value"
Some callers assume that item_name is always set, so this may be
considered an API break.
This reverts commit 0c6203c97a99f69dbaa6e4011d48c331e1111f5e.
Diffstat (limited to 'libavdevice/v4l2enc.c')
-rw-r--r-- | libavdevice/v4l2enc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/v4l2enc.c b/libavdevice/v4l2enc.c index 68e303fabf..8e8f911996 100644 --- a/libavdevice/v4l2enc.c +++ b/libavdevice/v4l2enc.c @@ -107,6 +107,7 @@ static int write_trailer(AVFormatContext *s1) static const AVClass v4l2_class = { .class_name = "V4L2 outdev", + .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .category = AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT, }; |