Reputation: 113
I am studying android recently,I want to decode TS stream with stagefright and want to know how stagefright deal with video file or stream,but I know little about stagefright.can some one give some samples ,project or resource above stagefright ?Thanks
Upvotes: 0
Views: 184
Reputation: 5990
You can use the command line utility to decode the TS
file, sources of which can be found at frameworks\av\cmds
. The sources of the TSExtractor
can be found at mpeg2ts
. I presume this should enable you to experiment and study the code.
Upvotes: 1