转载请把头部出处链接和尾部二维码一起转载,本文出自逆流的鱼yuiop:http://blog.csdn.net/hejjunlin/article/details/59225373

早在去年九月份时,写过一篇《手把手图文并茂教你用Android Studio编译FFmpeg库并移植》,今天用去年编译好的3.1.3的ffmpeg,进行在Android平台上解码直播流。看下Agenda:

  • 环境
  • Java代码
  • ndk代码
  • 解码运行

环境:

  • Mac OX
  • Android Studio 2.2
  • android-ndk-r10e
  • FFmpeg 3.1.3

Android Studio + NDK的环境配置,由于很简单,这里就不再脑补了。

建立一个工程

写Java代码:

NativePlayer:

生成头文件:javah -d jni com.hejunlin.ffmpegdecoder.NativePlayer

拷贝ffmpeg3.1.3中android目录下的include文件,共5个子文件夹,以及对应的5个so,到prebuilt下,include,prebuilt这个可以自己建立一个folder。

然后写make文件:

LOCAL_PATH := $(call my-dir)include $(CLEAR_VARS)
LOCAL_MODULE := avcodec
LOCAL_SRC_FILES := prebuilt/libavcodec-57.so
include $(PREBUILT_SHARED_LIBRARY)include $(CLEAR_VARS)
LOCAL_MODULE := avformat
LOCAL_SRC_FILES := prebuilt/libavformat-57.so
include $(PREBUILT_SHARED_LIBRARY)include $(CLEAR_VARS)
LOCAL_MODULE := avutil
LOCAL_SRC_FILES := prebuilt/libavutil-55.so
include $(PREBUILT_SHARED_LIBRARY)include $(CLEAR_VARS)
LOCAL_MODULE := swresample
LOCAL_SRC_FILES := prebuilt/libswresample-2.so
include $(PREBUILT_SHARED_LIBRARY)include $(CLEAR_VARS)
LOCAL_MODULE := swscale
LOCAL_SRC_FILES := prebuilt/libswscale-4.so
include $(PREBUILT_SHARED_LIBRARY)include $(CLEAR_VARS)LOCAL_SRC_FILES := yuiopffmpeg.c
LOCAL_LDLIBS += -llog -lz -landroid
LOCAL_MODULE := yuiopffmpeg
LOCAL_C_INCLUDES += $(LOCAL_PATH)/includeLOCAL_SHARED_LIBRARIES:= avcodec avformat avutil swresample swscaleinclude $(BUILD_SHARED_LIBRARY)

同时写下Application.mk,这个主要是用于编译不同平台的库,对应内容如下,由于引用了native_window.h,要加上一句APP_PLATFORM := android-10 :

APP_ABI := armeabi armeabi-v7a x86
APP_PLATFORM := android-10 

接下来,最主要就是写jni相关代码,yuiopffmpeg.c这个文件,之前生成的那个头文件,拷贝里面那个方法名,贴到这里来

