Search code examples
androidvideo-streaminghttp-live-streaming

Android HLS - Where is the Source code?


I need to locate Google's HTTP Live Streaming (HLS) source code for Android.


Solution

  • The HLS code is implemented in a C++ library, which is why you probably couldn't find it with GrepCode.

    The library is called stagefright and it's used by the java classes (MediaPlayer and so on) and then relies on other shared libraries to interface with hardware decoders.

    You can find an overview of how it works in the android system here.

    And the HLS-specific source code for the You can find the HLS-specific source code here and/or here.