Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-02-01 16:21:36 +0300
committerClément Bœsch <u@pkh.me>2017-02-01 16:21:36 +0300
commit566bfd59c963938e183d523be9216b3f95ad8a09 (patch)
tree1c22e7de6792dbe4477340cbc2fc5722fad2153b /libavcodec/libxvid.h
parente4d65434633b67fd03d379fe9d0ab9dc97d767dc (diff)
parentd639dcdae022130078c9c84b7b691c5e9694786c (diff)
Merge commit 'd639dcdae022130078c9c84b7b691c5e9694786c'
* commit 'd639dcdae022130078c9c84b7b691c5e9694786c': ratecontrol: Move Xvid-related functions to the place they are actually used Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/libxvid.h')
-rw-r--r--libavcodec/libxvid.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/libxvid.h b/libavcodec/libxvid.h
index ef9a5a9c59..58bef61660 100644
--- a/libavcodec/libxvid.h
+++ b/libavcodec/libxvid.h
@@ -26,4 +26,11 @@
* common functions for use with the Xvid wrappers
*/
+struct MpegEncContext;
+
+/* rate control */
+int ff_xvid_rate_control_init(struct MpegEncContext *s);
+void ff_xvid_rate_control_uninit(struct MpegEncContext *s);
+float ff_xvid_rate_estimate_qscale(struct MpegEncContext *s, int dry_run);
+
#endif /* AVCODEC_LIBXVID_H */