Sagar
Sagar

Reputation: 237

QTRLE is supported by ffmpeg?

Upvotes: 1

Views: 2014

Answers (1)

aergistal
aergistal

Reputation: 31219

FFmpeg supports QTRLE, the problem is you're looking at the wrong example.

The code you provided seems to be based on decoding_encoding.c which is an example of libavcodec usage that works on codecs only. It only outputs raw h264 or mpg.

If you want to create a mov file you must mux the result in this format using libavformat. See the muxing.c example instead.

Upvotes: 2

Related Questions