Changeset 3852e2c9 in ffmpeg


Ignore:
Timestamp:
Jan 8, 2015, 11:53:25 AM (10 years ago)
Author:
Martin Storsjö <martin@martin.st>
Branches:
master
Children:
2dbd35b0, 93870f0
Parents:
71ec3d36
git-author:
Martin Storsjö <martin@martin.st> (01/07/15 22:03:09)
git-committer:
Martin Storsjö <martin@martin.st> (01/08/15 11:53:25)
Message:

libopenh264enc: Fix a typo and some nitpicks

Also move the .long_name entry to below the .name entry.

Signed-off-by: Martin Storsjö <martin@martin.st>

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • configure

    r71ec3d36 r3852e2c9  
    194194  --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
    195195  --enable-libopencv       enable video filtering via libopencv [no]
    196   --enable-libopenh264     enable H264 encoding via OpenH264 [no]
     196  --enable-libopenh264     enable H.264 encoding via OpenH264 [no]
    197197  --enable-libopenjpeg     enable JPEG 2000 de/encoding via OpenJPEG [no]
    198198  --enable-libopus         enable Opus de/encoding via libopus [no]
  • libavcodec/libopenh264enc.c

    r71ec3d36 r3852e2c9  
    183183    }
    184184    first_layer = 0;
    185     // Normal frames are returned with one single layers, while IDR
     185    // Normal frames are returned with one single layer, while IDR
    186186    // frames have two layers, where the first layer contains the SPS/PPS.
    187187    // If using global headers, don't include the SPS/PPS in the returned
     
    215215AVCodec ff_libopenh264_encoder = {
    216216    .name           = "libopenh264",
     217    .long_name      = NULL_IF_CONFIG_SMALL("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
    217218    .type           = AVMEDIA_TYPE_VIDEO,
    218219    .id             = AV_CODEC_ID_H264,
     
    224225    .pix_fmts       = (const enum PixelFormat[]){ AV_PIX_FMT_YUV420P,
    225226                                                  AV_PIX_FMT_NONE },
    226     .long_name      = NULL_IF_CONFIG_SMALL("OpenH264"),
    227227    .priv_class     = &class,
    228228};
Note: See TracChangeset for help on using the changeset viewer.