imx6移植librtmp

一.openssl交叉编译
1.下载
版本不要太高,刚开始版本高了,有些函数取消了,链接不上
使用1.0.1f即可
2.编译成共享库
./config no-asm shared --prefix=/usr/local/arm/openssl
3.修改Makefile
CROSS_COMPILE=arm-none-linux-gnueabi-
4.make
make install
 
二.zlib交叉编译
1.下载
2../configure --prefix=/usr/local/arm/zlib
3.修改Makefile
gcc、ar的地方换成交叉编译器的
 
三.rtmpdump 交叉编译
1.下载
git clone git://git.ffmpeg.org/rtmpdump
2.编译
直接修改makefile,需要修改两个makefile
prefix=/usr/local/arm/librtmp
CROSS_COMPILE=arm-none-linux-gnueabi-
XLDFLAGS=-L/usr/local/arm/openssl/lib -L/usr/local/arm/zlib/lib
XCFLAGS=-I/usr/local/arm/openssl/include -I/usr/local/arm/zlib/include
注意:inlude里不要有文件夹,头文件直接放在include下
3.make
cannot find -lz可能会出现这种错误,产生这种错误是在编译客户程序才出现,此时librtmp库已经生成,直接可以使用.so库
 
 
测试代码
/*
 * main.cpp
 *
 *  Created on: Jan 9, 2017
 *      Author: tla001
 */
extern "C"{
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<netdb.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

#include "rtmp.h"
#include "log.h"
}


int printfAVal(const AVal al)
{
    int i = 0;
    for(i = 0;i <al.av_len;i++)
        printf("%c",al.av_val[i]);
    printf("\n");
}

const char RTMPProtocolStringsLower_1[][7] = {
  "rtmp",
  "rtmpt",
  "rtmpe",
  "rtmpte",
  "rtmps",
  "rtmpts",
  "",
  "",
  "rtmfp"
};

#define DEF_TIMEOUT    30    /* seconds */


int main(int argc,char * argv[])
{
    int Ret = -1;
    RTMP my_rtmp;
    AVal Host, App, Playpath;
    unsigned int Port = 0;
    int Protocol = RTMP_PROTOCOL_UNDEFINED;

    AVal sockshost = { 0, 0 };
    AVal tcUrl = { 0, 0 };
    AVal swfUrl = { 0, 0 };
    AVal pageUrl = { 0, 0 };
    AVal auth = { 0, 0 };
    AVal swfSHA256Hash = { 0, 0 };
    AVal flashVer = { 0, 0 };
    AVal subscribepath = { 0, 0 };
    AVal usherToken = { 0, 0 };
    uint32_t swfSize = 0;
    uint32_t dSeek = 0;       // seek position in resume mode, 0 otherwise
    int bLiveStream = FALSE;  // is it a live stream? then we can't seek/resume
    uint32_t dStopOffset = 0;
    long int timeout = DEF_TIMEOUT;   // timeout connection after 120 seconds


    int fd = 0;

    char *input_rtmp_url = NULL;
    char RTMP_RUL[] = "rtmp://live.hkstv.hk.lxdns.com/live/hks";
    if(argv[1]==NULL){
        input_rtmp_url = RTMP_RUL;
    }else{
        input_rtmp_url = argv[1];
    }

    printf("run %s\n",(char*)argv[0]);
    printf("input_rtmp_url == %s\n",input_rtmp_url);



    RTMP_Init(&my_rtmp);

    //InitSockets();

    Ret = RTMP_ParseURL(input_rtmp_url, &Protocol, &Host, &Port,
        &Playpath, &App);
    if(Ret == TRUE){
        printfAVal(Host);
        printfAVal(App);
        printfAVal(Playpath);
        printf("%d\n",Port);
    }else{
        printf("url(%s) con`t parsed!\n",input_rtmp_url);\
        goto EXIT;
    }

    if (Port == 0)
      {
        if (Protocol & RTMP_FEATURE_SSL)
      Port = 443;
        else if (Protocol & RTMP_FEATURE_HTTP)
      Port = 80;
        else
      Port = 1935;
      }

    if (tcUrl.av_len == 0)
      {
        tcUrl.av_len = strlen(RTMPProtocolStringsLower_1[Protocol]) +
          Host.av_len + App.av_len + sizeof("://:65535/");
        tcUrl.av_val = (char *) malloc(tcUrl.av_len);
        if (!tcUrl.av_val)
          return -1;
        tcUrl.av_len = snprintf(tcUrl.av_val, tcUrl.av_len, "%s://%.*s:%d/%.*s",
             RTMPProtocolStringsLower_1[Protocol], Host.av_len,
             Host.av_val,Port, App.av_len, App.av_val);
      }

    RTMP_SetupStream(&my_rtmp,
             Protocol,
             &Host,
             Port,
             &sockshost,
             &Playpath,
             &tcUrl,
             &swfUrl,
             &pageUrl,
             &App,
             &auth,
             &swfSHA256Hash,
             swfSize,
             &flashVer,
             &subscribepath,
             &usherToken,
             dSeek,
             dStopOffset,bLiveStream, timeout);

    RTMP_Connect(&my_rtmp,NULL);

    RTMP_ConnectStream(&my_rtmp,dSeek);


    fd = open("test.flv",O_CREAT|O_RDWR);

    if(fd){
        char buf[1024*1024] = {0};
        while(1){
            memset(buf,0,1024*1024);
            Ret = RTMP_Read(&my_rtmp,buf,1024*1024);
            printf("read size %d\n",Ret);
            if(Ret <= 0)
                break;
            else{
                write(fd,buf,Ret);
            }
        }
    }
EXIT:
    if(fd)
        close(fd);
    RTMP_Close(&my_rtmp);
    return 0;
}
View Code

 

 
 

转载于:https://www.cnblogs.com/tla001/p/6266827.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值