<div dir="ltr">Doesn't look like it was supported in 1.2 - that was one of my experiments. But I'll go take a look. That approach makes sense.<div><br></div><div>In general does the active master branch stay pretty stable? For a project that's pushing into new-ish territory (HLS and Android support) would you recommend using 1.2 or 1.3?</div>
<div><br></div><div>Dave</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Mar 6, 2014 at 7:43 AM, Sebastian Dröge <span dir="ltr"><<a href="mailto:sebastian@centricular.com" target="_blank">sebastian@centricular.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Di, 2014-03-04 at 01:05 -0800, Dave Walker wrote:<br>
> I've been attempting to get MPEG-TS content to play back using the Android<br>
> mediacodec decoders. I finally got it working and wanted to report my<br>
> findings and ask a couple questions about how to proceed. My device is a<br>
> Samsung Galaxy S4, and I'm not sure how commonplace this behavior is.<br>
><br>
> When I started the audio decoder failed to start. When buffering the first<br>
> frame I got the following from the OMX codec:<br>
><br>
> E/SEC_AAC_DEC( 208): This is unsupported profile in SAACD. Profile 31 is<br>
> not supported<br>
> E/SEC_AAC_DEC( 208): SAACD only supports AAC-LC Profile<br>
><br>
> So, the decoder's confused about profile. Often this data is passed in via<br>
> a 'csd-0' element in the MediaFormat, and sure enough it looks like this<br>
> has helped people in the past. The link below also points out an "is-adts"<br>
> flag in MediaFormat that should be sent to decode ADTS content, which is<br>
> what I have.<br>
><br>
> <a href="http://stackoverflow.com/questions/18784781/how-to-initialize-mediaformat-to-configure-a-mediacodec-to-decode-raw-aac-data" target="_blank">http://stackoverflow.com/questions/18784781/how-to-initialize-mediaformat-to-configure-a-mediacodec-to-decode-raw-aac-data</a><br>
><br>
> I added both csd-0 and is-adts to my MediaFormat, and this shifted around<br>
> the error a bit but ultimately didn't get rid of it. However, if I strip<br>
> out the 7 byte ADTS headers but leave the csd-0 buffer in place to include<br>
> the format parameters, then the content plays fine.<br>
><br>
> My question is - how should I best implement this for real? The ADTS format<br>
> is slightly more complicated than a simple 7 byte header, and I'm not sure<br>
> converting from adts->raw is really the business of the amc component. It<br>
> appears that this may be a device-specific foible, and that in general<br>
> devices should support this as long as is-adts is in the format. But my<br>
> device is a super common one - adding a workaround seems reasonable and par<br>
> for the course for the MediaCodec support. In any case the csd-0 element<br>
> will be needed to properly decode ADTS content, and the tsdemux component<br>
> isn't producing the codec data. I assume the correct fix here is to have<br>
> the demuxer create this data as part of its caps.<br>
><br>
> Thanks, and apologies in advance for any misunderstandings or mistaken<br>
> terminology. This is my first project in gstreamer.<br>
><br>
> Thanks for any advice you can provide.<br>
<br>
</div></div>You could put stream-format=raw on the sinkpad caps of the amc audio<br>
decoder for AAC. Then aacparse could do the conversion to the raw stream<br>
format from ADTS.<br>
<br>
I'm not entirely sure if this was already supported in 1.2 or if those<br>
changes to aacparse were added later.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Sebastian Dröge, Centricular Ltd - <a href="http://www.centricular.com" target="_blank">http://www.centricular.com</a><br>
Expertise, Straight from the Source<br>
</font></span><br>_______________________________________________<br>
gstreamer-android mailing list<br>
<a href="mailto:gstreamer-android@lists.freedesktop.org">gstreamer-android@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-android" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-android</a><br>
<br></blockquote></div><br></div>