Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-25 Thread NaveenShrivastva
Thanks for your this nice url,

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-25 Thread NaveenShrivastva
Sorry for more posting , but i am trying for long time not getting
success then what i can do. i need help of google because alws i
resolved my issues using googing.

Thanks for your good response

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-24 Thread Mark Murphy
On Thu, Aug 25, 2011 at 2:39 AM, NaveenShrivastva
 wrote:
> Please find the C++ JNI attachment

NDK support is available on the [android-ndk] Google Group or StackOverflow.

Also, please understand that there may only be a few dozen people on
the planet who have tried doing what you are doing, and they may not
be in position to assist you.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Android Training in NYC: http://marakana.com/training/android/

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-24 Thread NaveenShrivastva
Hello sir,


Please help me otherwise i will loss my 5 months and project.



Please find the C++ JNI attachment.

Android is not allowing me to place the large video on surface, it's
Android - firmware(Video view) limitation, so resolving this issue
need codec interface for place video on surface.

i am trying to integrate codec using  JAVA JNI.

i am using ffmpeg library for video codec interface, that works  but
facing some issues. Audio is running but video not appear on surface
view.

C++ video view library is not getting two values
sws_format_name(c->srcFormat), sws_format_name(c->dstFormat) so error.

error msg occur:08-23 18:12:29.002: ERROR/FFMpegMediaPlayer(3889):
AV_LOG_WARNING: No accelerated colorspace conversion found from %s to
%s.


NOTE:Here unavailability of c->dstFormat this value it's not going
switch statement for accelerate the video.For more information review
the attached document.

Error Block resign:

 if (t)
return t;

av_log(c, AV_LOG_WARNING, "No accelerated colorspace conversion
found from %s to %s.\n", sws_format_name(c->srcFormat),
sws_format_name(c->dstFormat))
;

switch (c->dstFormat) {
case PIX_FMT_RGB48BE:
case PIX_FMT_RGB48LE:return yuv2rgb_c_48;
case PIX_FMT_ARGB:
case PIX_FMT_ABGR:   if (CONFIG_SWSCALE_ALPHA && c->srcFormat
== PIX_FMT_YUVA420P) return yuva2argb_c;
case PIX_FMT_RGBA:
case PIX_FMT_BGRA:   return (CONFIG_SWSCALE_ALPHA &&
c->srcFormat == PIX_FMT_YUVA420P) ? yuva2rgba_c : yuv2rgb_c_32;
case PIX_FMT_RGB24:  return yuv2rgb_c_24_rgb;
case PIX_FMT_BGR24:  return yuv2rgb_c_24_bgr;
case PIX_FMT_RGB565:
case PIX_FMT_BGR565:
case PIX_FMT_RGB555:
case PIX_FMT_BGR555: return yuv2rgb_c_16;
case PIX_FMT_RGB444:
case PIX_FMT_BGR444: return yuv2rgb_c_12_ordered_dither;
case PIX_FMT_RGB8:
case PIX_FMT_BGR8:   return yuv2rgb_c_8_ordered_dither;
case PIX_FMT_RGB4:
case PIX_FMT_BGR4:   return yuv2rgb_c_4_ordered_dither;
case PIX_FMT_RGB4_BYTE:
case PIX_FMT_BGR4_BYTE:  return yuv2rgb_c_4b_ordered_dither;
case PIX_FMT_MONOBLACK:  return yuv2rgb_c_1_ordered_dither;
default:
assert(0);

Please help me , i will very thankful of you.


On Wed, Aug 24, 2011 at 9:50 PM, RichardC
 wrote:
> *plonk*
>
> On Aug 24, 4:55 pm, NaveenShrivastva 
> wrote:
>> i want video - codec implementation
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> On Tue, Aug 23, 2011 at 4:38 PM, Aladin Q  wrote:
>> > Naveen, there is a serious problem with your english which dramatically
>> > decreases your credibility (sounds almost like a bot attempting to
>> > converse).
>>
>> > We don't even know if you want a codec for audio, video, image, etc... 
>> > maybe
>> > tryhttp://stackoverflow.com/search?q=android+codec
>>
>> > --
>> > You received this message because you are subscribed to the Google
>> > Groups "Android Developers" group.
>> > To post to this group, send email to android-developers@googlegroups.com
>> > To unsubscribe from this group, send email to
>> > android-developers+unsubscr...@googlegroups.com
>> > For more options, visit this group at
>> >http://groups.google.com/group/android-developers?hl=en
>>
>> --
>> Naveen Shrivastava
>> BCA+MCA(LAST SEM)+O/A/B Level(DOEACC SOCITY IT GOVT INDIA)
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-24 Thread NaveenShrivastva
i want video - codec implementation

On Tue, Aug 23, 2011 at 4:38 PM, Aladin Q  wrote:
> Naveen, there is a serious problem with your english which dramatically
> decreases your credibility (sounds almost like a bot attempting to
> converse).
>
> We don't even know if you want a codec for audio, video, image, etc... maybe
> try http://stackoverflow.com/search?q=android+codec
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en



-- 
Naveen Shrivastava
BCA+MCA(LAST SEM)+O/A/B Level(DOEACC SOCITY IT GOVT INDIA)

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-24 Thread Aladin Q
Naveen, there is a serious problem with your english which dramatically 
decreases your credibility (sounds almost like a bot attempting to 
converse).
 
We don't even know if you want a codec for audio, video, image, etc... maybe 
try http://stackoverflow.com/search?q=android+codec

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread Appaholics
1) Try bumping your post if it has been more than 48 hours. Also sometimes
first time posters are moderated and your message may take a while to appear
on the list.