//
// Created by 何俊林 on 17/3/1.
//
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libswscale/swscale.h"
#include <android/native_window.h>
#include <android/native_window_jni.h>
#include "com_hejunlin_ffmpegdecoder_NativePlayer.h"
#include "log.h"
JNIEXPORT jint JNICALL Java_com_hejunlin_ffmpegdecoder_NativePlayer_playVideo(JNIEnv * env, jclass clazz, jstring url, jobject surface)
{LOGD("start playvideo... url");const char * file_name  = (*env)->GetStringUTFChars(env, url, JNI_FALSE);av_register_all();AVFormatContext * pFormatCtx = avformat_alloc_context();// Open video fileif(avformat_open_input(&pFormatCtx, file_name, NULL, NULL)!=0) {LOGE("Couldn't open file:%s\n", file_name);return -1; // Couldn't open file}// Retrieve stream informationif(avformat_find_stream_info(pFormatCtx, NULL)<0) {LOGE("Couldn't find stream information.");return -1;}// Find the first video streamint videoStream = -1, i;for (i = 0; i < pFormatCtx->nb_streams; i++) {if (pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO&& videoStream < 0) {videoStream = i;}}if(videoStream==-1) {LOGE("Didn't find a video stream.");return -1; // Didn't find a video stream}// Get a pointer to the codec context for the video streamAVCodecContext  * pCodecCtx = pFormatCtx->streams[videoStream]->codec;// Find the decoder for the video streamAVCodec * pCodec = avcodec_find_decoder(pCodecCtx->codec_id);if(pCodec==NULL) {LOGE("Codec not found.");return -1; // Codec not found}if(avcodec_open2(pCodecCtx, pCodec, NULL) < 0) {LOGE("Could not open codec.");return -1; // Could not open codec}// 获取native windowANativeWindow* nativeWindow = ANativeWindow_fromSurface(env, surface);// 获取视频宽高int videoWidth = pCodecCtx->width;int videoHeight = pCodecCtx->height;// 设置native window的buffer大小,可自动拉伸ANativeWindow_setBuffersGeometry(nativeWindow,  videoWidth, videoHeight, WINDOW_FORMAT_RGBA_8888);ANativeWindow_Buffer windowBuffer;if(avcodec_open2(pCodecCtx, pCodec, NULL)<0) {LOGE("Could not open codec.");return -1; // Could not open codec}// Allocate video frameAVFrame * pFrame = av_frame_alloc();// 用于渲染AVFrame * pFrameRGBA = av_frame_alloc();if(pFrameRGBA == NULL || pFrame == NULL) {LOGE("Could not allocate video frame.");return -1;}// Determine required buffer size and allocate buffer// buffer中数据就是用于渲染的,且格式为RGBAint numBytes=av_image_get_buffer_size(AV_PIX_FMT_RGBA, pCodecCtx->width, pCodecCtx->height, 1);uint8_t * buffer=(uint8_t *)av_malloc(numBytes*sizeof(uint8_t));av_image_fill_arrays(pFrameRGBA->data, pFrameRGBA->linesize, buffer, AV_PIX_FMT_RGBA,pCodecCtx->width, pCodecCtx->height, 1);// 由于解码出来的帧格式不是RGBA的,在渲染之前需要进行格式转换struct SwsContext *sws_ctx = sws_getContext(pCodecCtx->width,pCodecCtx->height,pCodecCtx->pix_fmt,pCodecCtx->width,pCodecCtx->height,AV_PIX_FMT_RGBA,SWS_BILINEAR,NULL,NULL,NULL);int frameFinished;AVPacket packet;while(av_read_frame(pFormatCtx, &packet)>=0) {// Is this a packet from the video stream?if(packet.stream_index==videoStream) {// Decode video frameavcodec_decode_video2(pCodecCtx, pFrame, &frameFinished, &packet);// 并不是decode一次就可解码出一帧if (frameFinished) {// lock native window bufferANativeWindow_lock(nativeWindow, &windowBuffer, 0);// 格式转换sws_scale(sws_ctx, (uint8_t const * const *)pFrame->data,pFrame->linesize, 0, pCodecCtx->height,pFrameRGBA->data, pFrameRGBA->linesize);// 获取strideuint8_t * dst = windowBuffer.bits;int dstStride = windowBuffer.stride * 4;uint8_t * src = (uint8_t*) (pFrameRGBA->data[0]);int srcStride = pFrameRGBA->linesize[0];// 由于window的stride和帧的stride不同,因此需要逐行复制int h;for (h = 0; h < videoHeight; h++) {memcpy(dst + h * dstStride, src + h * srcStride, srcStride);}ANativeWindow_unlockAndPost(nativeWindow);}}av_packet_unref(&packet);}av_free(buffer);av_free(pFrameRGBA);// Free the YUV frameav_free(pFrame);// Close the codecsavcodec_close(pCodecCtx);// Close the video fileavformat_close_input(&pFormatCtx);return 0;
}

