diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-02-19 18:52:26 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-03-24 06:07:51 +0100 |
commit | 4a0f6651434c6f213d830140f575b4ec7858519f (patch) | |
tree | 60d1d4a771b97c24413204a4db92b4db1b0d944b /libavcodec/internal.h | |
parent | 5a7e35dd2351c30bab45177b9482cb8833a0ca78 (diff) | |
download | ffmpeg-4a0f6651434c6f213d830140f575b4ec7858519f.tar.gz |
libavcodec: when decoding, copy replaygain side data to decoded frames
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r-- | libavcodec/internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 9f7213c17d..268a7584b2 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -186,4 +186,9 @@ int ff_set_dimensions(AVCodecContext *s, int width, int height); int ff_side_data_update_matrix_encoding(AVFrame *frame, enum AVMatrixEncoding matrix_encoding); +/** + * Set various frame properties from the codec context / packet data. + */ +int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame); + #endif /* AVCODEC_INTERNAL_H */ |