2) We never said that the Android SDK is "lunched" by you. It is not
Google's gift either. You are free to use it if you want to. Google is not
gifting it to you.

On Tue, Aug 23, 2011 at 4:08 PM, NaveenShrivastva <
kumarnaveen.si...@gmail.com> wrote:

>
> Android sdk is not lunched  by me. it 's Google gift.
>
>
>
> On Tue, Aug 23, 2011 at 4:07 PM, NaveenShrivastva <
> kumarnaveen.si...@gmail.com> wrote:
>
>> It's not a perfect answer given by you. i have need your hand not this
>> type of rude words, i am trying also.i am not sleeping here, ===ok
>>
>> if you can not able to help only want any answer to some one then good.
>> else that's bad words written by u.when u can not able to help me then not
>> make fun of my question first try to understand and do then reply .
>>
>> Thanks for answering me
>>
>>
>> On Tue, Aug 23, 2011 at 4:00 PM, Appaholics wrote:
>>
>>> If you are waiting for August 19 then you have 361 days to wait. I am
>>> sure someone will reply as it is almost a year.
>>>
>>>
>>> On Tue, Aug 23, 2011 at 3:57 PM, Naveen wrote:
>>>
 Android Community  not giving me any response of my question.i am
 waiting for 19 august.

 what to do now for this type of help.very unhappy with android this
 limitation.

 On Aug 19, 6:30 pm, NaveenShrivastva 
 wrote:
 > On Fri, Aug 19, 2011 at 6:47 PM, Appaholics >>> >wrote:
 >
 >
 >
 >
 >
 >
 >
 >
 >
 > > AFAIK there is only onehttp://source.android.com. You will need to
 look
 > > into the community tab.
 >
 > > Thanks
 >
 > > On Fri, Aug 19, 2011 at 6:34 PM, NaveenShrivastva <
 > > kumarnaveen.si...@gmail.com> wrote:
 >
 > >> On Fri, Aug 19, 2011 at 6:05 PM, Mark Murphy <
 mmur...@commonsware.com>wrote:
 >
 > >>> On Fri, Aug 19, 2011 at 8:30 AM, Naveen <
 kumarnaveen.si...@gmail.com>
 > >>> wrote:
 > >>> > I am not getting any perfect way for codec implementation, plz
 help me
 > >>> > other wise i think it's android drawback
 >
 > >>> Codecs to plug into OpenCORE (Android 2.2 and earlier) or
 StageFright
 > >>> (Android 2.2 and newer) are part of the firmware. If you are
 > >>> interested in developing firmware codecs, please find an
 appropriate
 > >>> list onhttp://source.android.com.
 >
 > >>> --
 > >>> Mark Murphy (a Commons Guy)
 > >>>http://commonsware.com|http://github.com/commonsguy
 > >>>http://commonsware.com/blog|http://twitter.com/commonsguy
 >
 > >>> _Android Programming Tutorials_ Version 3.9 Available!
 >
 > >>> --
 > >>> You received this message because you are subscribed to the Google
 > >>> Groups "Android Developers" group.
 > >>> To post to this group, send email to
 android-developers@googlegroups.com
 > >>> To unsubscribe from this group, send email to
 > >>> android-developers+unsubscr...@googlegroups.com
 > >>> For more options, visit this group at
 > >>>http://groups.google.com/group/android-developers?hl=en
 >
 > >> how to findan appropriate  http://source.android.com.  ? you right
 i
 > >> want firmware codec integration ...help me plz
 >
 > >> --
 > >> You received this message because you are subscribed to the Google
 > >> Groups "Android Developers" group.
 > >> To post to this group, send email to
 android-developers@googlegroups.com
 > >> To unsubscribe from this group, send email to
 > >> android-developers+unsubscr...@googlegroups.com
 > >> For more options, visit this group at
 > >>http://groups.google.com/group/android-developers?hl=en
 >
 > > --
 > > --
 > > Raghav Sood
 > > CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all
 titles
 > > required to have complete control)
 > >http://www.raghavsood.com/
 > >https://market.android.com/developer?pub=Appaholics
 > >http://www.appaholics.in/
 >
 > >  --
 > > You received this message because you are subscribed to the Google
 > > Groups "Android Developers" group.
 > > To post to this group, send email to
 android-developers@googlegroups.com
 > > To unsubscribe from this group, send email to
 > > android-developers+unsubscr...@googlegroups.com
 > > For more options, visit this group at
 > >http://groups.google.com/group/android-developers?hl=en
 >
 > yes sir, i have posted my issue but not sure they will help or
 not?This
 > issue only with android, i think apple development is best for this
 line.

 --
 You received this message because you are subscribed to the Google
 Groups "Android Developers" group.
 To post to this group, send email to
 android-developers@

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread NaveenShrivastva
Android sdk is not lunched  by me. it 's Google gift.


