Commit cc4f28aa authored by Matthias Keiser's avatar Matthias Keiser Committed by Rémi Denis-Courmont

avcodec: copy video orientation to output format

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent d4b9df3d
...@@ -363,6 +363,8 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context, ...@@ -363,6 +363,8 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
} }
p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma; p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
p_dec->fmt_out.video.orientation = p_dec->fmt_in.video.orientation;
#if LIBAVCODEC_VERSION_MAJOR < 54 #if LIBAVCODEC_VERSION_MAJOR < 54
/* Setup palette */ /* Setup palette */
memset( &p_sys->palette, 0, sizeof(p_sys->palette) ); memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment