Mercurial > libavcodec.hg
annotate ratecontrol.h @ 12413:e6e4059ea421 libavcodec
Mark xmm registers as clobbered in simple loopfilter. Should fix the last
two VP8-related fate failures on Win64.
| author | rbultje |
|---|---|
| date | Tue, 24 Aug 2010 16:52:27 +0000 |
| parents | e522dbf60abd |
| children |
| rev | line source |
|---|---|
| 0 | 1 /* |
|
3789
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
2 * Ratecontrol |
|
8629
04423b2f6e0b
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
7760
diff
changeset
|
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard |
|
1739
07a484280a82
copyright year update of the files i touched and remembered, things look annoyingly unmaintained otherwise
michael
parents:
1719
diff
changeset
|
4 * Copyright (c) 2002-2004 Michael Niedermayer |
| 0 | 5 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3789
diff
changeset
|
6 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3789
diff
changeset
|
7 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3789
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
| 429 | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3789
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
| 0 | 12 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3789
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
| 0 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Lesser General Public License for more details. | |
| 0 | 17 * |
| 429 | 18 * You should have received a copy of the GNU Lesser General Public |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3789
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2997
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 21 */ |
| 22 | |
| 7760 | 23 #ifndef AVCODEC_RATECONTROL_H |
| 24 #define AVCODEC_RATECONTROL_H | |
| 0 | 25 |
|
3789
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
26 /** |
|
11644
7dd2a45249a9
Remove explicit filename from Doxygen @file commands.
diego
parents:
11596
diff
changeset
|
27 * @file |
|
3789
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
28 * ratecontrol header. |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
29 */ |
| 3068 | 30 |
| 5162 | 31 #include <stdio.h> |
| 32 #include <stdint.h> | |
|
11832
e522dbf60abd
Move eval.c and eval.h from libavcodec to libavutil, and make the eval
stefano
parents:
11644
diff
changeset
|
33 #include "libavutil/eval.h" |
| 4084 | 34 |
| 268 | 35 typedef struct Predictor{ |
| 36 double coeff; | |
| 37 double count; | |
| 38 double decay; | |
| 39 } Predictor; | |
| 40 | |
| 329 | 41 typedef struct RateControlEntry{ |
| 42 int pict_type; | |
|
690
a1c69cb685b3
adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents:
680
diff
changeset
|
43 float qscale; |
| 329 | 44 int mv_bits; |
| 45 int i_tex_bits; | |
| 46 int p_tex_bits; | |
| 47 int misc_bits; | |
| 3064 | 48 int header_bits; |
| 1064 | 49 uint64_t expected_bits; |
| 329 | 50 int new_pict_type; |
| 51 float new_qscale; | |
| 612 | 52 int mc_mb_var_sum; |
| 53 int mb_var_sum; | |
| 54 int i_count; | |
| 3064 | 55 int skip_count; |
| 612 | 56 int f_code; |
| 57 int b_code; | |
| 329 | 58 }RateControlEntry; |
| 59 | |
| 1110 | 60 /** |
| 61 * rate control context. | |
| 62 */ | |
| 329 | 63 typedef struct RateControlContext{ |
| 64 FILE *stats_file; | |
| 2967 | 65 int num_entries; ///< number of RateControlEntries |
| 329 | 66 RateControlEntry *entry; |
| 2967 | 67 double buffer_index; ///< amount of bits in the video/audio buffer |
| 612 | 68 Predictor pred[5]; |
| 2967 | 69 double short_term_qsum; ///< sum of recent qscales |
| 70 double short_term_qcount; ///< count of recent qscales | |
| 71 double pass1_rc_eq_output_sum;///< sum of the output of the rc equation, this is used for normalization | |
| 72 double pass1_wanted_bits; ///< bits which should have been outputed by the pass1 code (including complexity init) | |
| 612 | 73 double last_qscale; |
| 2967 | 74 double last_qscale_for[5]; ///< last qscale for a specific pict type, used for max_diff & ipb factor stuff |
| 612 | 75 int last_mc_mb_var_sum; |
| 76 int last_mb_var_sum; | |
| 1064 | 77 uint64_t i_cplx_sum[5]; |
| 78 uint64_t p_cplx_sum[5]; | |
| 79 uint64_t mv_bits_sum[5]; | |
| 80 uint64_t qscale_sum[5]; | |
| 612 | 81 int frame_count[5]; |
| 680 | 82 int last_non_b_pict_type; |
| 3064 | 83 |
| 84 void *non_lavc_opaque; ///< context for non lavc rc code (for example xvid) | |
| 85 float dry_run_qscale; ///< for xvid rc | |
| 3204 | 86 int last_picture_number; ///< for xvid rc |
|
11596
e22a96273dc4
Rename AVEvalExpr to AVExpr, as suggested by Michael.
stefano
parents:
8718
diff
changeset
|
87 AVExpr * rc_eq_eval; |
| 329 | 88 }RateControlContext; |
| 89 | |
| 936 | 90 struct MpegEncContext; |
| 91 | |
|
3789
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
92 /* rate control */ |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
93 int ff_rate_control_init(struct MpegEncContext *s); |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
94 float ff_rate_estimate_qscale(struct MpegEncContext *s, int dry_run); |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
95 void ff_write_pass1_stats(struct MpegEncContext *s); |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
96 void ff_rate_control_uninit(struct MpegEncContext *s); |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
97 int ff_vbv_update(struct MpegEncContext *s, int frame_size); |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
98 void ff_get_2pass_fcode(struct MpegEncContext *s); |
| 2967 | 99 |
|
3789
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
100 int ff_xvid_rate_control_init(struct MpegEncContext *s); |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
101 void ff_xvid_rate_control_uninit(struct MpegEncContext *s); |
|
730ad999e379
Move the ratecontrol related code from mpegvideo.h to a separate header file.
takis
parents:
3786
diff
changeset
|
102 float ff_xvid_rate_estimate_qscale(struct MpegEncContext *s, int dry_run); |
| 930 | 103 |
| 7760 | 104 #endif /* AVCODEC_RATECONTROL_H */ |
| 1652 | 105 |
