diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-22 13:42:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-22 15:30:31 +0200 |
commit | a45cf639e6fb8c86aff91a00970060cd0be401c9 (patch) | |
tree | 321fc0cb192b81be3c03516833f8413260cd1d8d /libavformat/internal.h | |
parent | d09321b68e8373435aa98801929c0a5714efd104 (diff) | |
download | ffmpeg-a45cf639e6fb8c86aff91a00970060cd0be401c9.tar.gz |
libavformat/mux: Add ff_choose_chroma_location()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index d665cbdab0..f90df90242 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -411,6 +411,11 @@ enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags); AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision); /** + * Chooses a timebase for muxing the specified stream. + */ +enum AVChromaLocation ff_choose_chroma_location(AVFormatContext *s, AVStream *st); + +/** * Generate standard extradata for AVC-Intra based on width/height and field * order. */ |