Hi Mike,<br />
<br />
filesrc creation is not problem. <br />
<br />
my example code is:<br />
<br />
/* Create gstreamer elements */<br />
bin = gst_pipeline_new ("pipeline");<br />
g_assert (bin);<br />
filesrc = gst_element_factory_make ("filesrc", "disk_source");<br />
g_assert (filesrc);<br />
g_object_set (G_OBJECT (filesrc), "location", argv[1], NULL);<br />
decoder = gst_element_factory_make ("mad", "decode");<br />
f (!decoder) {<br />
    g_print ("could not find plugin "mad"");<br />
    return -1;<br />
}<br />
<br />
Here application endup with an error "could not find plugin "mad"."<br />
<br />
as you said you wouldn't expect TI to be including mad plugin.<br />
<br />
Is that mean i will have to use TI's plugin olny?<br />
Because i have seen that (with gst-inspect) there are few plugins available with this release or i can use other one also by cross-compiling gst-ffmpeg.<br />
Please find the attached log of gst-inspect.<br />
<br />
~Anup<br />
<br />
<br />
On Wed, 15 Apr 2009 22:58:04 +0530  wrote<br />
>On Mon, Apr 6, 2009 at 10:49 PM, anup behare <anup_behare@rediffmail.com> wrote:<br />
>><br />
>> Hi all,<br />
>><br />
>> I am using Gstreamer (version gst-ti-plugin-full-0.99.00) ported by TI on<br />
>> DM6446.<br />
>><br />
>> with this i am able to run demo application provided by TI decode_qt.sh) i.e<br />
>> decoding qt format using TI's codec combo.<br />
>><br />
>> Now i am trying to run one program which uses ffmpeg for decoding Mp3<br />
>> audio.here i am getting message "Decoder or output could not be found" i.e<br />
>> means my<br />
>> gst_element_factory_make ("filesrc", "my_filesource");<br />
>> gst_element_factory_make ("mad", "my_decoder");<br />
><br />
>Creating filesrc shouldn't be failing - unless the TI package is, for<br />
>some reason, stripping very basic functionality out of gstreamer (in<br />
>which case I'd recommend not using it). 'mad', on the other hand, is<br />
>an mp3 decoder, and I wouldn't expect TI to be including that.<br />
><br />
>You should replace it with a different (possibly TI-specific) decoder.<br />
><br />
>Mike<br />
><br><Table border=0 Width=644 Height=57 cellspacing=0 cellpadding=0 style="font-family:Verdana;font-size:11px;line-height:15px;"><TR><td><A HREF="http://sigads.rediff.com/RealMedia/ads/click_nx.ads/www.rediffmail.com/signatureline.htm@Middle?" target="_blank"><IMG SRC="http://sigads.rediff.com/RealMedia/ads/adstream_nx.ads/www.rediffmail.com/signatureline.htm@Middle"></A></td></TR></Table>