我正在尝试使用libav(ffmpeg)使用MJPEG视频有效负载创建RTP流
示例代码非常简单,并且可以与MPEG1一起使用
我看到MJPEG中的编码有效,但是随后当我需要发送mjpeg时
帧RTP发送者向我返回错误:
我在libav header 中看到注释:
/**
* some codecs need / can use extradata like Huffman tables.
* MJPEG: Huffman tables
* rv10: additional flags
* MPEG-4: global headers (they can be in the bitstream or here)
* The allocated memory should be AV_INPUT_BUFFER_PADDING_SIZE bytes larger
* than extradata_size to avoid problems if it is read with the bitstream reader.
* The bytewise contents of extradata must not depend on the architecture or CPU endianness.
* - encoding: Set/allocated/freed by libavcodec.
* - decoding: Set/allocated/freed by user.
*/
uint8_t *extradata;
int extradata_size;
但是如何更正填充霍夫曼表或初始化默认表。
我是否需要为编码器设置标志?
谢谢。
最佳答案
您可以将huffman选项设置为0,即:
ffmpeg -i /dev/video0 -input_format mjpeg -f v4l2 -pix_fmt yuvj420p -vcodec mjpeg -huffman 0 -f rtp "rtp://127.0.0.1:10000" -sdp_file sdp_file
关于c++ - LIBAV MJPEG编码和霍夫曼表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53207692/