Changeset 3852e2c9 in ffmpeg
- Timestamp:
- Jan 8, 2015, 11:53:25 AM (10 years ago)
- 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)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r71ec3d36 r3852e2c9 194 194 --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no] 195 195 --enable-libopencv enable video filtering via libopencv [no] 196 --enable-libopenh264 enable H 264 encoding via OpenH264 [no]196 --enable-libopenh264 enable H.264 encoding via OpenH264 [no] 197 197 --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no] 198 198 --enable-libopus enable Opus de/encoding via libopus [no] -
libavcodec/libopenh264enc.c
r71ec3d36 r3852e2c9 183 183 } 184 184 first_layer = 0; 185 // Normal frames are returned with one single layer s, while IDR185 // Normal frames are returned with one single layer, while IDR 186 186 // frames have two layers, where the first layer contains the SPS/PPS. 187 187 // If using global headers, don't include the SPS/PPS in the returned … … 215 215 AVCodec ff_libopenh264_encoder = { 216 216 .name = "libopenh264", 217 .long_name = NULL_IF_CONFIG_SMALL("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"), 217 218 .type = AVMEDIA_TYPE_VIDEO, 218 219 .id = AV_CODEC_ID_H264, … … 224 225 .pix_fmts = (const enum PixelFormat[]){ AV_PIX_FMT_YUV420P, 225 226 AV_PIX_FMT_NONE }, 226 .long_name = NULL_IF_CONFIG_SMALL("OpenH264"),227 227 .priv_class = &class, 228 228 };
Note:
See TracChangeset
for help on using the changeset viewer.