这时就可以执行编译了,完成就能发现会多一个so,就是那个libyuiopffmpeg.so,这就是我编译出来的。

这时候,在Android studio下的main目录下,建立一个jniLibs,把刚刚那个so拷贝到这里就行了,就只要这个so就可以了。不同平台,如arm,x86,这些文件夹名字不能随便改。记得还要加如下配置,在build.gradle中。本文出自逆流的鱼yuiop:http://blog.csdn.net/hejjunlin/article/details/59225373

接下来就运行这个工程,运行时,又有问题。

然后发现原来没有加网络权限,在AndroidManifest.xml中,加上

 <uses-permission android:name="android.permission.INTERNET" />

最后,就可以运行了,效果图,如下:

log:

03-02 00:23:59.363 4117-4117/? W/Zygote: MzIsRooted false
03-02 00:23:59.366 4117-4117/? I/art: Late-enabling -Xcheck:jni
03-02 00:23:59.410 4117-4132/? E/art: Failed sending reply to debugger: Broken pipe
03-02 00:23:59.410 4117-4132/? I/art: Debugger is no longer active
03-02 00:23:59.530 4117-4117/? D/ActivityThread: hoder:android.app.IActivityManager$ContentProviderHolder@3001a389,provider,holder.Provider:android.content.ContentProviderProxy@357c8f8e
03-02 00:23:59.541 4117-4117/? D/Proxy: setHttpRequestCheckHandler
03-02 00:23:59.571 4117-4117/? I/InstantRun: Instant Run Runtime started. Android package is com.hejunlin.ffmpegdecoder, real application class is null.
03-02 00:23:59.640 4117-4117/? D/FlymeTrafficTracking: tag  (29) com.hejunlin.ffmpegdecoder main uid 10087
03-02 00:23:59.641 4117-4117/? D/NetworkManagementSocketTagger: tagSocket(29) with statsTag=0xffffffff, statsUid=-1
03-02 00:23:59.652 4117-4117/? D/ActivityThread: BIND_APPLICATION handled : 0 / AppBindData{appInfo=ApplicationInfo{9d7ef45 com.hejunlin.ffmpegdecoder}}
03-02 00:23:59.653 4117-4117/? V/ActivityThread: Handling launch of ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}}
03-02 00:23:59.788 4117-4117/? V/ActivityThread: ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}}: app=android.app.Application@1f0d3ac1, appName=com.hejunlin.ffmpegdecoder, pkg=com.hejunlin.ffmpegdecoder, comp={com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}, dir=/data/app/com.hejunlin.ffmpegdecoder-1/base.apk
03-02 00:23:59.863 4117-4117/? W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
03-02 00:23:59.973 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x12/d=0x0 a=4 r=0x7f0b0045}
03-02 00:23:59.983 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x12/d=0x0 a=4 r=0x7f0b0046}
03-02 00:24:00.022 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x12/d=0x0 a=4 r=0x7f0b0047}
03-02 00:24:00.022 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0x1 a=4 r=0x7f07000f}
03-02 00:24:00.022 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0x1 a=4 r=0x7f07000e}
03-02 00:24:00.022 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0x3001 a=1 r=0x10500cc}
03-02 00:24:00.032 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0x1 a=1 r=0x10500d3}
03-02 00:24:00.042 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x1/d=0x7f080114 a=4 r=0x7f080114}
03-02 00:24:00.042 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x12/d=0x0 a=4 r=0x7f0b0048}
03-02 00:24:00.071 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x12/d=0x0 a=4 r=0x7f0b0056}
03-02 00:24:00.073 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x12/d=0x0 a=4 r=0x7f0b0057}
03-02 00:24:00.074 4117-4117/? D/SurfaceView: checkSurfaceViewlLogProperty get invalid command
03-02 00:24:00.075 4117-4117/? V/ActivityThread: Performing resume of ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}}
03-02 00:24:00.090 4117-4117/? D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}}
03-02 00:24:00.090 4117-4117/? V/ActivityThread: Resume ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}} started activity: false, hideForNow: false, finished: false
03-02 00:24:00.090 4117-4117/? V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{4f1c1fd I.E..... R.....ID 0,0-0,0}
03-02 00:24:00.102 4117-4142/? D/OpenGLRenderer: initialize DisplayEventReceiver 0xf4a03fb8
03-02 00:24:00.102 4117-4142/? D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
03-02 00:24:00.105 4117-4117/? D/ViewRootImpl: hardware acceleration is enabled, this = ViewRoot{2c1b2da1 com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity,ident = 0}
03-02 00:24:00.116 4117-4117/? V/ActivityThread: Resuming ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}} with isForward=false
03-02 00:24:00.117 4117-4117/? V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{2c1b2da1 com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity,ident = 0}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{4f1c1fd V.E..... R.....ID 0,0-0,0}
03-02 00:24:00.117 4117-4117/? V/ActivityThread: Scheduling idle handler for ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}}
03-02 00:24:00.117 4117-4117/? D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{1036169a token=android.os.BinderProxy@3706bbcb {com.hejunlin.ffmpegdecoder/com.hejunlin.ffmpegdecoder.MainActivity}}
03-02 00:24:00.118 4117-4117/? I/SurfaceView: updateWindow -- onWindowVisibilityChanged, visibility = 0, this = android.view.SurfaceView{3d6c7208 V.E..... ......I. 0,0-0,0 #7f0b0057 app:id/surface_view}
03-02 00:24:00.198 4117-4142/? D/MALI: eglInitialize:1479: [+]
03-02 00:24:00.199 4117-4117/? I/SurfaceView: updateWindow -- setFrame, this = android.view.SurfaceView{3d6c7208 V.E..... ......ID 0,0-1920,861 #7f0b0057 app:id/surface_view}
03-02 00:24:00.202 4117-4142/? D/MALI: eglInitialize:1850: [-][ 03-02 00:24:00.202  4117: 4142 I/         ]elapse(include ctx switch):3374 (ms), eglInitialize
03-02 00:24:00.202 4117-4142/? I/OpenGLRenderer: Initialized EGL, version 1.4
03-02 00:24:00.202 4117-4142/? D/MALI: eglCreateContext:206: [MALI] eglCreateContext display 0xf4a28280, share context 0x0 here.
03-02 00:24:00.210 4117-4142/? D/MALI: gles_context_new:248: Create GLES ctx 0xe0ce2008 successfully
03-02 00:24:00.210 4117-4142/? D/MALI: eglCreateContext:543: [MALI] eglCreateContext end. Created context 0xe0c53b68 here.
03-02 00:24:00.211 4117-4142/? D/OpenGLRenderer: TaskManager() 0xf48b0f48, cpu = 8, thread = 4
03-02 00:24:00.215 4117-4142/? D/OpenGLRenderer: Enabling debug mode 0
03-02 00:24:00.215 4117-4142/? D/Surface: Surface::connect(this=0xf49b0e00,api=1)
03-02 00:24:00.216 4117-4142/? D/mali_winsys: new_window_surface returns 0x3000
03-02 00:24:00.216 4117-4142/? D/Surface: Surface::allocateBuffers(this=0xf49b0e00)
03-02 00:24:00.219 4117-4157/? W/linker: libyuiopffmpeg.so: unused DT entry: type 0x6ffffffe arg 0x1058
03-02 00:24:00.219 4117-4157/? W/linker: libyuiopffmpeg.so: unused DT entry: type 0x6fffffff arg 0x4
03-02 00:24:00.225 4117-4157/? W/linker: libavcodec-57.so: unused DT entry: type 0x6ffffffe arg 0x5da4
03-02 00:24:00.225 4117-4157/? W/linker: libavcodec-57.so: unused DT entry: type 0x6fffffff arg 0x2
03-02 00:24:00.226 4117-4157/? W/linker: libavformat-57.so: unused DT entry: type 0x6ffffffe arg 0x6408
03-02 00:24:00.226 4117-4157/? W/linker: libavformat-57.so: unused DT entry: type 0x6fffffff arg 0x2
03-02 00:24:00.227 4117-4157/? W/linker: libswresample-2.so: unused DT entry: type 0x6ffffffe arg 0xcd4
03-02 00:24:00.228 4117-4157/? W/linker: libswresample-2.so: unused DT entry: type 0x6fffffff arg 0x1
03-02 00:24:00.228 4117-4117/? I/SurfaceView: Punch a hole(dispatchDraw), w = 1920, h = 861, this = android.view.SurfaceView{3d6c7208 V.E..... ........ 0,0-1920,861 #7f0b0057 app:id/surface_view}
03-02 00:24:00.228 4117-4157/? W/linker: libswscale-4.so: unused DT entry: type 0x6ffffffe arg 0xd70
03-02 00:24:00.229 4117-4157/? W/linker: libswscale-4.so: unused DT entry: type 0x6fffffff arg 0x1
03-02 00:24:00.235 4117-4157/? D/jni/yuiopffmpeg.c: Java_com_hejunlin_ffmpegdecoder_NativePlayer_playVideo:start playvideo... url
03-02 00:24:00.236 4117-4157/? D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:00.236 4117-4157/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:00.236 4117-4157/? D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:00.236 4117-4157/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:00.236 4117-4157/? D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=8000; cache_mode=(null), netid=0; mark=0
03-02 00:24:00.236 4117-4157/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=0; ai_family=0
03-02 00:24:00.241 4117-4142/? D/Surface: Surface::setBuffersDimensions(this=0xf49b0e00,w=1080,h=1920)
03-02 00:24:00.256 4117-4142/? D/GraphicBuffer: register, handle(0xe0c03980) (w:1080 h:1920 s:1088 f:0x1 u:0x000b00)
03-02 00:24:00.261 4117-4142/? W/MALI: glDrawArrays:714: [MALI] glDrawArrays takes more than 5ms here. Total elapse time(us): 20304
03-02 00:24:00.262 4117-4157/? D/libc-netbsd: getaddrinfo: cctv1.vtime.cntv.dnion.com get result from proxy >>
03-02 00:24:00.268 4117-4142/? D/Surface: Surface::setBuffersDimensions(this=0xf49b0e00,w=1080,h=1920)
03-02 00:24:00.273 4117-4142/? D/GraphicBuffer: register, handle(0xe0c04380) (w:1080 h:1920 s:1088 f:0x1 u:0x000b00)
03-02 00:24:00.324 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0x2401 a=1 r=0x10500d7}
03-02 00:24:00.324 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0x3001 a=1 r=0x10500d9}
03-02 00:24:00.326 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0x601 a=1 r=0x10500d4}
03-02 00:24:00.326 4117-4117/? W/Resources: Converting to string: TypedValue{t=0x5/d=0xa01 a=1 r=0x10500d5}
03-02 00:24:00.335 4117-4117/? D/STATUS_BAR_TINT: isBlackColor=false,color=argb(255,245,72,76)
03-02 00:24:00.336 4117-4117/? D/STATUS_BAR_TINT: isSimilarColor,red=0,green=0,blue=0
03-02 00:24:00.338 4117-4117/? I/SurfaceView: updateWindow -- UPDATE_WINDOW_MSG, this = Handler (android.view.SurfaceView$1) {18557a20}
03-02 00:24:00.346 4117-4117/? I/SurfaceView: updateWindow -- setFrame, this = android.view.SurfaceView{3d6c7208 V.E..... ......I. 0,0-1920,861 #7f0b0057 app:id/surface_view}
03-02 00:24:00.347 4117-4117/? I/SurfaceView: Punch a hole(dispatchDraw), w = 1920, h = 861, this = android.view.SurfaceView{3d6c7208 V.E..... ........ 0,0-1920,861 #7f0b0057 app:id/surface_view}
03-02 00:24:00.350 4117-4142/? D/Surface: Surface::setBuffersDimensions(this=0xf49b0e00,w=1080,h=1920)
03-02 00:24:00.353 4117-4157/? D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:00.354 4117-4157/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:00.354 4117-4157/? D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:00.354 4117-4157/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:00.354 4117-4157/? D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=8000; cache_mode=(null), netid=0; mark=0
03-02 00:24:00.354 4117-4157/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=0; ai_family=0
03-02 00:24:00.355 4117-4142/? D/GraphicBuffer: register, handle(0xe0c04420) (w:1080 h:1920 s:1088 f:0x1 u:0x000b00)
03-02 00:24:00.381 4117-4157/? D/libc-netbsd: getaddrinfo: cctv1.vtime.cntv.dnion.com get result from proxy >>
03-02 00:24:05.230 4117-4157/com.hejunlin.ffmpegdecoder D/Surface: Surface::setBuffersUserDimensions(this=0xf49b1c00,w=1280,h=720)
03-02 00:24:05.323 4117-4157/com.hejunlin.ffmpegdecoder D/Surface: Surface::connect(this=0xf49b1c00,api=2)
03-02 00:24:05.325 4117-4157/com.hejunlin.ffmpegdecoder D/GraphicBuffer: register, handle(0xeec46700) (w:1280 h:720 s:1280 f:0x1 u:0x000933)
03-02 00:24:05.352 4117-4157/com.hejunlin.ffmpegdecoder D/GraphicBuffer: register, handle(0xeec467a0) (w:1280 h:720 s:1280 f:0x1 u:0x000933)
03-02 00:24:05.385 4117-4157/com.hejunlin.ffmpegdecoder D/GraphicBuffer: register, handle(0xeec46840) (w:1280 h:720 s:1280 f:0x1 u:0x000933)
03-02 00:24:11.173 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:11.173 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:11.173 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:11.173 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:11.173 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=8000; cache_mode=(null), netid=0; mark=0
03-02 00:24:11.173 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=0; ai_family=0
03-02 00:24:11.221 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: getaddrinfo: cctv1.vtime.cntv.dnion.com get result from proxy >>
03-02 00:24:11.345 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:11.345 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:11.345 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-02 00:24:11.345 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-02 00:24:11.345 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: hostname=cctv1.vtime.cntv.dnion.com; servname=8000; cache_mode=(null), netid=0; mark=0
03-02 00:24:11.345 4117-4157/com.hejunlin.ffmpegdecoder D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=0; ai_family=0

第一时间获得博客更新提醒,以及更多android干货,源码分析,欢迎关注我的微信公众号,扫一扫下方二维码或者长按识别二维码,即可关注。

如果你觉得好,随手点赞,也是对笔者的肯定,也可以分享此公众号给你更多的人,原创不易

Android Multimedia框架总结(二十六)利用FFmpeg进行解码直播流相关推荐

  1. Android 天气APP(二十六)增加自动更新(检查版本、通知栏下载、自动安装)

    上一篇:Android 天气APP(二十五)地图天气(下)嵌套滑动布局渲染天气数据 效果图 开发流程 1.开发前言 2.上传应用到分发平台 3.版本数据请求与存储 4.检查版本更新.自定义更新提示弹窗 ...

  2. Android项目实战(二十六):蓝牙连接硬件设备开发规范流程

    前言: 最近接触蓝牙开发,主要是通过蓝牙连接获取传感器硬件设备的数据,并进行处理. 网上学习一番,现整理出一套比较标准的 操作流程代码. 如果大家看得懂,将来只需要改下 硬件设备的MAC码 和 改下对 ...

  3. Android开发笔记(二十六)Java的容器类

    容器的分类 集合(Set/HashSet) 集合中的元素是没有顺序的,而且不可以重复.这意味着,集合只能遍历而无法通过索引访问指定元素,并且如果重复添加相同值将不会增大集合.因为Set只是接口,所以实 ...

  4. 应用程序框架实战二十六:查询对象

    信息系统的查询需求千变万化,在仓储中为每个查询需求创建一个特殊方法,将导致大量乏味而臃肿的接口. 一种更加可行的办法是,在应用层服务中描述查询需求,并通过仓储执行查询. 为了能够更好的描述查询需求,可 ...

  5. Android 项目必备(二十六)-->获取手机中所有 APP

    效果图 代码 添加依赖 implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30' implementation ...

  6. Android MVVM框架搭建(十)Hilt、ViewBinding、Activity Result API

    Android MVVM框架搭建(十)Hilt.ViewBinding.Activity Result API 前言 正文 一.依赖 二.Hilt使用 1. Hilt 应用类 2. ViewModel ...

  7. 知识图谱论文阅读(八)【转】推荐系统遇上深度学习(二十六)--知识图谱与推荐系统结合之DKN模型原理及实现

    学习的博客: 推荐系统遇上深度学习(二十六)–知识图谱与推荐系统结合之DKN模型原理及实现 知识图谱特征学习的模型分类汇总 知识图谱嵌入(KGE):方法和应用的综述 论文: Knowledge Gra ...

  8. Stduino学习(二十六)水位传感器模块

    37种传感器(二十六)水位传感器模块+Stduino Nano&UNO 本文转载自:http://www.stduino.com/forum.php?mod=viewthread&ti ...

  9. 模板方法模式 Template method 行为型 设计模式(二十六)

    模板方法模式 Template method 上图为网上百度的一份简历模板截图 相信大家都有求职的经历,那么必然需要简历,写简历的时候,很可能你会网上检索一份简历模板,使用此模板的格式,然后替换为你的 ...

  10. 窗口消息——Windows核心编程学习手札之二十六

    窗口消息 --Windows核心编程学习手札之二十六 Windows允许一个进程至多建立10000个不同类型的用户对象(user object):图符.光标.窗口类.菜单.加速键表等,当一个线程调用一 ...

最新文章

  1. 聊聊spring cloud gateway的PreserveHostHeaderGatewayFilter
  2. Mysql中having和where的区别
  3. python 栈道实现
  4. SQL HAVING 子句
  5. Spring Boot笔记-发送消息给RabbitMQ
  6. urllib2的Post和Get请求
  7. chrome稍后阅读功能reading list
  8. 程序员人生之路(强烈推荐,分析的透彻!)
  9. Guthrie QA-CAD2019(CAD绘图修订管理工具)A.04中文版
  10. 微波存在感应雷达,人体存在感应雷达模块,物联网智能赋能应用
  11. vue 通过自定义规则实现表单手机号和邮箱的校验
  12. Masonry 设置宽高比例
  13. 使用微带线设计一个低通滤波器
  14. 识别 Cisco交换机型号
  15. 关于励志书及推荐《高效能人士的七个习惯》
  16. 互联网行业各种“眼中体”大集合
  17. 朝九晚五IT人生活不容易啊
  18. 欧阳娜娜作息时间公开,怎样活成所有女生羡慕的样子
  19. STM32F429的USB外设简介
  20. ue4-runtime_ubuntu_docker_使用教程方法

热门文章

  1. jsp mysql连接池 回收_mysql连接池连接JSP
  2. FFmpeg学习(1)——视频文件格式转换
  3. 基于手机系统的实时目标检测
  4. 限时删!字节总监总结一套目标检测、卷积神经网络和OpenCV学习资料(教程/PPT/代码)...
  5. tensorflow线下训练SSD深度学习物体检测模型,C++线上调用模型进行识别定位(干货满满)
  6. C++调用yolov3模型-opencv3.4.2
  7. WPF:window设置单一开启
  8. 洛谷 2017.7月赛解题报告
  9. Maven实战(六)依赖
  10. Android系统在新进程中启动自定义服务过程(startService)的原理分析