<div dir="ltr"><div><div><div><div><div><div><div><div><div><div>Hi,<br><br>I have been struggling to get the amc plugin to work. I followed this link <a href="https://gstreamer.freedesktop.org/documentation/installing/for-android-development.html" target="_blank">https://gstreamer.freedesktop.<wbr>org/documentation/installing/<wbr>for-android-development.html</a> and got the Gstreamer Android binaries 1.12.3 and the gst-docs examples. I was able to compile the examples and started modifying example 3. My pipeline is as below,<br><br>gst_parse_launch("filesrc location=/storage/emulated/0/<wbr>myhevcfile.ts ! tsdemux ! queue ! openh264 ! amcviddec-omxgooglehevcdecoder ! autovideosink sync=false", &error) <br><br>This gives me a plugin amcviddec-omxgooglehevcdecoder not found error. The following pipeline with a software decoder works fine,<br>gst_parse_launch("filesrc location=/storage/emulated/0/<wbr>myhevcfile.ts ! tsdemux ! queue ! openh264 ! avdec_h265 ! autovideosink sync=false", &error)<br><br>Following the previous posts I have done the following,<br>1. Made sure that Android.mk explicitly lists androdmedia as one of the plugins.<br>2. Ran the following code to print out all the decoders,<br><br>  GList *l;<br>  GList *elements = gst_element_factory_list_get_elements (GST_ELEMENT_FACTORY_TYPE_DECODER, GST_RANK_NONE);<br>  for (l = elements; l; l = l->next) {<br>    GstElementFactory *f = l->data;<br>    g_print ("factory: %s\n", GST_OBJECT_NAME (f));<br>  }<br></div>This did not print amc as one of the plugin.<br></div>3. Turned logging to amc*:6 but didn't see any amc logs.<br></div>4. /etc/media_codecs.xml exists and it has an href to media_codecs_google_video.xml which has an entry for decoder - OMX.google.hevc.decoder.<br></div>5.This posts <a href="https://stackoverflow.com/questions/17659129/hardware-video-decoding-on-android-using-gstreamer">https://stackoverflow.com/questions/17659129/hardware-video-decoding-on-android-using-gstreamer</a> mentions that there are some dependent files that are needed. What files are those?<br></div>6. Do I need to compile amc from scratch?<br><br></div>This is on a Verizon 10 elipsis tablet.<br></div><br></div>I would really appreciate your help.<br></div>thanks,<br></div>V<br><div><div><div><div><div><div><div><div><div><div><div><div><div><div><br></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>