This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LOCAL_PATH:= $(call my-dir) | |
| include $(CLEAR_VARS) | |
| # our source files | |
| # | |
| LOCAL_SRC_FILES:= \ | |
| audiotrack.cpp | |
| LOCAL_SHARED_LIBRARIES := \ | |
| libbinder \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ###################################################### | |
| # FFmpeg builds script for Android+ARM platform | |
| # | |
| # This script is released under term of | |
| # CDDL (http://www.opensource.org/licenses/cddl1) | |
| # Wrote by pinxue (~@gmail.com) from RockPlayer.com | |
| # 2010-8 ~ 2011-4 | |
| ###################################################### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.sipdroid.sipua.ui; | |
| import android.util.Log; | |
| /** | |
| * This class defines the Logger | |
| */ | |
| public final class Logger { | |
| private static final String TAG = "SIPUA"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ###################################################### | |
| # FFmpeg builds script for Android+ARM platform | |
| # | |
| # This script is released under term of | |
| # CDDL (http://www.opensource.org/licenses/cddl1) | |
| # Wrote by pinxue (~@gmail.com) from RockPlayer.com | |
| # 2010-8 ~ 2011-4 | |
| ###################################################### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // tutorial02.c | |
| // A pedagogical video player that will stream through every video frame as fast as it can. | |
| // | |
| // Code based on FFplay, Copyright (c) 2003 Fabrice Bellard, | |
| // and a tutorial by Martin Bohme (boehme@inb.uni-luebeckREMOVETHIS.de) | |
| // Tested on Gentoo, CVS version 5/01/07 compiled with GCC 4.1.1 | |
| // Use | |
| // | |
| // gcc -o tutorial02 tutorial02.c -lavformat -lavcodec -lz -lm -lswscale `sdl-config --cflags --libs` | |
| // to build (assuming libavformat and libavcodec are correctly installed, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // tutorial01.c | |
| // Code based on a tutorial by Martin Bohme (boehme@inb.uni-luebeckREMOVETHIS.de) | |
| // Tested on Gentoo, CVS version 5/01/07 compiled with GCC 4.1.1 | |
| // A small sample program that shows how to use libavformat and libavcodec to | |
| // read video from a file. | |
| // | |
| // Use | |
| // | |
| // gcc -o tutorial01 tutorial01.c -lavformat -lavcodec -lavutil -lswscale |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LOCAL_PATH := $(call my-dir) | |
| include $(CLEAR_VARS) | |
| LOCAL_MODULE := ffmpeg | |
| include $(LOCAL_PATH)/config.mak | |
| LOCAL_CFLAGS := -DHAVE_AV_CONFIG_H -std=c99 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ./configure \ | |
| --disable-static \ | |
| --enable-shared \ | |
| --enable-gpl \ | |
| --enable-version3 \ | |
| --enable-nonfree \ | |
| --disable-doc \ | |
| --disable-ffmpeg \ | |
| --disable-ffplay \ | |
| --disable-ffprobe \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.aquarium.trainsearch; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.regex.Matcher; | |
| import java.util.regex.Pattern; | |
| import org.apache.http.HttpEntity; | |
| import org.apache.http.HttpResponse; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.regex.Matcher; | |
| import java.util.regex.Pattern; | |
| import org.apache.http.HttpEntity; | |
| import org.apache.http.HttpResponse; |