]> git.sesse.net Git - ffmpeg/commit
rtpenc_chain: Use the original AVFormatContext for getting payload type
authorMartin Storsjö <martin@martin.st>
Wed, 23 Jan 2013 21:25:09 +0000 (23:25 +0200)
committerMartin Storsjö <martin@martin.st>
Thu, 24 Jan 2013 09:31:36 +0000 (11:31 +0200)
commit4a4a7e138c92901e04db46a6b05cc6948023e5f5
tree518e9b845e3435aa7885493201d25d7d3c408b90
parent932117171f32fc3160f3d92943290238945fcb28
rtpenc_chain: Use the original AVFormatContext for getting payload type

In ff_rtp_get_payload_type, the AVFormatContext is used for checking
whether the payload_type or rtpflags options are set. In rtpenc_chain,
the rtpctx struct is a newly initialized struct where no options have
been set yet, so no options can be fetched from there.

All muxers that internally chain rtp muxers have the "rtpflags" field
that allows passing such options on (which is how this worked before
8034130e06), so this works just as intended.

This makes it possible to produce H263 in RFC2190 format with chained
RTP muxers.

CC: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtpenc_chain.c