summaryrefslogtreecommitdiff
path: root/omx/gstomxmpeg4videoenc.c
Commit message (Collapse)AuthorAgeFilesLines
* omx: Add hardware classifiers to encoders/decodersCharlie Turner2019-03-261-1/+1
|
* omx: more printf format fixesTim-Philipp Müller2013-04-181-2/+3
| | | | | | | | Fix printf formats again, so that gst-omx compiles warning- free on the Raspberry Pi as well. Unfortunately OMX_UINT32 maybe be typedefed to uint32_t or unsigned long, which doesn't work well with our debugging printf format strings, so just use %u for those and cast to guint.
* omx: fix printf formats in debug messagesTim-Philipp Müller2013-04-081-1/+1
| | | | | OMX_U32 is typedefed to an unsigned long, OMX_TICKS to a 64-bit integer.
* omx: fix compiler warnings when compiling with -DG_DISABLE_ASSERTTim-Philipp Müller2013-03-221-2/+2
| | | | | As we do for releases. Fixes 'variable may be used uninitialized' warnings.
* omx: Only unref caps after usage of its fieldsSebastian Dröge2013-03-141-2/+2
|
* omx: Don't set profile/level in other encoders if downstream caps don't ↵Sebastian Dröge2013-03-111-33/+38
| | | | specify any
* omxvideoenc: And set it actually on the right portSebastian Dröge2013-03-011-2/+5
|
* omxvideoenc: Set the coding type in the subclasses to the specific codecSebastian Dröge2013-03-011-0/+7
|
* omxvideoenc: Rename component variableSebastian Dröge2013-02-251-4/+4
|
* omx: Port to video base classes from -baseSebastian Dröge2012-10-221-15/+7
|
* omx: gst_element_class_set_details_simple() -> set_static_metadata()Tim-Philipp Müller2012-10-171-1/+1
|
* Port to Gst 0.11Olivier Crête2012-04-131-45/+33
|
* omxvideoenc: Use "video/x-raw-yuv" as sink template caps instead of strict ↵Sebastian Dröge2011-08-101-1/+0
| | | | I420 caps
* omxvideoenc: Don't fail if setting the bitrate or profile is not supported ↵Sebastian Dröge2011-08-021-110/+119
| | | | | | by the component Also always set/get the profile, even if there are no peer caps.
* omxmpeg4videoenc: Add support for setting profile/level via capsSebastian Dröge2011-07-291-1/+202
|
* omx: Set default roles for the components if none were set from the config fileSebastian Dröge2011-07-211-0/+6
|
* omxvideoenc: Add video encoder base class and MPEG4 video encoderSebastian Dröge2011-07-201-0/+125
Unfortunately requires lots of hacks again to work properly with Bellagio.