]> git.sesse.net Git - ffmpeg/commit
avformat: fix AVStream private fields marker
authorwm4 <nfxjfg@googlemail.com>
Mon, 13 Feb 2017 10:50:54 +0000 (11:50 +0100)
committerwm4 <nfxjfg@googlemail.com>
Thu, 2 Mar 2017 09:32:21 +0000 (10:32 +0100)
commit227f6e1e8d4bd23734db9769bb52cc9896e253b5
treeff6d31ec86c5081476d80fb12932ed351cedc513
parent554bc4eea8aa71d5c017289a036b49313882f7e6
avformat: fix AVStream private fields marker

Public fields were added after the private fields (negating the entire
point of this). New private fields go into AVStreamInternal anyway.

The new marker was set by guessing which fields are supposed to be
private and wshich not. recommended_encoder_configuration is accessed by
ffserver_config.c directly, and is supposed to use the public API.

ffmpeg.c accesses AVStream.cur_dts, even though it's a private field,
but that seems to be an older error.
libavformat/avformat.h