On Tue, Aug 23, 2011 at 4:07 PM, NaveenShrivastva <
kumarnaveen.si...@gmail.com> wrote:

> It's not a perfect answer given by you. i have need your hand not this type
> of rude words, i am trying also.i am not sleeping here, ===ok
>
> if you can not able to help only want any answer to some one then good.
> else that's bad words written by u.when u can not able to help me then not
> make fun of my question first try to understand and do then reply .
>
> Thanks for answering me
>
>
> On Tue, Aug 23, 2011 at 4:00 PM, Appaholics wrote:
>
>> If you are waiting for August 19 then you have 361 days to wait. I am sure
>> someone will reply as it is almost a year.
>>
>>
>> On Tue, Aug 23, 2011 at 3:57 PM, Naveen wrote:
>>
>>> Android Community  not giving me any response of my question.i am
>>> waiting for 19 august.
>>>
>>> what to do now for this type of help.very unhappy with android this
>>> limitation.
>>>
>>> On Aug 19, 6:30 pm, NaveenShrivastva 
>>> wrote:
>>> > On Fri, Aug 19, 2011 at 6:47 PM, Appaholics >> >wrote:
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > > AFAIK there is only onehttp://source.android.com. You will need to
>>> look
>>> > > into the community tab.
>>> >
>>> > > Thanks
>>> >
>>> > > On Fri, Aug 19, 2011 at 6:34 PM, NaveenShrivastva <
>>> > > kumarnaveen.si...@gmail.com> wrote:
>>> >
>>> > >> On Fri, Aug 19, 2011 at 6:05 PM, Mark Murphy <
>>> mmur...@commonsware.com>wrote:
>>> >
>>> > >>> On Fri, Aug 19, 2011 at 8:30 AM, Naveen <
>>> kumarnaveen.si...@gmail.com>
>>> > >>> wrote:
>>> > >>> > I am not getting any perfect way for codec implementation, plz
>>> help me
>>> > >>> > other wise i think it's android drawback
>>> >
>>> > >>> Codecs to plug into OpenCORE (Android 2.2 and earlier) or
>>> StageFright
>>> > >>> (Android 2.2 and newer) are part of the firmware. If you are
>>> > >>> interested in developing firmware codecs, please find an
>>> appropriate
>>> > >>> list onhttp://source.android.com.
>>> >
>>> > >>> --
>>> > >>> Mark Murphy (a Commons Guy)
>>> > >>>http://commonsware.com|http://github.com/commonsguy
>>> > >>>http://commonsware.com/blog|http://twitter.com/commonsguy
>>> >
>>> > >>> _Android Programming Tutorials_ Version 3.9 Available!
>>> >
>>> > >>> --
>>> > >>> You received this message because you are subscribed to the Google
>>> > >>> Groups "Android Developers" group.
>>> > >>> To post to this group, send email to
>>> android-developers@googlegroups.com
>>> > >>> To unsubscribe from this group, send email to
>>> > >>> android-developers+unsubscr...@googlegroups.com
>>> > >>> For more options, visit this group at
>>> > >>>http://groups.google.com/group/android-developers?hl=en
>>> >
>>> > >> how to findan appropriate  http://source.android.com.  ? you right
>>> i
>>> > >> want firmware codec integration ...help me plz
>>> >
>>> > >> --
>>> > >> You received this message because you are subscribed to the Google
>>> > >> Groups "Android Developers" group.
>>> > >> To post to this group, send email to
>>> android-developers@googlegroups.com
>>> > >> To unsubscribe from this group, send email to
>>> > >> android-developers+unsubscr...@googlegroups.com
>>> > >> For more options, visit this group at
>>> > >>http://groups.google.com/group/android-developers?hl=en
>>> >
>>> > > --
>>> > > --
>>> > > Raghav Sood
>>> > > CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all titles
>>> > > required to have complete control)
>>> > >http://www.raghavsood.com/
>>> > >https://market.android.com/developer?pub=Appaholics
>>> > >http://www.appaholics.in/
>>> >
>>> > >  --
>>> > > You received this message because you are subscribed to the Google
>>> > > Groups "Android Developers" group.
>>> > > To post to this group, send email to
>>> android-developers@googlegroups.com
>>> > > To unsubscribe from this group, send email to
>>> > > android-developers+unsubscr...@googlegroups.com
>>> > > For more options, visit this group at
>>> > >http://groups.google.com/group/android-developers?hl=en
>>> >
>>> > yes sir, i have posted my issue but not sure they will help or not?This
>>> > issue only with android, i think apple development is best for this
>>> line.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Android Developers" group.
>>> To post to this group, send email to android-developers@googlegroups.com
>>> To unsubscribe from this group, send email to
>>> android-developers+unsubscr...@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com/group/android-developers?hl=en
>>>
>>
>>
>>
>> --
>> --
>> Raghav Sood
>> CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all titles
>> required to have complete control)
>> http://www.raghavsood.com/
>> https://market.android.com/developer?pub=Appaholics
>> http://www.appaholics.in/
>>
>>  --
>> You received this message because you are subscribed 

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread NaveenShrivastva
It's not a perfect answer given by you. i have need your hand not this type
of rude words, i am trying also.i am not sleeping here, ===ok

