ffmpeg中的flv 的demuxer在哪里?
我搜了下,好像只有decoder和encoder,为什么没有demuxer呢?
find . -name "*flv*"
./tests/ref/seek/adpcm_swf.flv.ref
./tests/ref/seek/flv.flv.ref
./tests/ref/seek/lavf.flv.ref
./tests/ref/seek/flashsv.flv.ref
./tests/ref/vsynth2/flv
./tests/ref/vsynth1/flv
./tests/ref/lavf/flv_fmt
./libavcodec/flvdec.o
./libavcodec/flvenc.c
./libavcodec/flvdec.d
./libavcodec/flvenc.d
./libavcodec/flv.h
./libavcodec/flvenc.o
./libavcodec/flvdec.c
./libavformat/flvdec.o
./libavformat/flvenc.c
./libavformat/flvdec.d
./libavformat/flvenc.d
./libavformat/flv.h
./libavformat/flvenc.o
./libavformat/flvdec.c
------解决方案--------------------------------------------------------
音视频编解码都在libavcodec目录,文件合成分离都在libavformat目录。
./libavcodec/flvdec.c是FLV视频解码器
./libavformat/flvdec.c就是FLV文件分离器(parser,demuxer,splitter)