On Mon, May 30, 2016 at 2:25 PM, Michael Niedermayer <mich...@niedermayer.cc> wrote: > Fixes Ticket5467 "Lossless j2k information no longer shown" > > Based on suggestion by Hendrik Leppkes > Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> > --- > libavformat/dump.c | 3 +++ > libavformat/utils.c | 3 +++ > 2 files changed, 6 insertions(+) > > diff --git a/libavformat/dump.c b/libavformat/dump.c > index 9eb6146..e016a37 100644 > --- a/libavformat/dump.c > +++ b/libavformat/dump.c > @@ -453,6 +453,9 @@ static void dump_stream_format(AVFormatContext *ic, int i, > return; > } > > + // Fields which are missing from AVCodecParameters need to be taken from > the AVCodecContext > + avctx->properties = st->codec->properties; > + > if (separator) > av_opt_set(avctx, "dump_separator", separator, 0); > avcodec_string(buf, sizeof(buf), avctx, is_output); > diff --git a/libavformat/utils.c b/libavformat/utils.c > index 47f5ba0..8f0361a 100644 > --- a/libavformat/utils.c > +++ b/libavformat/utils.c > @@ -3807,6 +3807,9 @@ FF_DISABLE_DEPRECATION_WARNINGS > } > FF_ENABLE_DEPRECATION_WARNINGS > #endif > + // Fields unavailable in AVCodecParameters > + st->codec->properties = st->internal->avctx->properties; > +
st->codec is deprecated, so it should be in deprecation guards so the code doesn't break when the version is bumped. > > st->internal->avctx_inited = 0; > } > -- > 1.7.9.5 > > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel