diff options
author | Martin Storsjö <martin@martin.st> | 2016-06-24 00:58:17 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2016-06-28 14:17:43 +0300 |
commit | 82b7525173f20702a8cbc26ebedbf4b69b8fecec (patch) | |
tree | 125eb3d187db9c5a9da834e7aa8ee1696461fb3b /libavcodec/allcodecs.c | |
parent | 785c25443b56adb6dbbb78d68cccbd9bd4a42e05 (diff) | |
download | ffmpeg-82b7525173f20702a8cbc26ebedbf4b69b8fecec.tar.gz |
Add an OpenH264 decoder wrapper
While it is less featureful (and slower) than the built-in H264
decoder, one could potentially want to use it to take advantage
of the cisco patent license offer.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 6fa1617185..e259de2510 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -488,7 +488,7 @@ void avcodec_register_all(void) /* external libraries, that shouldn't be used by default if one of the * above is available */ - REGISTER_ENCODER(LIBOPENH264, libopenh264); + REGISTER_ENCDEC (LIBOPENH264, libopenh264); REGISTER_ENCODER(H264_NVENC, h264_nvenc); REGISTER_ENCODER(H264_OMX, h264_omx); REGISTER_ENCODER(H264_QSV, h264_qsv); |