summaryrefslogtreecommitdiff
path: root/libavcodec/libopenh264enc.c
Commit message (Collapse)AuthorAge
...
* | Merge commit '25c29d32835f38cdc5f0c84fa27dfc489a228770'Michael Niedermayer2015-03-06
|\| | | | | | | | | | | | | * commit '25c29d32835f38cdc5f0c84fa27dfc489a228770': libopenh264enc: Add support for building with OpenH264 1.4 Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * libopenh264enc: Add support for building with OpenH264 1.4Martin Storsjö2015-03-06
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit '6996fd204a7f28b46a8c3c97bcf223998218c743'Michael Niedermayer2015-01-29
|\| | | | | | | | | | | | | * commit '6996fd204a7f28b46a8c3c97bcf223998218c743': libopenh264: Log debug messages to a non-null context Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * libopenh264: Log debug messages to a non-null contextMartin Storsjö2015-01-29
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit '440119b18836887d98c9e337c5911563bb43588c'Michael Niedermayer2015-01-20
|\| | | | | | | | | | | | | * commit '440119b18836887d98c9e337c5911563bb43588c': libopenh264enc: Move a declaration of a variable into an ifdef Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * libopenh264enc: Move a declaration of a variable into an ifdefMartin Storsjö2015-01-20
| | | | | | | | | | | | | | This avoids needing an attribute for silencing warnings about it being unused. Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit 'bba02479260d0e7dec8c530a7e75a1c7aa53c06e'Michael Niedermayer2015-01-20
|\| | | | | | | | | | | | | * commit 'bba02479260d0e7dec8c530a7e75a1c7aa53c06e': libopenh264enc: Remove a workaround for silencing warnings about unused variables in the OpenH264 header Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * libopenh264enc: Remove a workaround for silencing warnings about unused ↵Martin Storsjö2015-01-20
| | | | | | | | | | | | | | | | | | | | variables in the OpenH264 header The 1.3 release branch of OpenH264 (as well as the master branch) have been updated so that GCC no longer warns about this variable as being unused. Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit '3852e2c926ddb166c7aa69c4644a86100ea144d9'Michael Niedermayer2015-01-08
|\| | | | | | | | | | | | | * commit '3852e2c926ddb166c7aa69c4644a86100ea144d9': libopenh264enc: Fix a typo and some nitpicks Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * libopenh264enc: Fix a typo and some nitpicksMartin Storsjö2015-01-08
| | | | | | | | | | | | Also move the .long_name entry to below the .name entry. Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge commit '8a3d9ca603f4d15ecaa9ca379cbaab4ecaec8ce4'Michael Niedermayer2015-01-07
|/ | | | | | | | | | | | * commit '8a3d9ca603f4d15ecaa9ca379cbaab4ecaec8ce4': libavcodec: Add an OpenH264 encoder wrapper Conflicts: Changelog configure libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
* libavcodec: Add an OpenH264 encoder wrapperMartin Storsjö2015-01-06
Compared to existing, common opensource H264 encoders, this can be useful since it has got a different license (BSD instead of GPL). Performance- and qualitywise it is comparable to x264 in ultrafast mode. Hooking it up as an encoder in libavcodec also simplifies comparing it against other common encoders. This requires OpenH264 1.3 or newer. Since the OpenH264 API and ABI changes frequently, only releases are supported. To take advantage of the OpenH264 patent offer, the OpenH264 library must not be redistributed, but downloaded at runtime at the end-user's system. Signed-off-by: Martin Storsjö <martin@martin.st>