if you can not able to help only want any answer to some one then good. else
that's bad words written by u.when u can not able to help me then not make
fun of my question first try to understand and do then reply .

Thanks for answering me

On Tue, Aug 23, 2011 at 4:00 PM, Appaholics wrote:

> If you are waiting for August 19 then you have 361 days to wait. I am sure
> someone will reply as it is almost a year.
>
>
> On Tue, Aug 23, 2011 at 3:57 PM, Naveen wrote:
>
>> Android Community  not giving me any response of my question.i am
>> waiting for 19 august.
>>
>> what to do now for this type of help.very unhappy with android this
>> limitation.
>>
>> On Aug 19, 6:30 pm, NaveenShrivastva 
>> wrote:
>> > On Fri, Aug 19, 2011 at 6:47 PM, Appaholics > >wrote:
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> > > AFAIK there is only onehttp://source.android.com. You will need to
>> look
>> > > into the community tab.
>> >
>> > > Thanks
>> >
>> > > On Fri, Aug 19, 2011 at 6:34 PM, NaveenShrivastva <
>> > > kumarnaveen.si...@gmail.com> wrote:
>> >
>> > >> On Fri, Aug 19, 2011 at 6:05 PM, Mark Murphy <
>> mmur...@commonsware.com>wrote:
>> >
>> > >>> On Fri, Aug 19, 2011 at 8:30 AM, Naveen <
>> kumarnaveen.si...@gmail.com>
>> > >>> wrote:
>> > >>> > I am not getting any perfect way for codec implementation, plz
>> help me
>> > >>> > other wise i think it's android drawback
>> >
>> > >>> Codecs to plug into OpenCORE (Android 2.2 and earlier) or
>> StageFright
>> > >>> (Android 2.2 and newer) are part of the firmware. If you are
>> > >>> interested in developing firmware codecs, please find an appropriate
>> > >>> list onhttp://source.android.com.
>> >
>> > >>> --
>> > >>> Mark Murphy (a Commons Guy)
>> > >>>http://commonsware.com|http://github.com/commonsguy
>> > >>>http://commonsware.com/blog|http://twitter.com/commonsguy
>> >
>> > >>> _Android Programming Tutorials_ Version 3.9 Available!
>> >
>> > >>> --
>> > >>> You received this message because you are subscribed to the Google
>> > >>> Groups "Android Developers" group.
>> > >>> To post to this group, send email to
>> android-developers@googlegroups.com
>> > >>> To unsubscribe from this group, send email to
>> > >>> android-developers+unsubscr...@googlegroups.com
>> > >>> For more options, visit this group at
>> > >>>http://groups.google.com/group/android-developers?hl=en
>> >
>> > >> how to findan appropriate  http://source.android.com.  ? you right i
>> > >> want firmware codec integration ...help me plz
>> >
>> > >> --
>> > >> You received this message because you are subscribed to the Google
>> > >> Groups "Android Developers" group.
>> > >> To post to this group, send email to
>> android-developers@googlegroups.com
>> > >> To unsubscribe from this group, send email to
>> > >> android-developers+unsubscr...@googlegroups.com
>> > >> For more options, visit this group at
>> > >>http://groups.google.com/group/android-developers?hl=en
>> >
>> > > --
>> > > --
>> > > Raghav Sood
>> > > CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all titles
>> > > required to have complete control)
>> > >http://www.raghavsood.com/
>> > >https://market.android.com/developer?pub=Appaholics
>> > >http://www.appaholics.in/
>> >
>> > >  --
>> > > You received this message because you are subscribed to the Google
>> > > Groups "Android Developers" group.
>> > > To post to this group, send email to
>> android-developers@googlegroups.com
>> > > To unsubscribe from this group, send email to
>> > > android-developers+unsubscr...@googlegroups.com
>> > > For more options, visit this group at
>> > >http://groups.google.com/group/android-developers?hl=en
>> >
>> > yes sir, i have posted my issue but not sure they will help or not?This
>> > issue only with android, i think apple development is best for this
>> line.
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>>
>
>
>
> --
> --
> Raghav Sood
> CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all titles
> required to have complete control)
> http://www.raghavsood.com/
> https://market.android.com/developer?pub=Appaholics
> http://www.appaholics.in/
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/an

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread Appaholics
If you are waiting for August 19 then you have 361 days to wait. I am sure
someone will reply as it is almost a year.

