1

我正在尝试为 ffmpeg 实现一个自定义读取功能,该功能将从本地视频(将来从设备)检索缓冲区,然后解码此缓冲区等。

所以,这是我的阅读功能

int IORead(void *opaque, uint8_t *buf, int buf_size)
{
FileReader* datrec = (FileReader*)opaque;
int ret = datrec->Read(buf, buf_size);
return ret;
}

至于 FileReader :

class FileReader { 
protected:
  int fd;
public:
  FileReader(const char *filename){ //, int buf_size){
     fd = open(filename, O_RDONLY);
  };

  ~FileReader() {
      close(fd);
  };

  int Read(uint8_t *buf, int buf_size){
    int len = read(fd, buf, buf_size);
    return len;
  };
};

对于我的执行:

FileReader *receiver = new FileReader("/sdcard/clip.ts");

AVFormatContext *avFormatContextPtr = NULL;
this->iobuffer = (unsigned char*) av_malloc(4096 + FF_INPUT_BUFFER_PADDING_SIZE);
avFormatContextPtr = avformat_alloc_context();
avFormatContextPtr->pb = avio_alloc_context(this->iobuffer, 4096, 0, receiver, IORead, NULL, NULL);
avFormatContextPtr->pb->seekable    = 0;

int err = avformat_open_input(&avFormatContextPtr, "", NULL, NULL) ;
if( err != 0)
 {...}
// Decoding process
  {...}

但是,一旦avformat_open_input()调用了 read 函数,IORead就会调用 read 函数并继续读取文件clip.ts,直到文件结束,然后才退出并到达解码过程,没有要解码的数据(因为所有数据都被消耗掉了)

我不知道有什么问题,尤其是这段代码

AVFormatContext *avFormatContextPtr = NULL;
int err = avformat_open_input(&avFormatContextPtr, "/sdcard/clip.ts", NULL, NULL) ;

在到达文件末尾之前不会阻塞。

我错过了什么吗?我感谢您的帮助。

4

1 回答 1

0

很可能,avformat 无法确定您的流的类型。你应该使用类似的东西

avFormatContextPtr->iformat = av_find_input_format("mpegts");
于 2014-07-15T14:12:40.597 回答