項目地址,求starhtml
這一次是將MP4解碼出yuv文件出來,先介紹一波yuv文件git
YUV是指亮度參量和色度參量分開表示的像素格式,而這樣分開的好處就是不但能夠避免相互干擾,還能夠下降色度的採樣率而不會對圖像質量影響太大。YUV是一個比較籠統地說法,針對它的具體排列方式,能夠分爲不少種具體的格式。github
直接上主菜,如何將MP4解碼出yuv文件網絡
首先在java使用NDK,調用解碼函數,輸入MP4文件的路徑和輸出yuv文件的路徑
decode(inputurl,outputurl);ide
接下來就是正式的解說FFmpeg相關函數的做用了函數
先來一張圖片,理清代碼運行順序ui
接下來看註釋,。。。。要是每個函數詳細的講,我作不到,也寫不完,重在熟悉流程編碼
//1.註冊全部組件
av_register_all();
//初始網絡流
avformat_network_init();
//封裝格式上下文,統領全局的結構體,保存了視頻文件封裝格式的相關信息
pFormatCtx = avformat_alloc_context();
//2.打開輸入視頻文件
if(avformat_open_input(&pFormatCtx,input_str,NULL,NULL)!=0){
LOGE("Couldn't open input stream.\n");
return -1;
}
//3.獲取視頻文件信息
if(avformat_find_stream_info(pFormatCtx,NULL)<0){
LOGE("Couldn't find stream information.\n");
return -1;
}
//獲取視頻流的索引位置
//遍歷全部類型的流(音頻流、視頻流、字幕流),找到視頻流
videoindex=-1;
for(i=0; i<pFormatCtx->nb_streams; i++)
if(pFormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO){
videoindex=i;
break;
}
if(videoindex==-1){
LOGE("Couldn't find a video stream.\n");
return -1;
}
//只有知道視頻的編碼方式,纔可以根據編碼方式去找到×××
//獲取視頻流中的編解碼上下文
pCodecCtx=pFormatCtx->streams[videoindex]->codec;
//4.根據編解碼上下文中的編碼id查找對應的解碼
pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
if(pCodec==NULL){
LOGE("Couldn't find Codec.\n");
return -1;
}
if(avcodec_open2(pCodecCtx, pCodec,NULL)<0){
LOGE("Couldn't open codec.\n");
return -1;
}url
pFrame=av_frame_alloc(); pFrameYUV=av_frame_alloc(); out_buffer=(unsigned char *)av_malloc(av_image_get_buffer_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height,1)); av_image_fill_arrays(pFrameYUV->data, pFrameYUV->linesize,out_buffer, AV_PIX_FMT_YUV420P,pCodecCtx->width, pCodecCtx->height,1); //準備讀取 //AVPacket用於存儲一幀一幀的壓縮數據(H264) //緩衝區,開闢空間 packet=(AVPacket *)av_malloc(sizeof(AVPacket));
//用於轉碼(縮放)的參數,轉以前的寬高,轉以後的寬高,格式等
img_convert_ctx = sws_getContext(pCodecCtx->width, pCodecCtx->height, pCodecCtx->pix_fmt,
pCodecCtx->width, pCodecCtx->height, AV_PIX_FMT_YUV420P, SWS_BICUBIC, NULL, NULL, NULL);
//輸出視頻信息
sprintf(info, "[Input ]%s\n", input_str);
sprintf(info, "%s[Output ]%s\n",info,output_str);
sprintf(info, "%s[Format ]%s\n",info, pFormatCtx->iformat->name);
sprintf(info, "%s[Codec ]%s\n",info, pCodecCtx->codec->name);
sprintf(info, "%s[Resolution]%dx%d\n",info, pCodecCtx->width,pCodecCtx->height);
fp_yuv=fopen(output_str,"wb+"); if(fp_yuv==NULL){ printf("Cannot open output file.\n"); return -1; } frame_cnt=0; time_start = clock();
//6.一幀一幀的讀取壓縮數據
while(av_read_frame(pFormatCtx, packet)>=0){
//只要視頻壓縮數據(根據流的索引位置判斷)
if(packet->stream_index==videoindex){
//7.解碼一幀視頻壓縮數據,獲得視頻像素數據
ret = avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, packet);
if(ret < 0){
LOGE("Decode Error.\n");
return -1;
}
//爲0說明解碼完成,非0正在解碼
if(got_picture){
//AVFrame轉爲像素格式YUV420,寬高
//2 6輸入、輸出數據
//3 7輸入、輸出畫面一行的數據的大小 AVFrame 轉換是一行一行轉換的
//4 輸入數據第一列要轉碼的位置 從0開始
//5 輸入畫面的高度
sws_scale(img_convert_ctx, (const uint8_t const)pFrame->data, pFrame->linesize, 0, pCodecCtx->height,
pFrameYUV->data, pFrameYUV->linesize);
//輸出到YUV文件
//AVFrame像素幀寫入文件
//data解碼後的圖像像素數據(音頻採樣數據)
//Y 亮度 UV 色度(壓縮了) 人對亮度更加敏感
//U V 個數是Y的1/4
y_size=pCodecCtx->width*pCodecCtx->height;
fwrite(pFrameYUV->data[0],1,y_size,fp_yuv); //Y
fwrite(pFrameYUV->data[1],1,y_size/4,fp_yuv); //U
fwrite(pFrameYUV->data[2],1,y_size/4,fp_yuv); //V
//Output info
char pictype_str[10]={0};
switch(pFrame->pict_type){
case AV_PICTURE_TYPE_I:sprintf(pictype_str,"I");break;
case AV_PICTURE_TYPE_P:sprintf(pictype_str,"P");break;
case AV_PICTURE_TYPE_B:sprintf(pictype_str,"B");break;
default:sprintf(pictype_str,"Other");break;
}
LOGI("Frame Index: %5d. Type:%s",frame_cnt,pictype_str);
//釋放資源
frame_cnt++;
}
}
av_free_packet(packet);
}
這只是說如何解碼視頻,還有音頻沒有解碼,可是過程類似,甚至更簡單