On Tue, Aug 23, 2011 at 3:57 PM, Naveen  wrote:

> Android Community  not giving me any response of my question.i am
> waiting for 19 august.
>
> what to do now for this type of help.very unhappy with android this
> limitation.
>
> On Aug 19, 6:30 pm, NaveenShrivastva 
> wrote:
> > On Fri, Aug 19, 2011 at 6:47 PM, Appaholics  >wrote:
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > > AFAIK there is only onehttp://source.android.com. You will need to
> look
> > > into the community tab.
> >
> > > Thanks
> >
> > > On Fri, Aug 19, 2011 at 6:34 PM, NaveenShrivastva <
> > > kumarnaveen.si...@gmail.com> wrote:
> >
> > >> On Fri, Aug 19, 2011 at 6:05 PM, Mark Murphy  >wrote:
> >
> > >>> On Fri, Aug 19, 2011 at 8:30 AM, Naveen  >
> > >>> wrote:
> > >>> > I am not getting any perfect way for codec implementation, plz help
> me
> > >>> > other wise i think it's android drawback
> >
> > >>> Codecs to plug into OpenCORE (Android 2.2 and earlier) or StageFright
> > >>> (Android 2.2 and newer) are part of the firmware. If you are
> > >>> interested in developing firmware codecs, please find an appropriate
> > >>> list onhttp://source.android.com.
> >
> > >>> --
> > >>> Mark Murphy (a Commons Guy)
> > >>>http://commonsware.com|http://github.com/commonsguy
> > >>>http://commonsware.com/blog|http://twitter.com/commonsguy
> >
> > >>> _Android Programming Tutorials_ Version 3.9 Available!
> >
> > >>> --
> > >>> You received this message because you are subscribed to the Google
> > >>> Groups "Android Developers" group.
> > >>> To post to this group, send email to
> android-developers@googlegroups.com
> > >>> To unsubscribe from this group, send email to
> > >>> android-developers+unsubscr...@googlegroups.com
> > >>> For more options, visit this group at
> > >>>http://groups.google.com/group/android-developers?hl=en
> >
> > >> how to findan appropriate  http://source.android.com.  ? you right i
> > >> want firmware codec integration ...help me plz
> >
> > >> --
> > >> You received this message because you are subscribed to the Google
> > >> Groups "Android Developers" group.
> > >> To post to this group, send email to
> android-developers@googlegroups.com
> > >> To unsubscribe from this group, send email to
> > >> android-developers+unsubscr...@googlegroups.com
> > >> For more options, visit this group at
> > >>http://groups.google.com/group/android-developers?hl=en
> >
> > > --
> > > --
> > > Raghav Sood
> > > CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all titles
> > > required to have complete control)
> > >http://www.raghavsood.com/
> > >https://market.android.com/developer?pub=Appaholics
> > >http://www.appaholics.in/
> >
> > >  --
> > > You received this message because you are subscribed to the Google
> > > Groups "Android Developers" group.
> > > To post to this group, send email to
> android-developers@googlegroups.com
> > > To unsubscribe from this group, send email to
> > > android-developers+unsubscr...@googlegroups.com
> > > For more options, visit this group at
> > >http://groups.google.com/group/android-developers?hl=en
> >
> > yes sir, i have posted my issue but not sure they will help or not?This
> > issue only with android, i think apple development is best for this line.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
--
Raghav Sood
CEO/Founder/Owner/Dictator/Tyrant at Appaholics (Basically all titles
required to have complete control)
http://www.raghavsood.com/
https://market.android.com/developer?pub=Appaholics
http://www.appaholics.in/

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en