diff mbox series

[FFmpeg-devel] avformat/img2dec: Fix typo in AVClass name

Message ID AM7PR03MB666082F850623B7BD83361FC8F199@AM7PR03MB6660.eurprd03.prod.outlook.com
State Accepted
Commit 40ce7aec09e0fd69702543e5bac7a4b09eb401cb
Headers show
Series [FFmpeg-devel] avformat/img2dec: Fix typo in AVClass name | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Andreas Rheinhardt July 8, 2021, 7:35 p.m. UTC
Found-by: Gyan Doshi <ffmpeg@gyani.pro>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
Thanks, sorry for this. Will apply it soon.

 libavformat/img2dec.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c
index c9651bd941..485444ed31 100644
--- a/libavformat/img2dec.c
+++ b/libavformat/img2dec.c
@@ -651,7 +651,7 @@  static const AVOption img2pipe_options[] = {
     { "frame_size", "force frame size in bytes", OFFSET(frame_size), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, DEC },
     COMMON_OPTIONS
 };
-static const AVClass imgagepipe_class = {
+static const AVClass imagepipe_class = {
     .class_name = "imagepipe demuxer",
     .item_name  = av_default_item_name,
     .option     = img2pipe_options,
@@ -665,7 +665,7 @@  const AVInputFormat ff_image2pipe_demuxer = {
     .priv_data_size = sizeof(VideoDemuxData),
     .read_header    = ff_img_read_header,
     .read_packet    = ff_img_read_packet,
-    .priv_class     = &imgagepipe_class,
+    .priv_class     = &imagepipe_class,
 };
 #endif
 
@@ -1113,7 +1113,7 @@  const AVInputFormat ff_image_ ## imgname ## _pipe_demuxer = {\
     .read_probe     = imgname ## _probe,\
     .read_header    = ff_img_read_header,\
     .read_packet    = ff_img_read_packet,\
-    .priv_class     = &imgagepipe_class,\
+    .priv_class     = &imagepipe_class,\
     .flags          = AVFMT_GENERIC_INDEX, \
     .raw_codec_id   = codecid,\
 };