diff options
author | Gurkirpal Singh <[email protected]> | 2018-01-20 07:22:33 +0530 |
---|---|---|
committer | Julien Isorce <[email protected]> | 2018-03-06 17:20:08 +0000 |
commit | b2f2236dc565dd1460f0c1d26af905955bf3a6a1 (patch) | |
tree | eb2d2d48140f54ff501d603e6da8651d23c6dd6e /src/gallium/state_trackers/omx/meson.build | |
parent | 83d4a5d5aea5a8a05be2eb3116d2cf3acd201876 (diff) |
st/omx/tizonia: Add H.264 encoder
v2: Refactor out screen functions to st/omx
Example Gstreamer pipeline :
gst-launch-1.0 filesrc location=movie.mp4 ! qtdemux ! h264parse ! avdec_h264 ! videoconvert ! omxh264enc ! h264parse ! avdec_h264 ! videoconvert ! ximagesink
Acked-by: Leo Liu <[email protected]>
Reviewed-by: Julien Isorce <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/omx/meson.build')
-rw-r--r-- | src/gallium/state_trackers/omx/meson.build | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/omx/meson.build b/src/gallium/state_trackers/omx/meson.build index 33e969814f5..f2daf441175 100644 --- a/src/gallium/state_trackers/omx/meson.build +++ b/src/gallium/state_trackers/omx/meson.build @@ -21,6 +21,7 @@ files_omx = files( 'vid_dec_common.c', 'vid_dec_h264_common.c', + 'vid_enc_common.c', 'vid_omx_common.c' ) @@ -38,7 +39,11 @@ files_omx += files( 'tizonia/entrypoint.c', 'tizonia/h264d.c', 'tizonia/h264dprc.c', - 'tizonia/h264dinport.c' + 'tizonia/h264dinport.c', + 'tizonia/h264e.c', + 'tizonia/h264eprc.c', + 'tizonia/h264einport.c', + 'tizonia/h264eoutport.c' ) endif |