├── .gitignore ├── LiveView ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── gen │ └── com │ │ └── example │ │ └── liveview │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_live_view.xml │ ├── menu │ │ └── live_view.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── liveview │ ├── CameraPreview.java │ └── LiveView.java ├── MyRtsp ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── gen │ └── com │ │ └── example │ │ └── myrtsp │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── myrtsp │ └── MainActivity.java ├── README.md ├── RtspServer ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── gen │ └── com │ │ └── optman │ │ └── RtspServer │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── optman │ └── RtspServer │ ├── RtpSession.java │ ├── RtpSessionManager.java │ ├── RtspServer.java │ ├── RtspServerActivitiy.java │ ├── StreamInfo.java │ └── Utility.java └── libRtsp ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── gen └── com │ └── optman │ └── librtsp │ ├── BuildConfig.java │ └── R.java ├── libs └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── optman ├── rtp ├── player │ ├── Player.java │ ├── RtpPlayer.java │ ├── RtpSampleSource.java │ ├── RtspPlayer.java │ ├── SimplePlayer.java │ ├── Statistics.java │ ├── TcpSinkPlayer.java │ └── UdpSinkPlayer.java ├── receiver │ ├── RtpAacStream.java │ ├── RtpAvcStream.java │ ├── RtpSink.java │ ├── RtpStream.java │ ├── Sample.java │ ├── SampleHandler.java │ └── UdpServer.java └── sender │ ├── CameraStream.java │ ├── MicStream.java │ ├── RtpAacStream.java │ ├── RtpAvcStream.java │ ├── RtpSocket.java │ ├── RtpStream.java │ └── RtpUdp.java └── rtsp ├── RtspClient.java ├── RtspClientListener.java ├── TcpChannel.java ├── TcpDataHandler.java ├── TcpReceiver.java └── TcpSender.java /.gitignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .metadata 3 | bin/ 4 | 5 | -------------------------------------------------------------------------------- /LiveView/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/.classpath -------------------------------------------------------------------------------- /LiveView/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/.project -------------------------------------------------------------------------------- /LiveView/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LiveView/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/AndroidManifest.xml -------------------------------------------------------------------------------- /LiveView/gen/com/example/liveview/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/gen/com/example/liveview/BuildConfig.java -------------------------------------------------------------------------------- /LiveView/gen/com/example/liveview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/gen/com/example/liveview/R.java -------------------------------------------------------------------------------- /LiveView/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/ic_launcher-web.png -------------------------------------------------------------------------------- /LiveView/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/libs/android-support-v4.jar -------------------------------------------------------------------------------- /LiveView/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/lint.xml -------------------------------------------------------------------------------- /LiveView/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/proguard-project.txt -------------------------------------------------------------------------------- /LiveView/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/project.properties -------------------------------------------------------------------------------- /LiveView/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiveView/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiveView/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiveView/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiveView/res/layout/activity_live_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/layout/activity_live_view.xml -------------------------------------------------------------------------------- /LiveView/res/menu/live_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/menu/live_view.xml -------------------------------------------------------------------------------- /LiveView/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/values-v11/styles.xml -------------------------------------------------------------------------------- /LiveView/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/values-v14/styles.xml -------------------------------------------------------------------------------- /LiveView/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /LiveView/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/values/dimens.xml -------------------------------------------------------------------------------- /LiveView/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/values/strings.xml -------------------------------------------------------------------------------- /LiveView/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/res/values/styles.xml -------------------------------------------------------------------------------- /LiveView/src/com/example/liveview/CameraPreview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/src/com/example/liveview/CameraPreview.java -------------------------------------------------------------------------------- /LiveView/src/com/example/liveview/LiveView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/LiveView/src/com/example/liveview/LiveView.java -------------------------------------------------------------------------------- /MyRtsp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/.classpath -------------------------------------------------------------------------------- /MyRtsp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/.project -------------------------------------------------------------------------------- /MyRtsp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /MyRtsp/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/AndroidManifest.xml -------------------------------------------------------------------------------- /MyRtsp/gen/com/example/myrtsp/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/gen/com/example/myrtsp/BuildConfig.java -------------------------------------------------------------------------------- /MyRtsp/gen/com/example/myrtsp/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/gen/com/example/myrtsp/R.java -------------------------------------------------------------------------------- /MyRtsp/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/ic_launcher-web.png -------------------------------------------------------------------------------- /MyRtsp/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/libs/android-support-v4.jar -------------------------------------------------------------------------------- /MyRtsp/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/lint.xml -------------------------------------------------------------------------------- /MyRtsp/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/proguard-project.txt -------------------------------------------------------------------------------- /MyRtsp/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/project.properties -------------------------------------------------------------------------------- /MyRtsp/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyRtsp/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyRtsp/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyRtsp/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyRtsp/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/layout/activity_main.xml -------------------------------------------------------------------------------- /MyRtsp/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/menu/main.xml -------------------------------------------------------------------------------- /MyRtsp/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/values-v11/styles.xml -------------------------------------------------------------------------------- /MyRtsp/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/values-v14/styles.xml -------------------------------------------------------------------------------- /MyRtsp/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /MyRtsp/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/values/dimens.xml -------------------------------------------------------------------------------- /MyRtsp/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/values/strings.xml -------------------------------------------------------------------------------- /MyRtsp/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/res/values/styles.xml -------------------------------------------------------------------------------- /MyRtsp/src/com/example/myrtsp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/MyRtsp/src/com/example/myrtsp/MainActivity.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/README.md -------------------------------------------------------------------------------- /RtspServer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/.classpath -------------------------------------------------------------------------------- /RtspServer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/.project -------------------------------------------------------------------------------- /RtspServer/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RtspServer/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/AndroidManifest.xml -------------------------------------------------------------------------------- /RtspServer/gen/com/optman/RtspServer/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/gen/com/optman/RtspServer/BuildConfig.java -------------------------------------------------------------------------------- /RtspServer/gen/com/optman/RtspServer/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/gen/com/optman/RtspServer/R.java -------------------------------------------------------------------------------- /RtspServer/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/ic_launcher-web.png -------------------------------------------------------------------------------- /RtspServer/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/libs/android-support-v4.jar -------------------------------------------------------------------------------- /RtspServer/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/lint.xml -------------------------------------------------------------------------------- /RtspServer/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/proguard-project.txt -------------------------------------------------------------------------------- /RtspServer/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/project.properties -------------------------------------------------------------------------------- /RtspServer/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RtspServer/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RtspServer/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RtspServer/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RtspServer/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/layout/activity_main.xml -------------------------------------------------------------------------------- /RtspServer/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/menu/main.xml -------------------------------------------------------------------------------- /RtspServer/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/values-v11/styles.xml -------------------------------------------------------------------------------- /RtspServer/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/values-v14/styles.xml -------------------------------------------------------------------------------- /RtspServer/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /RtspServer/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/values/dimens.xml -------------------------------------------------------------------------------- /RtspServer/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/values/strings.xml -------------------------------------------------------------------------------- /RtspServer/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/res/values/styles.xml -------------------------------------------------------------------------------- /RtspServer/src/com/optman/RtspServer/RtpSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/src/com/optman/RtspServer/RtpSession.java -------------------------------------------------------------------------------- /RtspServer/src/com/optman/RtspServer/RtpSessionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/src/com/optman/RtspServer/RtpSessionManager.java -------------------------------------------------------------------------------- /RtspServer/src/com/optman/RtspServer/RtspServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/src/com/optman/RtspServer/RtspServer.java -------------------------------------------------------------------------------- /RtspServer/src/com/optman/RtspServer/RtspServerActivitiy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/src/com/optman/RtspServer/RtspServerActivitiy.java -------------------------------------------------------------------------------- /RtspServer/src/com/optman/RtspServer/StreamInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/src/com/optman/RtspServer/StreamInfo.java -------------------------------------------------------------------------------- /RtspServer/src/com/optman/RtspServer/Utility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/RtspServer/src/com/optman/RtspServer/Utility.java -------------------------------------------------------------------------------- /libRtsp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/.classpath -------------------------------------------------------------------------------- /libRtsp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/.project -------------------------------------------------------------------------------- /libRtsp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /libRtsp/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/AndroidManifest.xml -------------------------------------------------------------------------------- /libRtsp/gen/com/optman/librtsp/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/gen/com/optman/librtsp/BuildConfig.java -------------------------------------------------------------------------------- /libRtsp/gen/com/optman/librtsp/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/gen/com/optman/librtsp/R.java -------------------------------------------------------------------------------- /libRtsp/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libRtsp/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/lint.xml -------------------------------------------------------------------------------- /libRtsp/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/proguard-project.txt -------------------------------------------------------------------------------- /libRtsp/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/project.properties -------------------------------------------------------------------------------- /libRtsp/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /libRtsp/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /libRtsp/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libRtsp/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/res/values-v11/styles.xml -------------------------------------------------------------------------------- /libRtsp/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/res/values-v14/styles.xml -------------------------------------------------------------------------------- /libRtsp/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/res/values/strings.xml -------------------------------------------------------------------------------- /libRtsp/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/res/values/styles.xml -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/Player.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/RtpPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/RtpPlayer.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/RtpSampleSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/RtpSampleSource.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/RtspPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/RtspPlayer.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/SimplePlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/SimplePlayer.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/Statistics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/Statistics.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/TcpSinkPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/TcpSinkPlayer.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/player/UdpSinkPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/player/UdpSinkPlayer.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/receiver/RtpAacStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/receiver/RtpAacStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/receiver/RtpAvcStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/receiver/RtpAvcStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/receiver/RtpSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/receiver/RtpSink.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/receiver/RtpStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/receiver/RtpStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/receiver/Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/receiver/Sample.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/receiver/SampleHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/receiver/SampleHandler.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/receiver/UdpServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/receiver/UdpServer.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/sender/CameraStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/sender/CameraStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/sender/MicStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/sender/MicStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/sender/RtpAacStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/sender/RtpAacStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/sender/RtpAvcStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/sender/RtpAvcStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/sender/RtpSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/sender/RtpSocket.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/sender/RtpStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/sender/RtpStream.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtp/sender/RtpUdp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtp/sender/RtpUdp.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtsp/RtspClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtsp/RtspClient.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtsp/RtspClientListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtsp/RtspClientListener.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtsp/TcpChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtsp/TcpChannel.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtsp/TcpDataHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtsp/TcpDataHandler.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtsp/TcpReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtsp/TcpReceiver.java -------------------------------------------------------------------------------- /libRtsp/src/com/optman/rtsp/TcpSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optman/android-cam-rtsp/HEAD/libRtsp/src/com/optman/rtsp/TcpSender.java --------------------------------------------------------------------------------