Gstreamer h.263 problem

Hello !
We need a hand with this simple pipeline:
gst-launch-0.10 videotestsrc ! ‘video/x-raw-yuv, width=(int)640, height=(int)480, format=(fourcc)I420’ ! nv_omx_h263enc ! fakesink

Output:

gst-launch-0.10 videotestsrc ! 'video/x-raw-yuv, width=(int)640, height=(int)480, format=(fourcc)I420' ! nv_omx_h263enc ! fakesink
Inside NvxLiteH264DecoderLowLatencyInitNvxLiteH264DecoderLowLatencyInit set DPB and MjstreamingSetting pipeline to PAUSED ...
Pipeline is PREROLLING ...
Framerate set to : 30 at NvxVideoEncoderSetParameterNvMMLiteOpen : Block : BlockType = 3 
===== MSENC =====
VENC: NvMMLiteVideoEncBlockOpen: 748: Encoder type 0x3 not supported
NvMMLiteBlockCreate : Block : BlockType = 3 
NvxVideoEncoderAcquireResources : NvxNvMMLiteTransformOpen failed [code]
0:00:00.116782523 26275   0x147720 ERROR                    omx /dvs/git/dirty/git-master_linux/external/gstreamer/gst-openmax/omx/gstomx_util.c:1340:EventHandler:<omxh263enc0> unrecoverable error: There were insufficient resources to perform the requested operation (0x80001000)
0:00:00.116967854 26275   0x147720 WARN                     omx /dvs/git/dirty/git-master_linux/external/gstreamer/gst-openmax/omx/gstomx_util.c:1166:omx_report_error:<omxh263enc0> error: There were insufficient resources to perform the requested operation
0:00:00.117254852 26275   0x147720 WARN                     omx /dvs/git/dirty/git-master_linux/external/gstreamer/gst-openmax/omx/gstomx_util.c:1346:EventHandler:<omxh263enc0> error: There were insufficient resources to perform the requested operation
ERROR: from element /GstPipeline:pipeline0/GstOmxH263Enc:omxh263enc0: GStreamer encountered a general resource error.
Additional debug info:
/dvs/git/dirty/git-master_linux/external/gstreamer/gst-openmax/omx/gstomx_util.c(1166): omx_report_error (): /GstPipeline:pipeline0/GstOmxH263Enc:omxh263enc0:
There were insufficient resources to perform the requested operation
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...

When setting codec to nv_omx_h264enc or nv_omx_vp8enc the pipeline works. We’re using release 21.1 . Tnx.

Hi,

HW accelerated H263 encode using gst-openmax plugin(nv_omx_h263enc) is not supported on Jetson platform.(release 21.1)
Can you give a try with following sample gst pipeline using OSS sw plugin,

gst-launch-0.10 videotestsrc ! ‘video/x-raw-yuv, width=(int)704, height=(int)576, format=(fourcc)I420, framerate=(fraction)30/1’ ! ffenc_h263 ! qtmux ! filesink location=temp_h263.mp4 -v -e

Thanks apandya ! OSS sw plugin is indeed an option.

Is there a list of HW video codecs that are supported on TK1 along with future roadmap ?

Why is it that h.263 HW encoder/decoder was dropped with R21.1 ?
(In the SW Feature List Tegra Linux Driver Package 19.3 document is h.263 support listed…)