2 * The simplest mpeg encoder (well, it was the simplest!)
3 * Copyright (c) 2000,2001 Fabrice Bellard
4 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
6 * 4MV & hq & B-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
8 * This file is part of Libav.
10 * Libav is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * Libav is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with Libav; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 * The simplest mpeg encoder (well, it was the simplest!).
30 #include "libavutil/intmath.h"
31 #include "libavutil/mathematics.h"
32 #include "libavutil/opt.h"
35 #include "mpegvideo.h"
36 #include "mpegvideo_common.h"
42 #include "aandcttab.h"
44 #include "mpeg4video.h"
51 static int encode_picture(MpegEncContext
*s
, int picture_number
);
52 static int dct_quantize_refine(MpegEncContext
*s
, DCTELEM
*block
, int16_t *weight
, DCTELEM
*orig
, int n
, int qscale
);
53 static int sse_mb(MpegEncContext
*s
);
54 static void denoise_dct_c(MpegEncContext
*s
, DCTELEM
*block
);
55 static int dct_quantize_trellis_c(MpegEncContext
*s
, DCTELEM
*block
, int n
, int qscale
, int *overflow
);
57 /* enable all paranoid tests for rounding, overflows, etc... */
62 static uint8_t default_mv_penalty
[MAX_FCODE
+1][MAX_MV
*2+1];
63 static uint8_t default_fcode_tab
[MAX_MV
*2+1];
65 void ff_convert_matrix(DSPContext
*dsp
, int (*qmat
)[64], uint16_t (*qmat16
)[2][64],
66 const uint16_t *quant_matrix
, int bias
, int qmin
, int qmax
, int intra
)
71 for(qscale
=qmin
; qscale
<=qmax
; qscale
++){
73 if (dsp
->fdct
== ff_jpeg_fdct_islow_8
||
74 dsp
->fdct
== ff_jpeg_fdct_islow_10
76 || dsp
->fdct
== ff_faandct
80 const int j
= dsp
->idct_permutation
[i
];
81 /* 16 <= qscale * quant_matrix[i] <= 7905 */
82 /* 19952 <= ff_aanscales[i] * qscale * quant_matrix[i] <= 249205026 */
83 /* (1 << 36) / 19952 >= (1 << 36) / (ff_aanscales[i] * qscale * quant_matrix[i]) >= (1 << 36) / 249205026 */
84 /* 3444240 >= (1 << 36) / (ff_aanscales[i] * qscale * quant_matrix[i]) >= 275 */
86 qmat
[qscale
][i
] = (int)((UINT64_C(1) << QMAT_SHIFT
) /
87 (qscale
* quant_matrix
[j
]));
89 } else if (dsp
->fdct
== fdct_ifast
90 #ifndef FAAN_POSTSCALE
91 || dsp
->fdct
== ff_faandct
95 const int j
= dsp
->idct_permutation
[i
];
96 /* 16 <= qscale * quant_matrix[i] <= 7905 */
97 /* 19952 <= ff_aanscales[i] * qscale * quant_matrix[i] <= 249205026 */
98 /* (1 << 36) / 19952 >= (1 << 36) / (ff_aanscales[i] * qscale * quant_matrix[i]) >= (1<<36)/249205026 */
99 /* 3444240 >= (1 << 36) / (ff_aanscales[i] * qscale * quant_matrix[i]) >= 275 */
101 qmat
[qscale
][i
] = (int)((UINT64_C(1) << (QMAT_SHIFT
+ 14)) /
102 (ff_aanscales
[i
] * qscale
* quant_matrix
[j
]));
106 const int j
= dsp
->idct_permutation
[i
];
107 /* We can safely suppose that 16 <= quant_matrix[i] <= 255
108 So 16 <= qscale * quant_matrix[i] <= 7905
109 so (1<<19) / 16 >= (1<<19) / (qscale * quant_matrix[i]) >= (1<<19) / 7905
110 so 32768 >= (1<<19) / (qscale * quant_matrix[i]) >= 67
112 qmat
[qscale
][i
] = (int)((UINT64_C(1) << QMAT_SHIFT
) / (qscale
* quant_matrix
[j
]));
113 // qmat [qscale][i] = (1 << QMAT_SHIFT_MMX) / (qscale * quant_matrix[i]);
114 qmat16
[qscale
][0][i
] = (1 << QMAT_SHIFT_MMX
) / (qscale
* quant_matrix
[j
]);
116 if(qmat16
[qscale
][0][i
]==0 || qmat16
[qscale
][0][i
]==128*256) qmat16
[qscale
][0][i
]=128*256-1;
117 qmat16
[qscale
][1][i
]= ROUNDED_DIV(bias
<<(16-QUANT_BIAS_SHIFT
), qmat16
[qscale
][0][i
]);
121 for(i
=intra
; i
<64; i
++){
123 if (dsp
->fdct
== fdct_ifast
124 #ifndef FAAN_POSTSCALE
125 || dsp
->fdct
== ff_faandct
128 max
= (8191LL*ff_aanscales
[i
]) >> 14;
130 while(((max
* qmat
[qscale
][i
]) >> shift
) > INT_MAX
){
136 av_log(NULL
, AV_LOG_INFO
, "Warning, QMAT_SHIFT is larger than %d, overflows possible\n", QMAT_SHIFT
- shift
);
140 static inline void update_qscale(MpegEncContext
*s
){
141 s
->qscale
= (s
->lambda
*139 + FF_LAMBDA_SCALE
*64) >> (FF_LAMBDA_SHIFT
+ 7);
142 s
->qscale
= av_clip(s
->qscale
, s
->avctx
->qmin
, s
->avctx
->qmax
);
144 s
->lambda2
= (s
->lambda
*s
->lambda
+ FF_LAMBDA_SCALE
/2) >> FF_LAMBDA_SHIFT
;
147 void ff_write_quant_matrix(PutBitContext
*pb
, uint16_t *matrix
){
153 put_bits(pb
, 8, matrix
[ ff_zigzag_direct
[i
] ]);
160 * init s->current_picture.qscale_table from s->lambda_table
162 void ff_init_qscale_tab(MpegEncContext
*s
){
163 int8_t * const qscale_table
= s
->current_picture
.f
.qscale_table
;
166 for(i
=0; i
<s
->mb_num
; i
++){
167 unsigned int lam
= s
->lambda_table
[ s
->mb_index2xy
[i
] ];
168 int qp
= (lam
*139 + FF_LAMBDA_SCALE
*64) >> (FF_LAMBDA_SHIFT
+ 7);
169 qscale_table
[ s
->mb_index2xy
[i
] ]= av_clip(qp
, s
->avctx
->qmin
, s
->avctx
->qmax
);
173 static void copy_picture_attributes(MpegEncContext
*s
, AVFrame
*dst
, AVFrame
*src
){
176 dst
->pict_type
= src
->pict_type
;
177 dst
->quality
= src
->quality
;
178 dst
->coded_picture_number
= src
->coded_picture_number
;
179 dst
->display_picture_number
= src
->display_picture_number
;
180 // dst->reference = src->reference;
182 dst
->interlaced_frame
= src
->interlaced_frame
;
183 dst
->top_field_first
= src
->top_field_first
;
185 if(s
->avctx
->me_threshold
){
186 if(!src
->motion_val
[0])
187 av_log(s
->avctx
, AV_LOG_ERROR
, "AVFrame.motion_val not set!\n");
189 av_log(s
->avctx
, AV_LOG_ERROR
, "AVFrame.mb_type not set!\n");
190 if(!src
->ref_index
[0])
191 av_log(s
->avctx
, AV_LOG_ERROR
, "AVFrame.ref_index not set!\n");
192 if(src
->motion_subsample_log2
!= dst
->motion_subsample_log2
)
193 av_log(s
->avctx
, AV_LOG_ERROR
, "AVFrame.motion_subsample_log2 doesn't match! (%d!=%d)\n",
194 src
->motion_subsample_log2
, dst
->motion_subsample_log2
);
196 memcpy(dst
->mb_type
, src
->mb_type
, s
->mb_stride
* s
->mb_height
* sizeof(dst
->mb_type
[0]));
199 int stride
= ((16*s
->mb_width
)>>src
->motion_subsample_log2
) + 1;
200 int height
= ((16*s
->mb_height
)>>src
->motion_subsample_log2
);
202 if(src
->motion_val
[i
] && src
->motion_val
[i
] != dst
->motion_val
[i
]){
203 memcpy(dst
->motion_val
[i
], src
->motion_val
[i
], 2*stride
*height
*sizeof(int16_t));
205 if(src
->ref_index
[i
] && src
->ref_index
[i
] != dst
->ref_index
[i
]){
206 memcpy(dst
->ref_index
[i
], src
->ref_index
[i
], s
->mb_stride
*4*s
->mb_height
*sizeof(int8_t));
212 static void update_duplicate_context_after_me(MpegEncContext
*dst
, MpegEncContext
*src
){
213 #define COPY(a) dst->a= src->a
215 COPY(current_picture
);
221 COPY(picture_in_gop_number
);
222 COPY(gop_picture_number
);
223 COPY(frame_pred_frame_dct
); //FIXME don't set in encode_header
224 COPY(progressive_frame
); //FIXME don't set in encode_header
225 COPY(partitioned_frame
); //FIXME don't set in encode_header
230 * Set the given MpegEncContext to defaults for encoding.
231 * the changed fields will not depend upon the prior state of the MpegEncContext.
233 static void MPV_encode_defaults(MpegEncContext
*s
){
235 MPV_common_defaults(s
);
237 for(i
=-16; i
<16; i
++){
238 default_fcode_tab
[i
+ MAX_MV
]= 1;
240 s
->me
.mv_penalty
= default_mv_penalty
;
241 s
->fcode_tab
= default_fcode_tab
;
244 /* init video encoder */
245 av_cold
int MPV_encode_init(AVCodecContext
*avctx
)
247 MpegEncContext
*s
= avctx
->priv_data
;
249 int chroma_h_shift
, chroma_v_shift
;
251 MPV_encode_defaults(s
);
253 switch (avctx
->codec_id
) {
254 case CODEC_ID_MPEG2VIDEO
:
255 if(avctx
->pix_fmt
!= PIX_FMT_YUV420P
&& avctx
->pix_fmt
!= PIX_FMT_YUV422P
){
256 av_log(avctx
, AV_LOG_ERROR
, "only YUV420 and YUV422 are supported\n");
261 if(avctx
->pix_fmt
!= PIX_FMT_YUVJ420P
&& avctx
->pix_fmt
!= PIX_FMT_YUVJ422P
&& avctx
->pix_fmt
!= PIX_FMT_YUVJ444P
&& avctx
->pix_fmt
!= PIX_FMT_BGRA
&&
262 ((avctx
->pix_fmt
!= PIX_FMT_YUV420P
&& avctx
->pix_fmt
!= PIX_FMT_YUV422P
&& avctx
->pix_fmt
!= PIX_FMT_YUV444P
) || avctx
->strict_std_compliance
>FF_COMPLIANCE_UNOFFICIAL
)){
263 av_log(avctx
, AV_LOG_ERROR
, "colorspace not supported in LJPEG\n");
268 if(avctx
->pix_fmt
!= PIX_FMT_YUVJ420P
&& avctx
->pix_fmt
!= PIX_FMT_YUVJ422P
&&
269 ((avctx
->pix_fmt
!= PIX_FMT_YUV420P
&& avctx
->pix_fmt
!= PIX_FMT_YUV422P
) || avctx
->strict_std_compliance
>FF_COMPLIANCE_UNOFFICIAL
)){
270 av_log(avctx
, AV_LOG_ERROR
, "colorspace not supported in jpeg\n");
275 if(avctx
->pix_fmt
!= PIX_FMT_YUV420P
){
276 av_log(avctx
, AV_LOG_ERROR
, "only YUV420 is supported\n");
281 switch (avctx
->pix_fmt
) {
282 case PIX_FMT_YUVJ422P
:
283 case PIX_FMT_YUV422P
:
284 s
->chroma_format
= CHROMA_422
;
286 case PIX_FMT_YUVJ420P
:
287 case PIX_FMT_YUV420P
:
289 s
->chroma_format
= CHROMA_420
;
293 s
->bit_rate
= avctx
->bit_rate
;
294 s
->width
= avctx
->width
;
295 s
->height
= avctx
->height
;
296 if(avctx
->gop_size
> 600 && avctx
->strict_std_compliance
>FF_COMPLIANCE_EXPERIMENTAL
){
297 av_log(avctx
, AV_LOG_ERROR
, "Warning keyframe interval too large! reducing it ...\n");
300 s
->gop_size
= avctx
->gop_size
;
302 s
->flags
= avctx
->flags
;
303 s
->flags2
= avctx
->flags2
;
304 s
->max_b_frames
= avctx
->max_b_frames
;
305 s
->codec_id
= avctx
->codec
->id
;
306 s
->luma_elim_threshold
= avctx
->luma_elim_threshold
;
307 s
->chroma_elim_threshold
= avctx
->chroma_elim_threshold
;
308 s
->strict_std_compliance
= avctx
->strict_std_compliance
;
309 #if FF_API_MPEGVIDEO_GLOBAL_OPTS
310 if (avctx
->flags
& CODEC_FLAG_PART
)
311 s
->data_partitioning
= 1;
313 s
->quarter_sample
= (avctx
->flags
& CODEC_FLAG_QPEL
)!=0;
314 s
->mpeg_quant
= avctx
->mpeg_quant
;
315 s
->rtp_mode
= !!avctx
->rtp_payload_size
;
316 s
->intra_dc_precision
= avctx
->intra_dc_precision
;
317 s
->user_specified_pts
= AV_NOPTS_VALUE
;
319 if (s
->gop_size
<= 1) {
326 s
->me_method
= avctx
->me_method
;
329 s
->fixed_qscale
= !!(avctx
->flags
& CODEC_FLAG_QSCALE
);
331 s
->adaptive_quant
= ( s
->avctx
->lumi_masking
332 || s
->avctx
->dark_masking
333 || s
->avctx
->temporal_cplx_masking
334 || s
->avctx
->spatial_cplx_masking
335 || s
->avctx
->p_masking
336 || s
->avctx
->border_masking
337 || (s
->flags
&CODEC_FLAG_QP_RD
))
340 s
->loop_filter
= !!(s
->flags
& CODEC_FLAG_LOOP_FILTER
);
341 #if FF_API_MPEGVIDEO_GLOBAL_OPTS
342 s
->alternate_scan
= !!(s
->flags
& CODEC_FLAG_ALT_SCAN
);
343 s
->intra_vlc_format
= !!(s
->flags2
& CODEC_FLAG2_INTRA_VLC
);
344 s
->q_scale_type
= !!(s
->flags2
& CODEC_FLAG2_NON_LINEAR_QUANT
);
345 s
->obmc
= !!(s
->flags
& CODEC_FLAG_OBMC
);
348 if(avctx
->rc_max_rate
&& !avctx
->rc_buffer_size
){
349 av_log(avctx
, AV_LOG_ERROR
, "a vbv buffer size is needed, for encoding with a maximum bitrate\n");
353 if(avctx
->rc_min_rate
&& avctx
->rc_max_rate
!= avctx
->rc_min_rate
){
354 av_log(avctx
, AV_LOG_INFO
, "Warning min_rate > 0 but min_rate != max_rate isn't recommended!\n");
357 if(avctx
->rc_min_rate
&& avctx
->rc_min_rate
> avctx
->bit_rate
){
358 av_log(avctx
, AV_LOG_ERROR
, "bitrate below min bitrate\n");
362 if(avctx
->rc_max_rate
&& avctx
->rc_max_rate
< avctx
->bit_rate
){
363 av_log(avctx
, AV_LOG_INFO
, "bitrate above max bitrate\n");
367 if(avctx
->rc_max_rate
&& avctx
->rc_max_rate
== avctx
->bit_rate
&& avctx
->rc_max_rate
!= avctx
->rc_min_rate
){
368 av_log(avctx
, AV_LOG_INFO
, "impossible bitrate constraints, this will fail\n");
371 if(avctx
->rc_buffer_size
&& avctx
->bit_rate
*(int64_t)avctx
->time_base
.num
> avctx
->rc_buffer_size
* (int64_t)avctx
->time_base
.den
){
372 av_log(avctx
, AV_LOG_ERROR
, "VBV buffer too small for bitrate\n");
376 if(!s
->fixed_qscale
&& avctx
->bit_rate
*av_q2d(avctx
->time_base
) > avctx
->bit_rate_tolerance
){
377 av_log(avctx
, AV_LOG_ERROR
, "bitrate tolerance too small for bitrate\n");
381 if( s
->avctx
->rc_max_rate
&& s
->avctx
->rc_min_rate
== s
->avctx
->rc_max_rate
382 && (s
->codec_id
== CODEC_ID_MPEG1VIDEO
|| s
->codec_id
== CODEC_ID_MPEG2VIDEO
)
383 && 90000LL * (avctx
->rc_buffer_size
-1) > s
->avctx
->rc_max_rate
*0xFFFFLL
){
385 av_log(avctx
, AV_LOG_INFO
, "Warning vbv_delay will be set to 0xFFFF (=VBR) as the specified vbv buffer is too large for the given bitrate!\n");
388 if((s
->flags
& CODEC_FLAG_4MV
) && s
->codec_id
!= CODEC_ID_MPEG4
389 && s
->codec_id
!= CODEC_ID_H263
&& s
->codec_id
!= CODEC_ID_H263P
&& s
->codec_id
!= CODEC_ID_FLV1
){
390 av_log(avctx
, AV_LOG_ERROR
, "4MV not supported by codec\n");
394 if(s
->obmc
&& s
->avctx
->mb_decision
!= FF_MB_DECISION_SIMPLE
){
395 av_log(avctx
, AV_LOG_ERROR
, "OBMC is only supported with simple mb decision\n");
399 #if FF_API_MPEGVIDEO_GLOBAL_OPTS
400 if(s
->obmc
&& s
->codec_id
!= CODEC_ID_H263
&& s
->codec_id
!= CODEC_ID_H263P
){
401 av_log(avctx
, AV_LOG_ERROR
, "OBMC is only supported with H263(+)\n");
406 if(s
->quarter_sample
&& s
->codec_id
!= CODEC_ID_MPEG4
){
407 av_log(avctx
, AV_LOG_ERROR
, "qpel not supported by codec\n");
411 #if FF_API_MPEGVIDEO_GLOBAL_OPTS
412 if(s
->data_partitioning
&& s
->codec_id
!= CODEC_ID_MPEG4
){
413 av_log(avctx
, AV_LOG_ERROR
, "data partitioning not supported by codec\n");
418 if(s
->max_b_frames
&& s
->codec_id
!= CODEC_ID_MPEG4
&& s
->codec_id
!= CODEC_ID_MPEG1VIDEO
&& s
->codec_id
!= CODEC_ID_MPEG2VIDEO
){
419 av_log(avctx
, AV_LOG_ERROR
, "b frames not supported by codec\n");
423 if ((s
->codec_id
== CODEC_ID_MPEG4
|| s
->codec_id
== CODEC_ID_H263
||
424 s
->codec_id
== CODEC_ID_H263P
) &&
425 (avctx
->sample_aspect_ratio
.num
> 255 || avctx
->sample_aspect_ratio
.den
> 255)) {
426 av_log(avctx
, AV_LOG_ERROR
, "Invalid pixel aspect ratio %i/%i, limit is 255/255\n",
427 avctx
->sample_aspect_ratio
.num
, avctx
->sample_aspect_ratio
.den
);
431 if((s
->flags
& (CODEC_FLAG_INTERLACED_DCT
|CODEC_FLAG_INTERLACED_ME
|CODEC_FLAG_ALT_SCAN
))
432 && s
->codec_id
!= CODEC_ID_MPEG4
&& s
->codec_id
!= CODEC_ID_MPEG2VIDEO
){
433 av_log(avctx
, AV_LOG_ERROR
, "interlacing not supported by codec\n");
437 if(s
->mpeg_quant
&& s
->codec_id
!= CODEC_ID_MPEG4
){ //FIXME mpeg2 uses that too
438 av_log(avctx
, AV_LOG_ERROR
, "mpeg2 style quantization not supported by codec\n");
442 if((s
->flags
& CODEC_FLAG_CBP_RD
) && !avctx
->trellis
){
443 av_log(avctx
, AV_LOG_ERROR
, "CBP RD needs trellis quant\n");
447 if((s
->flags
& CODEC_FLAG_QP_RD
) && s
->avctx
->mb_decision
!= FF_MB_DECISION_RD
){
448 av_log(avctx
, AV_LOG_ERROR
, "QP RD needs mbd=2\n");
452 if(s
->avctx
->scenechange_threshold
< 1000000000 && (s
->flags
& CODEC_FLAG_CLOSED_GOP
)){
453 av_log(avctx
, AV_LOG_ERROR
, "closed gop with scene change detection are not supported yet, set threshold to 1000000000\n");
457 if((s
->flags2
& CODEC_FLAG2_INTRA_VLC
) && s
->codec_id
!= CODEC_ID_MPEG2VIDEO
){
458 av_log(avctx
, AV_LOG_ERROR
, "intra vlc table not supported by codec\n");
462 if(s
->flags
& CODEC_FLAG_LOW_DELAY
){
463 if (s
->codec_id
!= CODEC_ID_MPEG2VIDEO
){
464 av_log(avctx
, AV_LOG_ERROR
, "low delay forcing is only available for mpeg2\n");
467 if (s
->max_b_frames
!= 0){
468 av_log(avctx
, AV_LOG_ERROR
, "b frames cannot be used with low delay\n");
473 if(s
->q_scale_type
== 1){
474 #if FF_API_MPEGVIDEO_GLOBAL_OPTS
475 if(s
->codec_id
!= CODEC_ID_MPEG2VIDEO
){
476 av_log(avctx
, AV_LOG_ERROR
, "non linear quant is only available for mpeg2\n");
480 if(avctx
->qmax
> 12){
481 av_log(avctx
, AV_LOG_ERROR
, "non linear quant only supports qmax <= 12 currently\n");
486 if(s
->avctx
->thread_count
> 1 && s
->codec_id
!= CODEC_ID_MPEG4
487 && s
->codec_id
!= CODEC_ID_MPEG1VIDEO
&& s
->codec_id
!= CODEC_ID_MPEG2VIDEO
488 && (s
->codec_id
!= CODEC_ID_H263P
|| !(s
->flags
& CODEC_FLAG_H263P_SLICE_STRUCT
))){
489 av_log(avctx
, AV_LOG_ERROR
, "multi threaded encoding not supported by codec\n");
493 if(s
->avctx
->thread_count
< 1){
494 av_log(avctx
, AV_LOG_ERROR
, "automatic thread number detection not supported by codec, patch welcome\n");
498 if(s
->avctx
->thread_count
> 1)
501 if(!avctx
->time_base
.den
|| !avctx
->time_base
.num
){
502 av_log(avctx
, AV_LOG_ERROR
, "framerate not set\n");
506 i
= (INT_MAX
/2+128)>>8;
507 if(avctx
->me_threshold
>= i
){
508 av_log(avctx
, AV_LOG_ERROR
, "me_threshold too large, max is %d\n", i
- 1);
511 if(avctx
->mb_threshold
>= i
){
512 av_log(avctx
, AV_LOG_ERROR
, "mb_threshold too large, max is %d\n", i
- 1);
516 if(avctx
->b_frame_strategy
&& (avctx
->flags
&CODEC_FLAG_PASS2
)){
517 av_log(avctx
, AV_LOG_INFO
, "notice: b_frame_strategy only affects the first pass\n");
518 avctx
->b_frame_strategy
= 0;
521 i
= av_gcd(avctx
->time_base
.den
, avctx
->time_base
.num
);
523 av_log(avctx
, AV_LOG_INFO
, "removing common factors from framerate\n");
524 avctx
->time_base
.den
/= i
;
525 avctx
->time_base
.num
/= i
;
529 if(s
->mpeg_quant
|| s
->codec_id
==CODEC_ID_MPEG1VIDEO
|| s
->codec_id
==CODEC_ID_MPEG2VIDEO
|| s
->codec_id
==CODEC_ID_MJPEG
){
530 s
->intra_quant_bias
= 3<<(QUANT_BIAS_SHIFT
-3); //(a + x*3/8)/x
531 s
->inter_quant_bias
= 0;
533 s
->intra_quant_bias
=0;
534 s
->inter_quant_bias
=-(1<<(QUANT_BIAS_SHIFT
-2)); //(a - x/4)/x
537 if(avctx
->intra_quant_bias
!= FF_DEFAULT_QUANT_BIAS
)
538 s
->intra_quant_bias
= avctx
->intra_quant_bias
;
539 if(avctx
->inter_quant_bias
!= FF_DEFAULT_QUANT_BIAS
)
540 s
->inter_quant_bias
= avctx
->inter_quant_bias
;
542 avcodec_get_chroma_sub_sample(avctx
->pix_fmt
, &chroma_h_shift
, &chroma_v_shift
);
544 if(avctx
->codec_id
== CODEC_ID_MPEG4
&& s
->avctx
->time_base
.den
> (1<<16)-1){
545 av_log(avctx
, AV_LOG_ERROR
, "timebase %d/%d not supported by MPEG 4 standard, "
546 "the maximum admitted value for the timebase denominator is %d\n",
547 s
->avctx
->time_base
.num
, s
->avctx
->time_base
.den
, (1<<16)-1);
550 s
->time_increment_bits
= av_log2(s
->avctx
->time_base
.den
- 1) + 1;
552 switch(avctx
->codec
->id
) {
553 case CODEC_ID_MPEG1VIDEO
:
554 s
->out_format
= FMT_MPEG1
;
555 s
->low_delay
= !!(s
->flags
& CODEC_FLAG_LOW_DELAY
);
556 avctx
->delay
= s
->low_delay ?
0 : (s
->max_b_frames
+ 1);
558 case CODEC_ID_MPEG2VIDEO
:
559 s
->out_format
= FMT_MPEG1
;
560 s
->low_delay
= !!(s
->flags
& CODEC_FLAG_LOW_DELAY
);
561 avctx
->delay
= s
->low_delay ?
0 : (s
->max_b_frames
+ 1);
566 s
->out_format
= FMT_MJPEG
;
567 s
->intra_only
= 1; /* force intra only for jpeg */
568 if(avctx
->codec
->id
== CODEC_ID_LJPEG
&& avctx
->pix_fmt
== PIX_FMT_BGRA
){
569 s
->mjpeg_vsample
[0] = s
->mjpeg_hsample
[0] =
570 s
->mjpeg_vsample
[1] = s
->mjpeg_hsample
[1] =
571 s
->mjpeg_vsample
[2] = s
->mjpeg_hsample
[2] = 1;
573 s
->mjpeg_vsample
[0] = 2;
574 s
->mjpeg_vsample
[1] = 2>>chroma_v_shift
;
575 s
->mjpeg_vsample
[2] = 2>>chroma_v_shift
;
576 s
->mjpeg_hsample
[0] = 2;
577 s
->mjpeg_hsample
[1] = 2>>chroma_h_shift
;
578 s
->mjpeg_hsample
[2] = 2>>chroma_h_shift
;
580 if (!(CONFIG_MJPEG_ENCODER
|| CONFIG_LJPEG_ENCODER
)
581 || ff_mjpeg_encode_init(s
) < 0)
587 if (!CONFIG_H261_ENCODER
) return -1;
588 if (ff_h261_get_picture_format(s
->width
, s
->height
) < 0) {
589 av_log(avctx
, AV_LOG_ERROR
, "The specified picture size of %dx%d is not valid for the H.261 codec.\nValid sizes are 176x144, 352x288\n", s
->width
, s
->height
);
592 s
->out_format
= FMT_H261
;
597 if (!CONFIG_H263_ENCODER
) return -1;
598 if (ff_match_2uint16(h263_format
, FF_ARRAY_ELEMS(h263_format
), s
->width
, s
->height
) == 8) {
599 av_log(avctx
, AV_LOG_INFO
, "The specified picture size of %dx%d is not valid for the H.263 codec.\nValid sizes are 128x96, 176x144, 352x288, 704x576, and 1408x1152. Try H.263+.\n", s
->width
, s
->height
);
602 s
->out_format
= FMT_H263
;
607 s
->out_format
= FMT_H263
;
610 #if FF_API_MPEGVIDEO_GLOBAL_OPTS
611 if (avctx
->flags
& CODEC_FLAG_H263P_UMV
)
613 if (avctx
->flags
& CODEC_FLAG_H263P_AIV
)
614 s
->alt_inter_vlc
= 1;
615 if (avctx
->flags
& CODEC_FLAG_H263P_SLICE_STRUCT
)
616 s
->h263_slice_structured
= 1;
618 s
->h263_aic
= (avctx
->flags
& CODEC_FLAG_AC_PRED
) ?
1:0;
619 s
->modified_quant
= s
->h263_aic
;
620 s
->loop_filter
= (avctx
->flags
& CODEC_FLAG_LOOP_FILTER
) ?
1:0;
621 s
->unrestricted_mv
= s
->obmc
|| s
->loop_filter
|| s
->umvplus
;
624 /* These are just to be sure */
629 s
->out_format
= FMT_H263
;
630 s
->h263_flv
= 2; /* format = 1; 11-bit codes */
631 s
->unrestricted_mv
= 1;
632 s
->rtp_mode
=0; /* don't allow GOB */
637 s
->out_format
= FMT_H263
;
642 s
->out_format
= FMT_H263
;
649 s
->unrestricted_mv
= 0;
652 s
->out_format
= FMT_H263
;
654 s
->unrestricted_mv
= 1;
655 s
->low_delay
= s
->max_b_frames ?
0 : 1;
656 avctx
->delay
= s
->low_delay ?
0 : (s
->max_b_frames
+ 1);
658 case CODEC_ID_MSMPEG4V2
:
659 s
->out_format
= FMT_H263
;
661 s
->unrestricted_mv
= 1;
662 s
->msmpeg4_version
= 2;
666 case CODEC_ID_MSMPEG4V3
:
667 s
->out_format
= FMT_H263
;
669 s
->unrestricted_mv
= 1;
670 s
->msmpeg4_version
= 3;
671 s
->flipflop_rounding
=1;
676 s
->out_format
= FMT_H263
;
678 s
->unrestricted_mv
= 1;
679 s
->msmpeg4_version
= 4;
680 s
->flipflop_rounding
=1;
685 s
->out_format
= FMT_H263
;
687 s
->unrestricted_mv
= 1;
688 s
->msmpeg4_version
= 5;
689 s
->flipflop_rounding
=1;
697 avctx
->has_b_frames
= !s
->low_delay
;
701 s
->progressive_frame
=
702 s
->progressive_sequence
= !(avctx
->flags
& (CODEC_FLAG_INTERLACED_DCT
|CODEC_FLAG_INTERLACED_ME
|CODEC_FLAG_ALT_SCAN
));
705 if (MPV_common_init(s
) < 0)
709 s
->dct_quantize
= dct_quantize_c
;
711 s
->denoise_dct
= denoise_dct_c
;
712 s
->fast_dct_quantize
= s
->dct_quantize
;
714 s
->dct_quantize
= dct_quantize_trellis_c
;
716 if((CONFIG_H263P_ENCODER
|| CONFIG_RV20_ENCODER
) && s
->modified_quant
)
717 s
->chroma_qscale_table
= ff_h263_chroma_qscale_table
;
719 s
->quant_precision
=5;
721 ff_set_cmp(&s
->dsp
, s
->dsp
.ildct_cmp
, s
->avctx
->ildct_cmp
);
722 ff_set_cmp(&s
->dsp
, s
->dsp
.frame_skip_cmp
, s
->avctx
->frame_skip_cmp
);
724 if (CONFIG_H261_ENCODER
&& s
->out_format
== FMT_H261
)
725 ff_h261_encode_init(s
);
726 if (CONFIG_H263_ENCODER
&& s
->out_format
== FMT_H263
)
728 if (CONFIG_MSMPEG4_ENCODER
&& s
->msmpeg4_version
)
729 ff_msmpeg4_encode_init(s
);
730 if ((CONFIG_MPEG1VIDEO_ENCODER
|| CONFIG_MPEG2VIDEO_ENCODER
)
731 && s
->out_format
== FMT_MPEG1
)
732 ff_mpeg1_encode_init(s
);
736 int j
= s
->dsp
.idct_permutation
[i
];
737 if(CONFIG_MPEG4_ENCODER
&& s
->codec_id
==CODEC_ID_MPEG4
&& s
->mpeg_quant
){
738 s
->intra_matrix
[j
] = ff_mpeg4_default_intra_matrix
[i
];
739 s
->inter_matrix
[j
] = ff_mpeg4_default_non_intra_matrix
[i
];
740 }else if(s
->out_format
== FMT_H263
|| s
->out_format
== FMT_H261
){
742 s
->inter_matrix
[j
] = ff_mpeg1_default_non_intra_matrix
[i
];
745 s
->intra_matrix
[j
] = ff_mpeg1_default_intra_matrix
[i
];
746 s
->inter_matrix
[j
] = ff_mpeg1_default_non_intra_matrix
[i
];
748 if(s
->avctx
->intra_matrix
)
749 s
->intra_matrix
[j
] = s
->avctx
->intra_matrix
[i
];
750 if(s
->avctx
->inter_matrix
)
751 s
->inter_matrix
[j
] = s
->avctx
->inter_matrix
[i
];
754 /* precompute matrix */
755 /* for mjpeg, we do include qscale in the matrix */
756 if (s
->out_format
!= FMT_MJPEG
) {
757 ff_convert_matrix(&s
->dsp
, s
->q_intra_matrix
, s
->q_intra_matrix16
,
758 s
->intra_matrix
, s
->intra_quant_bias
, avctx
->qmin
, 31, 1);
759 ff_convert_matrix(&s
->dsp
, s
->q_inter_matrix
, s
->q_inter_matrix16
,
760 s
->inter_matrix
, s
->inter_quant_bias
, avctx
->qmin
, 31, 0);
763 if(ff_rate_control_init(s
) < 0)
769 av_cold
int MPV_encode_end(AVCodecContext
*avctx
)
771 MpegEncContext
*s
= avctx
->priv_data
;
773 ff_rate_control_uninit(s
);
776 if ((CONFIG_MJPEG_ENCODER
|| CONFIG_LJPEG_ENCODER
) && s
->out_format
== FMT_MJPEG
)
777 ff_mjpeg_encode_close(s
);
779 av_freep(&avctx
->extradata
);
784 static int get_sae(uint8_t *src
, int ref
, int stride
){
790 acc
+= FFABS(src
[x
+y
*stride
] - ref
);
797 static int get_intra_count(MpegEncContext
*s
, uint8_t *src
, uint8_t *ref
, int stride
){
804 for(y
=0; y
<h
; y
+=16){
805 for(x
=0; x
<w
; x
+=16){
806 int offset
= x
+ y
*stride
;
807 int sad
= s
->dsp
.sad
[0](NULL
, src
+ offset
, ref
+ offset
, stride
, 16);
808 int mean
= (s
->dsp
.pix_sum(src
+ offset
, stride
) + 128)>>8;
809 int sae
= get_sae(src
+ offset
, mean
, stride
);
811 acc
+= sae
+ 500 < sad
;
818 static int load_input_picture(MpegEncContext
*s
, AVFrame
*pic_arg
){
822 const int encoding_delay
= s
->max_b_frames
;
827 pic_arg
->display_picture_number
= s
->input_picture_number
++;
829 if(pts
!= AV_NOPTS_VALUE
){
830 if(s
->user_specified_pts
!= AV_NOPTS_VALUE
){
832 int64_t last
= s
->user_specified_pts
;
835 av_log(s
->avctx
, AV_LOG_ERROR
, "Error, Invalid timestamp=%"PRId64
", last=%"PRId64
"\n", pts
, s
->user_specified_pts
);
839 s
->user_specified_pts
= pts
;
841 if(s
->user_specified_pts
!= AV_NOPTS_VALUE
){
842 s
->user_specified_pts
=
843 pts
= s
->user_specified_pts
+ 1;
844 av_log(s
->avctx
, AV_LOG_INFO
, "Warning: AVFrame.pts=? trying to guess (%"PRId64
")\n", pts
);
846 pts
= pic_arg
->display_picture_number
;
852 if(encoding_delay
&& !(s
->flags
&CODEC_FLAG_INPUT_PRESERVED
)) direct
=0;
853 if(pic_arg
->linesize
[0] != s
->linesize
) direct
=0;
854 if(pic_arg
->linesize
[1] != s
->uvlinesize
) direct
=0;
855 if(pic_arg
->linesize
[2] != s
->uvlinesize
) direct
=0;
857 // av_log(AV_LOG_DEBUG, "%d %d %d %d\n",pic_arg->linesize[0], pic_arg->linesize[1], s->linesize, s->uvlinesize);
860 i
= ff_find_unused_picture(s
, 1);
864 pic
= (AVFrame
*)&s
->picture
[i
];
868 pic
->data
[i
]= pic_arg
->data
[i
];
869 pic
->linesize
[i
]= pic_arg
->linesize
[i
];
871 if(ff_alloc_picture(s
, (Picture
*)pic
, 1) < 0){
875 i
= ff_find_unused_picture(s
, 0);
879 pic
= (AVFrame
*)&s
->picture
[i
];
882 if(ff_alloc_picture(s
, (Picture
*)pic
, 0) < 0){
886 if( pic
->data
[0] + INPLACE_OFFSET
== pic_arg
->data
[0]
887 && pic
->data
[1] + INPLACE_OFFSET
== pic_arg
->data
[1]
888 && pic
->data
[2] + INPLACE_OFFSET
== pic_arg
->data
[2]){
891 int h_chroma_shift
, v_chroma_shift
;
892 avcodec_get_chroma_sub_sample(s
->avctx
->pix_fmt
, &h_chroma_shift
, &v_chroma_shift
);
895 int src_stride
= pic_arg
->linesize
[i
];
896 int dst_stride
= i ? s
->uvlinesize
: s
->linesize
;
897 int h_shift
= i ? h_chroma_shift
: 0;
898 int v_shift
= i ? v_chroma_shift
: 0;
899 int w
= s
->width
>>h_shift
;
900 int h
= s
->height
>>v_shift
;
901 uint8_t *src
= pic_arg
->data
[i
];
902 uint8_t *dst
= pic
->data
[i
];
904 if(!s
->avctx
->rc_buffer_size
)
905 dst
+=INPLACE_OFFSET
;
907 if(src_stride
==dst_stride
)
908 memcpy(dst
, src
, src_stride
*h
);
919 copy_picture_attributes(s
, pic
, pic_arg
);
920 pic
->pts
= pts
; //we set this here to avoid modifiying pic_arg
923 /* shift buffer entries */
924 for(i
=1; i
<MAX_PICTURE_COUNT
/*s->encoding_delay+1*/; i
++)
925 s
->input_picture
[i
-1]= s
->input_picture
[i
];
927 s
->input_picture
[encoding_delay
]= (Picture
*)pic
;
932 static int skip_check(MpegEncContext
*s
, Picture
*p
, Picture
*ref
){
937 for(plane
=0; plane
<3; plane
++){
938 const int stride
= p
->f
.linesize
[plane
];
939 const int bw
= plane ?
1 : 2;
940 for(y
=0; y
<s
->mb_height
*bw
; y
++){
941 for(x
=0; x
<s
->mb_width
*bw
; x
++){
942 int off
= p
->f
.type
== FF_BUFFER_TYPE_SHARED ?
0: 16;
943 int v
= s
->dsp
.frame_skip_cmp
[1](s
, p
->f
.data
[plane
] + 8*(x
+ y
*stride
)+off
, ref
->f
.data
[plane
] + 8*(x
+ y
*stride
), stride
, 8);
945 switch(s
->avctx
->frame_skip_exp
){
946 case 0: score
= FFMAX(score
, v
); break;
947 case 1: score
+= FFABS(v
);break;
948 case 2: score
+= v
*v
;break;
949 case 3: score64
+= FFABS(v
*v
*(int64_t)v
);break;
950 case 4: score64
+= v
*v
*(int64_t)(v
*v
);break;
956 if(score
) score64
= score
;
958 if(score64
< s
->avctx
->frame_skip_threshold
)
960 if(score64
< ((s
->avctx
->frame_skip_factor
* (int64_t)s
->lambda
)>>8))
965 static int estimate_best_b_count(MpegEncContext
*s
){
966 AVCodec
*codec
= avcodec_find_encoder(s
->avctx
->codec_id
);
967 AVCodecContext
*c
= avcodec_alloc_context3(NULL
);
968 AVFrame input
[FF_MAX_B_FRAMES
+2];
969 const int scale
= s
->avctx
->brd_scale
;
970 int i
, j
, out_size
, p_lambda
, b_lambda
, lambda2
;
971 int outbuf_size
= s
->width
* s
->height
; //FIXME
972 uint8_t *outbuf
= av_malloc(outbuf_size
);
973 int64_t best_rd
= INT64_MAX
;
974 int best_b_count
= -1;
976 assert(scale
>=0 && scale
<=3);
979 p_lambda
= s
->last_lambda_for
[AV_PICTURE_TYPE_P
]; //s->next_picture_ptr->quality;
980 b_lambda
= s
->last_lambda_for
[AV_PICTURE_TYPE_B
]; //p_lambda *FFABS(s->avctx->b_quant_factor) + s->avctx->b_quant_offset;
981 if(!b_lambda
) b_lambda
= p_lambda
; //FIXME we should do this somewhere else
982 lambda2
= (b_lambda
*b_lambda
+ (1<<FF_LAMBDA_SHIFT
)/2 ) >> FF_LAMBDA_SHIFT
;
984 c
->width
= s
->width
>> scale
;
985 c
->height
= s
->height
>> scale
;
986 c
->flags
= CODEC_FLAG_QSCALE
| CODEC_FLAG_PSNR
| CODEC_FLAG_INPUT_PRESERVED
/*| CODEC_FLAG_EMU_EDGE*/;
987 c
->flags
|= s
->avctx
->flags
& CODEC_FLAG_QPEL
;
988 c
->mb_decision
= s
->avctx
->mb_decision
;
989 c
->me_cmp
= s
->avctx
->me_cmp
;
990 c
->mb_cmp
= s
->avctx
->mb_cmp
;
991 c
->me_sub_cmp
= s
->avctx
->me_sub_cmp
;
992 c
->pix_fmt
= PIX_FMT_YUV420P
;
993 c
->time_base
= s
->avctx
->time_base
;
994 c
->max_b_frames
= s
->max_b_frames
;
996 if (avcodec_open2(c
, codec
, NULL
) < 0)
999 for(i
=0; i
<s
->max_b_frames
+2; i
++){
1000 int ysize
= c
->width
*c
->height
;
1001 int csize
= (c
->width
/2)*(c
->height
/2);
1002 Picture pre_input
, *pre_input_ptr
= i ? s
->input_picture
[i
-1] : s
->next_picture_ptr
;
1004 avcodec_get_frame_defaults(&input
[i
]);
1005 input
[i
].data
[0]= av_malloc(ysize
+ 2*csize
);
1006 input
[i
].data
[1]= input
[i
].data
[0] + ysize
;
1007 input
[i
].data
[2]= input
[i
].data
[1] + csize
;
1008 input
[i
].linesize
[0]= c
->width
;
1009 input
[i
].linesize
[1]=
1010 input
[i
].linesize
[2]= c
->width
/2;
1012 if(pre_input_ptr
&& (!i
|| s
->input_picture
[i
-1])) {
1013 pre_input
= *pre_input_ptr
;
1015 if (pre_input
.f
.type
!= FF_BUFFER_TYPE_SHARED
&& i
) {
1016 pre_input
.f
.data
[0] += INPLACE_OFFSET
;
1017 pre_input
.f
.data
[1] += INPLACE_OFFSET
;
1018 pre_input
.f
.data
[2] += INPLACE_OFFSET
;
1021 s
->dsp
.shrink
[scale
](input
[i
].data
[0], input
[i
].linesize
[0], pre_input
.f
.data
[0], pre_input
.f
.linesize
[0], c
->width
, c
->height
);
1022 s
->dsp
.shrink
[scale
](input
[i
].data
[1], input
[i
].linesize
[1], pre_input
.f
.data
[1], pre_input
.f
.linesize
[1], c
->width
>> 1, c
->height
>> 1);
1023 s
->dsp
.shrink
[scale
](input
[i
].data
[2], input
[i
].linesize
[2], pre_input
.f
.data
[2], pre_input
.f
.linesize
[2], c
->width
>> 1, c
->height
>> 1);
1027 for(j
=0; j
<s
->max_b_frames
+1; j
++){
1030 if(!s
->input_picture
[j
])
1033 c
->error
[0]= c
->error
[1]= c
->error
[2]= 0;
1035 input
[0].pict_type
= AV_PICTURE_TYPE_I
;
1036 input
[0].quality
= 1 * FF_QP2LAMBDA
;
1037 out_size
= avcodec_encode_video(c
, outbuf
, outbuf_size
, &input
[0]);
1038 // rd += (out_size * lambda2) >> FF_LAMBDA_SHIFT;
1040 for(i
=0; i
<s
->max_b_frames
+1; i
++){
1041 int is_p
= i
% (j
+1) == j
|| i
==s
->max_b_frames
;
1043 input
[i
+1].pict_type
= is_p ? AV_PICTURE_TYPE_P
: AV_PICTURE_TYPE_B
;
1044 input
[i
+1].quality
= is_p ? p_lambda
: b_lambda
;
1045 out_size
= avcodec_encode_video(c
, outbuf
, outbuf_size
, &input
[i
+1]);
1046 rd
+= (out_size
* lambda2
) >> (FF_LAMBDA_SHIFT
- 3);
1049 /* get the delayed frames */
1051 out_size
= avcodec_encode_video(c
, outbuf
, outbuf_size
, NULL
);
1052 rd
+= (out_size
* lambda2
) >> (FF_LAMBDA_SHIFT
- 3);
1055 rd
+= c
->error
[0] + c
->error
[1] + c
->error
[2];
1067 for(i
=0; i
<s
->max_b_frames
+2; i
++){
1068 av_freep(&input
[i
].data
[0]);
1071 return best_b_count
;
1074 static int select_input_picture(MpegEncContext
*s
){
1077 for(i
=1; i
<MAX_PICTURE_COUNT
; i
++)
1078 s
->reordered_input_picture
[i
-1]= s
->reordered_input_picture
[i
];
1079 s
->reordered_input_picture
[MAX_PICTURE_COUNT
-1]= NULL
;
1081 /* set next picture type & ordering */
1082 if(s
->reordered_input_picture
[0]==NULL
&& s
->input_picture
[0]){
1083 if(/*s->picture_in_gop_number >= s->gop_size ||*/ s
->next_picture_ptr
==NULL
|| s
->intra_only
){
1084 s
->reordered_input_picture
[0]= s
->input_picture
[0];
1085 s
->reordered_input_picture
[0]->f
.pict_type
= AV_PICTURE_TYPE_I
;
1086 s
->reordered_input_picture
[0]->f
.coded_picture_number
= s
->coded_picture_number
++;
1090 if(s
->avctx
->frame_skip_threshold
|| s
->avctx
->frame_skip_factor
){
1091 if(s
->picture_in_gop_number
< s
->gop_size
&& skip_check(s
, s
->input_picture
[0], s
->next_picture_ptr
)){
1092 //FIXME check that te gop check above is +-1 correct
1093 //av_log(NULL, AV_LOG_DEBUG, "skip %p %"PRId64"\n", s->input_picture[0]->f.data[0], s->input_picture[0]->pts);
1095 if (s
->input_picture
[0]->f
.type
== FF_BUFFER_TYPE_SHARED
) {
1097 s
->input_picture
[0]->f
.data
[i
] = NULL
;
1098 s
->input_picture
[0]->f
.type
= 0;
1100 assert( s
->input_picture
[0]->f
.type
== FF_BUFFER_TYPE_USER
1101 || s
->input_picture
[0]->f
.type
== FF_BUFFER_TYPE_INTERNAL
);
1103 s
->avctx
->release_buffer(s
->avctx
, (AVFrame
*)s
->input_picture
[0]);
1107 ff_vbv_update(s
, 0);
1113 if(s
->flags
&CODEC_FLAG_PASS2
){
1114 for(i
=0; i
<s
->max_b_frames
+1; i
++){
1115 int pict_num
= s
->input_picture
[0]->f
.display_picture_number
+ i
;
1117 if(pict_num
>= s
->rc_context
.num_entries
)
1119 if(!s
->input_picture
[i
]){
1120 s
->rc_context
.entry
[pict_num
-1].new_pict_type
= AV_PICTURE_TYPE_P
;
1124 s
->input_picture
[i
]->f
.pict_type
=
1125 s
->rc_context
.entry
[pict_num
].new_pict_type
;
1129 if(s
->avctx
->b_frame_strategy
==0){
1130 b_frames
= s
->max_b_frames
;
1131 while(b_frames
&& !s
->input_picture
[b_frames
]) b_frames
--;
1132 }else if(s
->avctx
->b_frame_strategy
==1){
1133 for(i
=1; i
<s
->max_b_frames
+1; i
++){
1134 if(s
->input_picture
[i
] && s
->input_picture
[i
]->b_frame_score
==0){
1135 s
->input_picture
[i
]->b_frame_score
=
1136 get_intra_count(s
, s
->input_picture
[i
]->f
.data
[0],
1137 s
->input_picture
[i
-1]->f
.data
[0], s
->linesize
) + 1;
1140 for(i
=0; i
<s
->max_b_frames
+1; i
++){
1141 if(s
->input_picture
[i
]==NULL
|| s
->input_picture
[i
]->b_frame_score
- 1 > s
->mb_num
/s
->avctx
->b_sensitivity
) break;
1144 b_frames
= FFMAX(0, i
-1);
1147 for(i
=0; i
<b_frames
+1; i
++){
1148 s
->input_picture
[i
]->b_frame_score
=0;
1150 }else if(s
->avctx
->b_frame_strategy
==2){
1151 b_frames
= estimate_best_b_count(s
);
1153 av_log(s
->avctx
, AV_LOG_ERROR
, "illegal b frame strategy\n");
1158 //static int b_count=0;
1159 //b_count+= b_frames;
1160 //av_log(s->avctx, AV_LOG_DEBUG, "b_frames: %d\n", b_count);
1162 for(i
= b_frames
- 1; i
>=0; i
--){
1163 int type
= s
->input_picture
[i
]->f
.pict_type
;
1164 if(type
&& type
!= AV_PICTURE_TYPE_B
)
1167 if (s
->input_picture
[b_frames
]->f
.pict_type
== AV_PICTURE_TYPE_B
&& b_frames
== s
->max_b_frames
){
1168 av_log(s
->avctx
, AV_LOG_ERROR
, "warning, too many b frames in a row\n");
1171 if(s
->picture_in_gop_number
+ b_frames
>= s
->gop_size
){
1172 if((s
->flags2
& CODEC_FLAG2_STRICT_GOP
) && s
->gop_size
> s
->picture_in_gop_number
){
1173 b_frames
= s
->gop_size
- s
->picture_in_gop_number
- 1;
1175 if(s
->flags
& CODEC_FLAG_CLOSED_GOP
)
1177 s
->input_picture
[b_frames
]->f
.pict_type
= AV_PICTURE_TYPE_I
;
1181 if( (s
->flags
& CODEC_FLAG_CLOSED_GOP
)
1183 && s
->input_picture
[b_frames
]->f
.pict_type
== AV_PICTURE_TYPE_I
)
1186 s
->reordered_input_picture
[0]= s
->input_picture
[b_frames
];
1187 if (s
->reordered_input_picture
[0]->f
.pict_type
!= AV_PICTURE_TYPE_I
)
1188 s
->reordered_input_picture
[0]->f
.pict_type
= AV_PICTURE_TYPE_P
;
1189 s
->reordered_input_picture
[0]->f
.coded_picture_number
= s
->coded_picture_number
++;
1190 for(i
=0; i
<b_frames
; i
++){
1191 s
->reordered_input_picture
[i
+ 1] = s
->input_picture
[i
];
1192 s
->reordered_input_picture
[i
+ 1]->f
.pict_type
= AV_PICTURE_TYPE_B
;
1193 s
->reordered_input_picture
[i
+ 1]->f
.coded_picture_number
= s
->coded_picture_number
++;
1198 if(s
->reordered_input_picture
[0]){
1199 s
->reordered_input_picture
[0]->f
.reference
= s
->reordered_input_picture
[0]->f
.pict_type
!=AV_PICTURE_TYPE_B ?
3 : 0;
1201 ff_copy_picture(&s
->new_picture
, s
->reordered_input_picture
[0]);
1203 if (s
->reordered_input_picture
[0]->f
.type
== FF_BUFFER_TYPE_SHARED
|| s
->avctx
->rc_buffer_size
) {
1204 // input is a shared pix, so we can't modifiy it -> alloc a new one & ensure that the shared one is reuseable
1207 int i
= ff_find_unused_picture(s
, 0);
1210 pic
= &s
->picture
[i
];
1212 pic
->f
.reference
= s
->reordered_input_picture
[0]->f
.reference
;
1213 if(ff_alloc_picture(s
, pic
, 0) < 0){
1217 /* mark us unused / free shared pic */
1218 if (s
->reordered_input_picture
[0]->f
.type
== FF_BUFFER_TYPE_INTERNAL
)
1219 s
->avctx
->release_buffer(s
->avctx
, (AVFrame
*)s
->reordered_input_picture
[0]);
1221 s
->reordered_input_picture
[0]->f
.data
[i
] = NULL
;
1222 s
->reordered_input_picture
[0]->f
.type
= 0;
1224 copy_picture_attributes(s
, (AVFrame
*)pic
, (AVFrame
*)s
->reordered_input_picture
[0]);
1226 s
->current_picture_ptr
= pic
;
1228 // input is not a shared pix -> reuse buffer for current_pix
1230 assert( s
->reordered_input_picture
[0]->f
.type
== FF_BUFFER_TYPE_USER
1231 || s
->reordered_input_picture
[0]->f
.type
== FF_BUFFER_TYPE_INTERNAL
);
1233 s
->current_picture_ptr
= s
->reordered_input_picture
[0];
1235 s
->new_picture
.f
.data
[i
] += INPLACE_OFFSET
;
1238 ff_copy_picture(&s
->current_picture
, s
->current_picture_ptr
);
1240 s
->picture_number
= s
->new_picture
.f
.display_picture_number
;
1241 //printf("dpn:%d\n", s->picture_number);
1243 memset(&s
->new_picture
, 0, sizeof(Picture
));
1248 int MPV_encode_picture(AVCodecContext
*avctx
,
1249 unsigned char *buf
, int buf_size
, void *data
)
1251 MpegEncContext
*s
= avctx
->priv_data
;
1252 AVFrame
*pic_arg
= data
;
1253 int i
, stuffing_count
, context_count
= avctx
->thread_count
;
1255 for(i
=0; i
<context_count
; i
++){
1256 int start_y
= s
->thread_context
[i
]->start_mb_y
;
1257 int end_y
= s
->thread_context
[i
]-> end_mb_y
;
1258 int h
= s
->mb_height
;
1259 uint8_t *start
= buf
+ (size_t)(((int64_t) buf_size
)*start_y
/h
);
1260 uint8_t *end
= buf
+ (size_t)(((int64_t) buf_size
)* end_y
/h
);
1262 init_put_bits(&s
->thread_context
[i
]->pb
, start
, end
- start
);
1265 s
->picture_in_gop_number
++;
1267 if(load_input_picture(s
, pic_arg
) < 0)
1270 if(select_input_picture(s
) < 0){
1275 if (s
->new_picture
.f
.data
[0]) {
1276 s
->pict_type
= s
->new_picture
.f
.pict_type
;
1278 //printf("qs:%f %f %d\n", s->new_picture.quality, s->current_picture.quality, s->qscale);
1279 MPV_frame_start(s
, avctx
);
1281 if (encode_picture(s
, s
->picture_number
) < 0)
1284 avctx
->header_bits
= s
->header_bits
;
1285 avctx
->mv_bits
= s
->mv_bits
;
1286 avctx
->misc_bits
= s
->misc_bits
;
1287 avctx
->i_tex_bits
= s
->i_tex_bits
;
1288 avctx
->p_tex_bits
= s
->p_tex_bits
;
1289 avctx
->i_count
= s
->i_count
;
1290 avctx
->p_count
= s
->mb_num
- s
->i_count
- s
->skip_count
; //FIXME f/b_count in avctx
1291 avctx
->skip_count
= s
->skip_count
;
1295 if (CONFIG_MJPEG_ENCODER
&& s
->out_format
== FMT_MJPEG
)
1296 ff_mjpeg_encode_picture_trailer(s
);
1298 if(avctx
->rc_buffer_size
){
1299 RateControlContext
*rcc
= &s
->rc_context
;
1300 int max_size
= rcc
->buffer_index
* avctx
->rc_max_available_vbv_use
;
1302 if(put_bits_count(&s
->pb
) > max_size
&& s
->lambda
< s
->avctx
->lmax
){
1303 s
->next_lambda
= FFMAX(s
->lambda
+1, s
->lambda
*(s
->qscale
+1) / s
->qscale
);
1304 if(s
->adaptive_quant
){
1306 for(i
=0; i
<s
->mb_height
*s
->mb_stride
; i
++)
1307 s
->lambda_table
[i
]= FFMAX(s
->lambda_table
[i
]+1, s
->lambda_table
[i
]*(s
->qscale
+1) / s
->qscale
);
1309 s
->mb_skipped
= 0; //done in MPV_frame_start()
1310 if(s
->pict_type
==AV_PICTURE_TYPE_P
){ //done in encode_picture() so we must undo it
1311 if(s
->flipflop_rounding
|| s
->codec_id
== CODEC_ID_H263P
|| s
->codec_id
== CODEC_ID_MPEG4
)
1312 s
->no_rounding
^= 1;
1314 if(s
->pict_type
!=AV_PICTURE_TYPE_B
){
1315 s
->time_base
= s
->last_time_base
;
1316 s
->last_non_b_time
= s
->time
- s
->pp_time
;
1318 // av_log(NULL, AV_LOG_ERROR, "R:%d ", s->next_lambda);
1319 for(i
=0; i
<context_count
; i
++){
1320 PutBitContext
*pb
= &s
->thread_context
[i
]->pb
;
1321 init_put_bits(pb
, pb
->buf
, pb
->buf_end
- pb
->buf
);
1326 assert(s
->avctx
->rc_max_rate
);
1329 if(s
->flags
&CODEC_FLAG_PASS1
)
1330 ff_write_pass1_stats(s
);
1333 s
->current_picture_ptr
->f
.error
[i
] = s
->current_picture
.f
.error
[i
];
1334 avctx
->error
[i
] += s
->current_picture_ptr
->f
.error
[i
];
1337 if(s
->flags
&CODEC_FLAG_PASS1
)
1338 assert(avctx
->header_bits
+ avctx
->mv_bits
+ avctx
->misc_bits
+ avctx
->i_tex_bits
+ avctx
->p_tex_bits
== put_bits_count(&s
->pb
));
1339 flush_put_bits(&s
->pb
);
1340 s
->frame_bits
= put_bits_count(&s
->pb
);
1342 stuffing_count
= ff_vbv_update(s
, s
->frame_bits
);
1344 if(s
->pb
.buf_end
- s
->pb
.buf
- (put_bits_count(&s
->pb
)>>3) < stuffing_count
+ 50){
1345 av_log(s
->avctx
, AV_LOG_ERROR
, "stuffing too large\n");
1349 switch(s
->codec_id
){
1350 case CODEC_ID_MPEG1VIDEO
:
1351 case CODEC_ID_MPEG2VIDEO
:
1352 while(stuffing_count
--){
1353 put_bits(&s
->pb
, 8, 0);
1356 case CODEC_ID_MPEG4
:
1357 put_bits(&s
->pb
, 16, 0);
1358 put_bits(&s
->pb
, 16, 0x1C3);
1359 stuffing_count
-= 4;
1360 while(stuffing_count
--){
1361 put_bits(&s
->pb
, 8, 0xFF);
1365 av_log(s
->avctx
, AV_LOG_ERROR
, "vbv buffer overflow\n");
1367 flush_put_bits(&s
->pb
);
1368 s
->frame_bits
= put_bits_count(&s
->pb
);
1371 /* update mpeg1/2 vbv_delay for CBR */
1372 if(s
->avctx
->rc_max_rate
&& s
->avctx
->rc_min_rate
== s
->avctx
->rc_max_rate
&& s
->out_format
== FMT_MPEG1
1373 && 90000LL * (avctx
->rc_buffer_size
-1) <= s
->avctx
->rc_max_rate
*0xFFFFLL
){
1374 int vbv_delay
, min_delay
;
1375 double inbits
= s
->avctx
->rc_max_rate
*av_q2d(s
->avctx
->time_base
);
1376 int minbits
= s
->frame_bits
- 8*(s
->vbv_delay_ptr
- s
->pb
.buf
- 1);
1377 double bits
= s
->rc_context
.buffer_index
+ minbits
- inbits
;
1380 av_log(s
->avctx
, AV_LOG_ERROR
, "Internal error, negative bits\n");
1382 assert(s
->repeat_first_field
==0);
1384 vbv_delay
= bits
* 90000 / s
->avctx
->rc_max_rate
;
1385 min_delay
= (minbits
* 90000LL + s
->avctx
->rc_max_rate
- 1)/ s
->avctx
->rc_max_rate
;
1387 vbv_delay
= FFMAX(vbv_delay
, min_delay
);
1389 assert(vbv_delay
< 0xFFFF);
1391 s
->vbv_delay_ptr
[0] &= 0xF8;
1392 s
->vbv_delay_ptr
[0] |= vbv_delay
>>13;
1393 s
->vbv_delay_ptr
[1] = vbv_delay
>>5;
1394 s
->vbv_delay_ptr
[2] &= 0x07;
1395 s
->vbv_delay_ptr
[2] |= vbv_delay
<<3;
1396 avctx
->vbv_delay
= vbv_delay
*300;
1398 s
->total_bits
+= s
->frame_bits
;
1399 avctx
->frame_bits
= s
->frame_bits
;
1401 assert((put_bits_ptr(&s
->pb
) == s
->pb
.buf
));
1404 assert((s
->frame_bits
&7)==0);
1406 return s
->frame_bits
/8;
1409 static inline void dct_single_coeff_elimination(MpegEncContext
*s
, int n
, int threshold
)
1411 static const char tab
[64]=
1423 DCTELEM
*block
= s
->block
[n
];
1424 const int last_index
= s
->block_last_index
[n
];
1429 threshold
= -threshold
;
1433 /* Are all we could set to zero already zero? */
1434 if(last_index
<=skip_dc
- 1) return;
1436 for(i
=0; i
<=last_index
; i
++){
1437 const int j
= s
->intra_scantable
.permutated
[i
];
1438 const int level
= FFABS(block
[j
]);
1440 if(skip_dc
&& i
==0) continue;
1449 if(score
>= threshold
) return;
1450 for(i
=skip_dc
; i
<=last_index
; i
++){
1451 const int j
= s
->intra_scantable
.permutated
[i
];
1454 if(block
[0]) s
->block_last_index
[n
]= 0;
1455 else s
->block_last_index
[n
]= -1;
1458 static inline void clip_coeffs(MpegEncContext
*s
, DCTELEM
*block
, int last_index
)
1461 const int maxlevel
= s
->max_qcoeff
;
1462 const int minlevel
= s
->min_qcoeff
;
1466 i
=1; //skip clipping of intra dc
1470 for(;i
<=last_index
; i
++){
1471 const int j
= s
->intra_scantable
.permutated
[i
];
1472 int level
= block
[j
];
1474 if (level
>maxlevel
){
1477 }else if(level
<minlevel
){
1485 if(overflow
&& s
->avctx
->mb_decision
== FF_MB_DECISION_SIMPLE
)
1486 av_log(s
->avctx
, AV_LOG_INFO
, "warning, clipping %d dct coefficients to %d..%d\n", overflow
, minlevel
, maxlevel
);
1489 static void get_visual_weight(int16_t *weight
, uint8_t *ptr
, int stride
){
1499 for(y2
= FFMAX(y
-1, 0); y2
< FFMIN(8, y
+2); y2
++){
1500 for(x2
= FFMAX(x
-1, 0); x2
< FFMIN(8, x
+2); x2
++){
1501 int v
= ptr
[x2
+ y2
*stride
];
1507 weight
[x
+ 8*y
]= (36*ff_sqrt(count
*sqr
- sum
*sum
)) / count
;
1512 static av_always_inline
void encode_mb_internal(MpegEncContext
*s
, int motion_x
, int motion_y
, int mb_block_height
, int mb_block_count
)
1514 int16_t weight
[8][64];
1515 DCTELEM orig
[8][64];
1516 const int mb_x
= s
->mb_x
;
1517 const int mb_y
= s
->mb_y
;
1520 int dct_offset
= s
->linesize
*8; //default for progressive frames
1521 uint8_t *ptr_y
, *ptr_cb
, *ptr_cr
;
1524 for(i
=0; i
<mb_block_count
; i
++) skip_dct
[i
]=s
->skipdct
;
1526 if(s
->adaptive_quant
){
1527 const int last_qp
= s
->qscale
;
1528 const int mb_xy
= mb_x
+ mb_y
*s
->mb_stride
;
1530 s
->lambda
= s
->lambda_table
[mb_xy
];
1533 if(!(s
->flags
&CODEC_FLAG_QP_RD
)){
1534 s
->qscale
= s
->current_picture_ptr
->f
.qscale_table
[mb_xy
];
1535 s
->dquant
= s
->qscale
- last_qp
;
1537 if(s
->out_format
==FMT_H263
){
1538 s
->dquant
= av_clip(s
->dquant
, -2, 2);
1540 if(s
->codec_id
==CODEC_ID_MPEG4
){
1542 if(s
->pict_type
== AV_PICTURE_TYPE_B
){
1543 if(s
->dquant
&1 || s
->mv_dir
&MV_DIRECT
)
1546 if(s
->mv_type
==MV_TYPE_8X8
)
1552 ff_set_qscale(s
, last_qp
+ s
->dquant
);
1553 }else if(s
->flags
&CODEC_FLAG_QP_RD
)
1554 ff_set_qscale(s
, s
->qscale
+ s
->dquant
);
1556 wrap_y
= s
->linesize
;
1557 wrap_c
= s
->uvlinesize
;
1558 ptr_y
= s
->new_picture
.f
.data
[0] + (mb_y
* 16 * wrap_y
) + mb_x
* 16;
1559 ptr_cb
= s
->new_picture
.f
.data
[1] + (mb_y
* mb_block_height
* wrap_c
) + mb_x
* 8;
1560 ptr_cr
= s
->new_picture
.f
.data
[2] + (mb_y
* mb_block_height
* wrap_c
) + mb_x
* 8;
1562 if(mb_x
*16+16 > s
->width
|| mb_y
*16+16 > s
->height
){
1563 uint8_t *ebuf
= s
->edge_emu_buffer
+ 32;
1564 s
->dsp
.emulated_edge_mc(ebuf
, ptr_y
, wrap_y
,16,16,mb_x
*16,mb_y
*16, s
->width
, s
->height
);
1566 s
->dsp
.emulated_edge_mc(ebuf
+18*wrap_y
, ptr_cb
, wrap_c
, 8, mb_block_height
, mb_x
*8, mb_y
*8, s
->width
>>1, s
->height
>>1);
1567 ptr_cb
= ebuf
+18*wrap_y
;
1568 s
->dsp
.emulated_edge_mc(ebuf
+18*wrap_y
+8, ptr_cr
, wrap_c
, 8, mb_block_height
, mb_x
*8, mb_y
*8, s
->width
>>1, s
->height
>>1);
1569 ptr_cr
= ebuf
+18*wrap_y
+8;
1573 if(s
->flags
&CODEC_FLAG_INTERLACED_DCT
){
1574 int progressive_score
, interlaced_score
;
1576 s
->interlaced_dct
=0;
1577 progressive_score
= s
->dsp
.ildct_cmp
[4](s
, ptr_y
, NULL
, wrap_y
, 8)
1578 +s
->dsp
.ildct_cmp
[4](s
, ptr_y
+ wrap_y
*8, NULL
, wrap_y
, 8) - 400;
1580 if(progressive_score
> 0){
1581 interlaced_score
= s
->dsp
.ildct_cmp
[4](s
, ptr_y
, NULL
, wrap_y
*2, 8)
1582 +s
->dsp
.ildct_cmp
[4](s
, ptr_y
+ wrap_y
, NULL
, wrap_y
*2, 8);
1583 if(progressive_score
> interlaced_score
){
1584 s
->interlaced_dct
=1;
1588 if (s
->chroma_format
== CHROMA_422
)
1594 s
->dsp
.get_pixels(s
->block
[0], ptr_y
, wrap_y
);
1595 s
->dsp
.get_pixels(s
->block
[1], ptr_y
+ 8, wrap_y
);
1596 s
->dsp
.get_pixels(s
->block
[2], ptr_y
+ dct_offset
, wrap_y
);
1597 s
->dsp
.get_pixels(s
->block
[3], ptr_y
+ dct_offset
+ 8, wrap_y
);
1599 if(s
->flags
&CODEC_FLAG_GRAY
){
1603 s
->dsp
.get_pixels(s
->block
[4], ptr_cb
, wrap_c
);
1604 s
->dsp
.get_pixels(s
->block
[5], ptr_cr
, wrap_c
);
1605 if(!s
->chroma_y_shift
){ /* 422 */
1606 s
->dsp
.get_pixels(s
->block
[6], ptr_cb
+ (dct_offset
>>1), wrap_c
);
1607 s
->dsp
.get_pixels(s
->block
[7], ptr_cr
+ (dct_offset
>>1), wrap_c
);
1611 op_pixels_func (*op_pix
)[4];
1612 qpel_mc_func (*op_qpix
)[16];
1613 uint8_t *dest_y
, *dest_cb
, *dest_cr
;
1615 dest_y
= s
->dest
[0];
1616 dest_cb
= s
->dest
[1];
1617 dest_cr
= s
->dest
[2];
1619 if ((!s
->no_rounding
) || s
->pict_type
==AV_PICTURE_TYPE_B
){
1620 op_pix
= s
->dsp
.put_pixels_tab
;
1621 op_qpix
= s
->dsp
.put_qpel_pixels_tab
;
1623 op_pix
= s
->dsp
.put_no_rnd_pixels_tab
;
1624 op_qpix
= s
->dsp
.put_no_rnd_qpel_pixels_tab
;
1627 if (s
->mv_dir
& MV_DIR_FORWARD
) {
1628 MPV_motion(s
, dest_y
, dest_cb
, dest_cr
, 0, s
->last_picture
.f
.data
, op_pix
, op_qpix
);
1629 op_pix
= s
->dsp
.avg_pixels_tab
;
1630 op_qpix
= s
->dsp
.avg_qpel_pixels_tab
;
1632 if (s
->mv_dir
& MV_DIR_BACKWARD
) {
1633 MPV_motion(s
, dest_y
, dest_cb
, dest_cr
, 1, s
->next_picture
.f
.data
, op_pix
, op_qpix
);
1636 if(s
->flags
&CODEC_FLAG_INTERLACED_DCT
){
1637 int progressive_score
, interlaced_score
;
1639 s
->interlaced_dct
=0;
1640 progressive_score
= s
->dsp
.ildct_cmp
[0](s
, dest_y
, ptr_y
, wrap_y
, 8)
1641 +s
->dsp
.ildct_cmp
[0](s
, dest_y
+ wrap_y
*8, ptr_y
+ wrap_y
*8, wrap_y
, 8) - 400;
1643 if(s
->avctx
->ildct_cmp
== FF_CMP_VSSE
) progressive_score
-= 400;
1645 if(progressive_score
>0){
1646 interlaced_score
= s
->dsp
.ildct_cmp
[0](s
, dest_y
, ptr_y
, wrap_y
*2, 8)
1647 +s
->dsp
.ildct_cmp
[0](s
, dest_y
+ wrap_y
, ptr_y
+ wrap_y
, wrap_y
*2, 8);
1649 if(progressive_score
> interlaced_score
){
1650 s
->interlaced_dct
=1;
1654 if (s
->chroma_format
== CHROMA_422
)
1660 s
->dsp
.diff_pixels(s
->block
[0], ptr_y
, dest_y
, wrap_y
);
1661 s
->dsp
.diff_pixels(s
->block
[1], ptr_y
+ 8, dest_y
+ 8, wrap_y
);
1662 s
->dsp
.diff_pixels(s
->block
[2], ptr_y
+ dct_offset
, dest_y
+ dct_offset
, wrap_y
);
1663 s
->dsp
.diff_pixels(s
->block
[3], ptr_y
+ dct_offset
+ 8, dest_y
+ dct_offset
+ 8, wrap_y
);
1665 if(s
->flags
&CODEC_FLAG_GRAY
){
1669 s
->dsp
.diff_pixels(s
->block
[4], ptr_cb
, dest_cb
, wrap_c
);
1670 s
->dsp
.diff_pixels(s
->block
[5], ptr_cr
, dest_cr
, wrap_c
);
1671 if(!s
->chroma_y_shift
){ /* 422 */
1672 s
->dsp
.diff_pixels(s
->block
[6], ptr_cb
+ (dct_offset
>>1), dest_cb
+ (dct_offset
>>1), wrap_c
);
1673 s
->dsp
.diff_pixels(s
->block
[7], ptr_cr
+ (dct_offset
>>1), dest_cr
+ (dct_offset
>>1), wrap_c
);
1676 /* pre quantization */
1677 if(s
->current_picture
.mc_mb_var
[s
->mb_stride
*mb_y
+ mb_x
]<2*s
->qscale
*s
->qscale
){
1679 if(s
->dsp
.sad
[1](NULL
, ptr_y
, dest_y
, wrap_y
, 8) < 20*s
->qscale
) skip_dct
[0]= 1;
1680 if(s
->dsp
.sad
[1](NULL
, ptr_y
+ 8, dest_y
+ 8, wrap_y
, 8) < 20*s
->qscale
) skip_dct
[1]= 1;
1681 if(s
->dsp
.sad
[1](NULL
, ptr_y
+dct_offset
, dest_y
+dct_offset
, wrap_y
, 8) < 20*s
->qscale
) skip_dct
[2]= 1;
1682 if(s
->dsp
.sad
[1](NULL
, ptr_y
+dct_offset
+ 8, dest_y
+dct_offset
+ 8, wrap_y
, 8) < 20*s
->qscale
) skip_dct
[3]= 1;
1683 if(s
->dsp
.sad
[1](NULL
, ptr_cb
, dest_cb
, wrap_c
, 8) < 20*s
->qscale
) skip_dct
[4]= 1;
1684 if(s
->dsp
.sad
[1](NULL
, ptr_cr
, dest_cr
, wrap_c
, 8) < 20*s
->qscale
) skip_dct
[5]= 1;
1685 if(!s
->chroma_y_shift
){ /* 422 */
1686 if(s
->dsp
.sad
[1](NULL
, ptr_cb
+(dct_offset
>>1), dest_cb
+(dct_offset
>>1), wrap_c
, 8) < 20*s
->qscale
) skip_dct
[6]= 1;
1687 if(s
->dsp
.sad
[1](NULL
, ptr_cr
+(dct_offset
>>1), dest_cr
+(dct_offset
>>1), wrap_c
, 8) < 20*s
->qscale
) skip_dct
[7]= 1;
1692 if(s
->avctx
->quantizer_noise_shaping
){
1693 if(!skip_dct
[0]) get_visual_weight(weight
[0], ptr_y
, wrap_y
);
1694 if(!skip_dct
[1]) get_visual_weight(weight
[1], ptr_y
+ 8, wrap_y
);
1695 if(!skip_dct
[2]) get_visual_weight(weight
[2], ptr_y
+ dct_offset
, wrap_y
);
1696 if(!skip_dct
[3]) get_visual_weight(weight
[3], ptr_y
+ dct_offset
+ 8, wrap_y
);
1697 if(!skip_dct
[4]) get_visual_weight(weight
[4], ptr_cb
, wrap_c
);
1698 if(!skip_dct
[5]) get_visual_weight(weight
[5], ptr_cr
, wrap_c
);
1699 if(!s
->chroma_y_shift
){ /* 422 */
1700 if(!skip_dct
[6]) get_visual_weight(weight
[6], ptr_cb
+ (dct_offset
>>1), wrap_c
);
1701 if(!skip_dct
[7]) get_visual_weight(weight
[7], ptr_cr
+ (dct_offset
>>1), wrap_c
);
1703 memcpy(orig
[0], s
->block
[0], sizeof(DCTELEM
)*64*mb_block_count
);
1706 /* DCT & quantize */
1707 assert(s
->out_format
!=FMT_MJPEG
|| s
->qscale
==8);
1709 for(i
=0;i
<mb_block_count
;i
++) {
1712 s
->block_last_index
[i
] = s
->dct_quantize(s
, s
->block
[i
], i
, s
->qscale
, &overflow
);
1713 // FIXME we could decide to change to quantizer instead of clipping
1714 // JS: I don't think that would be a good idea it could lower quality instead
1715 // of improve it. Just INTRADC clipping deserves changes in quantizer
1716 if (overflow
) clip_coeffs(s
, s
->block
[i
], s
->block_last_index
[i
]);
1718 s
->block_last_index
[i
]= -1;
1720 if(s
->avctx
->quantizer_noise_shaping
){
1721 for(i
=0;i
<mb_block_count
;i
++) {
1723 s
->block_last_index
[i
] = dct_quantize_refine(s
, s
->block
[i
], weight
[i
], orig
[i
], i
, s
->qscale
);
1728 if(s
->luma_elim_threshold
&& !s
->mb_intra
)
1730 dct_single_coeff_elimination(s
, i
, s
->luma_elim_threshold
);
1731 if(s
->chroma_elim_threshold
&& !s
->mb_intra
)
1732 for(i
=4; i
<mb_block_count
; i
++)
1733 dct_single_coeff_elimination(s
, i
, s
->chroma_elim_threshold
);
1735 if(s
->flags
& CODEC_FLAG_CBP_RD
){
1736 for(i
=0;i
<mb_block_count
;i
++) {
1737 if(s
->block_last_index
[i
] == -1)
1738 s
->coded_score
[i
]= INT_MAX
/256;
1743 if((s
->flags
&CODEC_FLAG_GRAY
) && s
->mb_intra
){
1744 s
->block_last_index
[4]=
1745 s
->block_last_index
[5]= 0;
1747 s
->block
[5][0]= (1024 + s
->c_dc_scale
/2)/ s
->c_dc_scale
;
1750 //non c quantize code returns incorrect block_last_index FIXME
1751 if(s
->alternate_scan
&& s
->dct_quantize
!= dct_quantize_c
){
1752 for(i
=0; i
<mb_block_count
; i
++){
1754 if(s
->block_last_index
[i
]>0){
1755 for(j
=63; j
>0; j
--){
1756 if(s
->block
[i
][ s
->intra_scantable
.permutated
[j
] ]) break;
1758 s
->block_last_index
[i
]= j
;
1763 /* huffman encode */
1764 switch(s
->codec_id
){ //FIXME funct ptr could be slightly faster
1765 case CODEC_ID_MPEG1VIDEO
:
1766 case CODEC_ID_MPEG2VIDEO
:
1767 if (CONFIG_MPEG1VIDEO_ENCODER
|| CONFIG_MPEG2VIDEO_ENCODER
)
1768 mpeg1_encode_mb(s
, s
->block
, motion_x
, motion_y
);
1770 case CODEC_ID_MPEG4
:
1771 if (CONFIG_MPEG4_ENCODER
)
1772 mpeg4_encode_mb(s
, s
->block
, motion_x
, motion_y
);
1774 case CODEC_ID_MSMPEG4V2
:
1775 case CODEC_ID_MSMPEG4V3
:
1777 if (CONFIG_MSMPEG4_ENCODER
)
1778 msmpeg4_encode_mb(s
, s
->block
, motion_x
, motion_y
);
1781 if (CONFIG_WMV2_ENCODER
)
1782 ff_wmv2_encode_mb(s
, s
->block
, motion_x
, motion_y
);
1785 if (CONFIG_H261_ENCODER
)
1786 ff_h261_encode_mb(s
, s
->block
, motion_x
, motion_y
);
1789 case CODEC_ID_H263P
:
1793 if (CONFIG_H263_ENCODER
)
1794 h263_encode_mb(s
, s
->block
, motion_x
, motion_y
);
1796 case CODEC_ID_MJPEG
:
1797 if (CONFIG_MJPEG_ENCODER
)
1798 ff_mjpeg_encode_mb(s
, s
->block
);
1805 static av_always_inline
void encode_mb(MpegEncContext
*s
, int motion_x
, int motion_y
)
1807 if (s
->chroma_format
== CHROMA_420
) encode_mb_internal(s
, motion_x
, motion_y
, 8, 6);
1808 else encode_mb_internal(s
, motion_x
, motion_y
, 16, 8);
1811 static inline void copy_context_before_encode(MpegEncContext
*d
, MpegEncContext
*s
, int type
){
1814 memcpy(d
->last_mv
, s
->last_mv
, 2*2*2*sizeof(int)); //FIXME is memcpy faster than a loop?
1817 d
->mb_skip_run
= s
->mb_skip_run
;
1819 d
->last_dc
[i
]= s
->last_dc
[i
];
1822 d
->mv_bits
= s
->mv_bits
;
1823 d
->i_tex_bits
= s
->i_tex_bits
;
1824 d
->p_tex_bits
= s
->p_tex_bits
;
1825 d
->i_count
= s
->i_count
;
1826 d
->f_count
= s
->f_count
;
1827 d
->b_count
= s
->b_count
;
1828 d
->skip_count
= s
->skip_count
;
1829 d
->misc_bits
= s
->misc_bits
;
1833 d
->qscale
= s
->qscale
;
1834 d
->dquant
= s
->dquant
;
1836 d
->esc3_level_length
= s
->esc3_level_length
;
1839 static inline void copy_context_after_encode(MpegEncContext
*d
, MpegEncContext
*s
, int type
){
1842 memcpy(d
->mv
, s
->mv
, 2*4*2*sizeof(int));
1843 memcpy(d
->last_mv
, s
->last_mv
, 2*2*2*sizeof(int)); //FIXME is memcpy faster than a loop?
1846 d
->mb_skip_run
= s
->mb_skip_run
;
1848 d
->last_dc
[i
]= s
->last_dc
[i
];
1851 d
->mv_bits
= s
->mv_bits
;
1852 d
->i_tex_bits
= s
->i_tex_bits
;
1853 d
->p_tex_bits
= s
->p_tex_bits
;
1854 d
->i_count
= s
->i_count
;
1855 d
->f_count
= s
->f_count
;
1856 d
->b_count
= s
->b_count
;
1857 d
->skip_count
= s
->skip_count
;
1858 d
->misc_bits
= s
->misc_bits
;
1860 d
->mb_intra
= s
->mb_intra
;
1861 d
->mb_skipped
= s
->mb_skipped
;
1862 d
->mv_type
= s
->mv_type
;
1863 d
->mv_dir
= s
->mv_dir
;
1865 if(s
->data_partitioning
){
1867 d
->tex_pb
= s
->tex_pb
;
1871 d
->block_last_index
[i
]= s
->block_last_index
[i
];
1872 d
->interlaced_dct
= s
->interlaced_dct
;
1873 d
->qscale
= s
->qscale
;
1875 d
->esc3_level_length
= s
->esc3_level_length
;
1878 static inline void encode_mb_hq(MpegEncContext
*s
, MpegEncContext
*backup
, MpegEncContext
*best
, int type
,
1879 PutBitContext pb
[2], PutBitContext pb2
[2], PutBitContext tex_pb
[2],
1880 int *dmin
, int *next_block
, int motion_x
, int motion_y
)
1883 uint8_t *dest_backup
[3];
1885 copy_context_before_encode(s
, backup
, type
);
1887 s
->block
= s
->blocks
[*next_block
];
1888 s
->pb
= pb
[*next_block
];
1889 if(s
->data_partitioning
){
1890 s
->pb2
= pb2
[*next_block
];
1891 s
->tex_pb
= tex_pb
[*next_block
];
1895 memcpy(dest_backup
, s
->dest
, sizeof(s
->dest
));
1896 s
->dest
[0] = s
->rd_scratchpad
;
1897 s
->dest
[1] = s
->rd_scratchpad
+ 16*s
->linesize
;
1898 s
->dest
[2] = s
->rd_scratchpad
+ 16*s
->linesize
+ 8;
1899 assert(s
->linesize
>= 32); //FIXME
1902 encode_mb(s
, motion_x
, motion_y
);
1904 score
= put_bits_count(&s
->pb
);
1905 if(s
->data_partitioning
){
1906 score
+= put_bits_count(&s
->pb2
);
1907 score
+= put_bits_count(&s
->tex_pb
);
1910 if(s
->avctx
->mb_decision
== FF_MB_DECISION_RD
){
1911 MPV_decode_mb(s
, s
->block
);
1913 score
*= s
->lambda2
;
1914 score
+= sse_mb(s
) << FF_LAMBDA_SHIFT
;
1918 memcpy(s
->dest
, dest_backup
, sizeof(s
->dest
));
1925 copy_context_after_encode(best
, s
, type
);
1929 static int sse(MpegEncContext
*s
, uint8_t *src1
, uint8_t *src2
, int w
, int h
, int stride
){
1930 uint32_t *sq
= ff_squareTbl
+ 256;
1935 return s
->dsp
.sse
[0](NULL
, src1
, src2
, stride
, 16);
1936 else if(w
==8 && h
==8)
1937 return s
->dsp
.sse
[1](NULL
, src1
, src2
, stride
, 8);
1941 acc
+= sq
[src1
[x
+ y
*stride
] - src2
[x
+ y
*stride
]];
1950 static int sse_mb(MpegEncContext
*s
){
1954 if(s
->mb_x
*16 + 16 > s
->width
) w
= s
->width
- s
->mb_x
*16;
1955 if(s
->mb_y
*16 + 16 > s
->height
) h
= s
->height
- s
->mb_y
*16;
1958 if(s
->avctx
->mb_cmp
== FF_CMP_NSSE
){
1959 return s
->dsp
.nsse
[0](s
, s
->new_picture
.f
.data
[0] + s
->mb_x
*16 + s
->mb_y
*s
->linesize
*16, s
->dest
[0], s
->linesize
, 16)
1960 +s
->dsp
.nsse
[1](s
, s
->new_picture
.f
.data
[1] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*8,s
->dest
[1], s
->uvlinesize
, 8)
1961 +s
->dsp
.nsse
[1](s
, s
->new_picture
.f
.data
[2] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*8,s
->dest
[2], s
->uvlinesize
, 8);
1963 return s
->dsp
.sse
[0](NULL
, s
->new_picture
.f
.data
[0] + s
->mb_x
*16 + s
->mb_y
*s
->linesize
*16, s
->dest
[0], s
->linesize
, 16)
1964 +s
->dsp
.sse
[1](NULL
, s
->new_picture
.f
.data
[1] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*8,s
->dest
[1], s
->uvlinesize
, 8)
1965 +s
->dsp
.sse
[1](NULL
, s
->new_picture
.f
.data
[2] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*8,s
->dest
[2], s
->uvlinesize
, 8);
1968 return sse(s
, s
->new_picture
.f
.data
[0] + s
->mb_x
*16 + s
->mb_y
*s
->linesize
*16, s
->dest
[0], w
, h
, s
->linesize
)
1969 +sse(s
, s
->new_picture
.f
.data
[1] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*8,s
->dest
[1], w
>>1, h
>>1, s
->uvlinesize
)
1970 +sse(s
, s
->new_picture
.f
.data
[2] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*8,s
->dest
[2], w
>>1, h
>>1, s
->uvlinesize
);
1973 static int pre_estimate_motion_thread(AVCodecContext
*c
, void *arg
){
1974 MpegEncContext
*s
= *(void**)arg
;
1978 s
->me
.dia_size
= s
->avctx
->pre_dia_size
;
1979 s
->first_slice_line
=1;
1980 for(s
->mb_y
= s
->end_mb_y
-1; s
->mb_y
>= s
->start_mb_y
; s
->mb_y
--) {
1981 for(s
->mb_x
=s
->mb_width
-1; s
->mb_x
>=0 ;s
->mb_x
--) {
1982 ff_pre_estimate_p_frame_motion(s
, s
->mb_x
, s
->mb_y
);
1984 s
->first_slice_line
=0;
1992 static int estimate_motion_thread(AVCodecContext
*c
, void *arg
){
1993 MpegEncContext
*s
= *(void**)arg
;
1995 ff_check_alignment();
1997 s
->me
.dia_size
= s
->avctx
->dia_size
;
1998 s
->first_slice_line
=1;
1999 for(s
->mb_y
= s
->start_mb_y
; s
->mb_y
< s
->end_mb_y
; s
->mb_y
++) {
2000 s
->mb_x
=0; //for block init below
2001 ff_init_block_index(s
);
2002 for(s
->mb_x
=0; s
->mb_x
< s
->mb_width
; s
->mb_x
++) {
2003 s
->block_index
[0]+=2;
2004 s
->block_index
[1]+=2;
2005 s
->block_index
[2]+=2;
2006 s
->block_index
[3]+=2;
2008 /* compute motion vector & mb_type and store in context */
2009 if(s
->pict_type
==AV_PICTURE_TYPE_B
)
2010 ff_estimate_b_frame_motion(s
, s
->mb_x
, s
->mb_y
);
2012 ff_estimate_p_frame_motion(s
, s
->mb_x
, s
->mb_y
);
2014 s
->first_slice_line
=0;
2019 static int mb_var_thread(AVCodecContext
*c
, void *arg
){
2020 MpegEncContext
*s
= *(void**)arg
;
2023 ff_check_alignment();
2025 for(mb_y
=s
->start_mb_y
; mb_y
< s
->end_mb_y
; mb_y
++) {
2026 for(mb_x
=0; mb_x
< s
->mb_width
; mb_x
++) {
2029 uint8_t *pix
= s
->new_picture
.f
.data
[0] + (yy
* s
->linesize
) + xx
;
2031 int sum
= s
->dsp
.pix_sum(pix
, s
->linesize
);
2033 varc
= (s
->dsp
.pix_norm1(pix
, s
->linesize
) - (((unsigned)sum
*sum
)>>8) + 500 + 128)>>8;
2035 s
->current_picture
.mb_var
[s
->mb_stride
* mb_y
+ mb_x
] = varc
;
2036 s
->current_picture
.mb_mean
[s
->mb_stride
* mb_y
+ mb_x
] = (sum
+128)>>8;
2037 s
->me
.mb_var_sum_temp
+= varc
;
2043 static void write_slice_end(MpegEncContext
*s
){
2044 if(CONFIG_MPEG4_ENCODER
&& s
->codec_id
==CODEC_ID_MPEG4
){
2045 if(s
->partitioned_frame
){
2046 ff_mpeg4_merge_partitions(s
);
2049 ff_mpeg4_stuffing(&s
->pb
);
2050 }else if(CONFIG_MJPEG_ENCODER
&& s
->out_format
== FMT_MJPEG
){
2051 ff_mjpeg_encode_stuffing(&s
->pb
);
2054 avpriv_align_put_bits(&s
->pb
);
2055 flush_put_bits(&s
->pb
);
2057 if((s
->flags
&CODEC_FLAG_PASS1
) && !s
->partitioned_frame
)
2058 s
->misc_bits
+= get_bits_diff(s
);
2061 static int encode_thread(AVCodecContext
*c
, void *arg
){
2062 MpegEncContext
*s
= *(void**)arg
;
2063 int mb_x
, mb_y
, pdif
= 0;
2064 int chr_h
= 16>>s
->chroma_y_shift
;
2066 MpegEncContext best_s
, backup_s
;
2067 uint8_t bit_buf
[2][MAX_MB_BYTES
];
2068 uint8_t bit_buf2
[2][MAX_MB_BYTES
];
2069 uint8_t bit_buf_tex
[2][MAX_MB_BYTES
];
2070 PutBitContext pb
[2], pb2
[2], tex_pb
[2];
2071 //printf("%d->%d\n", s->resync_mb_y, s->end_mb_y);
2073 ff_check_alignment();
2076 init_put_bits(&pb
[i
], bit_buf
[i
], MAX_MB_BYTES
);
2077 init_put_bits(&pb2
[i
], bit_buf2
[i
], MAX_MB_BYTES
);
2078 init_put_bits(&tex_pb
[i
], bit_buf_tex
[i
], MAX_MB_BYTES
);
2081 s
->last_bits
= put_bits_count(&s
->pb
);
2092 /* init last dc values */
2093 /* note: quant matrix value (8) is implied here */
2094 s
->last_dc
[i
] = 128 << s
->intra_dc_precision
;
2096 s
->current_picture
.f
.error
[i
] = 0;
2099 memset(s
->last_mv
, 0, sizeof(s
->last_mv
));
2103 switch(s
->codec_id
){
2105 case CODEC_ID_H263P
:
2107 if (CONFIG_H263_ENCODER
)
2108 s
->gob_index
= ff_h263_get_gob_height(s
);
2110 case CODEC_ID_MPEG4
:
2111 if(CONFIG_MPEG4_ENCODER
&& s
->partitioned_frame
)
2112 ff_mpeg4_init_partitions(s
);
2118 s
->first_slice_line
= 1;
2119 s
->ptr_lastgob
= s
->pb
.buf
;
2120 for(mb_y
= s
->start_mb_y
; mb_y
< s
->end_mb_y
; mb_y
++) {
2121 // printf("row %d at %X\n", s->mb_y, (int)s);
2125 ff_set_qscale(s
, s
->qscale
);
2126 ff_init_block_index(s
);
2128 for(mb_x
=0; mb_x
< s
->mb_width
; mb_x
++) {
2129 int xy
= mb_y
*s
->mb_stride
+ mb_x
; // removed const, H261 needs to adjust this
2130 int mb_type
= s
->mb_type
[xy
];
2135 if(s
->pb
.buf_end
- s
->pb
.buf
- (put_bits_count(&s
->pb
)>>3) < MAX_MB_BYTES
){
2136 av_log(s
->avctx
, AV_LOG_ERROR
, "encoded frame too large\n");
2139 if(s
->data_partitioning
){
2140 if( s
->pb2
.buf_end
- s
->pb2
.buf
- (put_bits_count(&s
-> pb2
)>>3) < MAX_MB_BYTES
2141 || s
->tex_pb
.buf_end
- s
->tex_pb
.buf
- (put_bits_count(&s
->tex_pb
)>>3) < MAX_MB_BYTES
){
2142 av_log(s
->avctx
, AV_LOG_ERROR
, "encoded frame too large\n");
2148 s
->mb_y
= mb_y
; // moved into loop, can get changed by H.261
2149 ff_update_block_index(s
);
2151 if(CONFIG_H261_ENCODER
&& s
->codec_id
== CODEC_ID_H261
){
2152 ff_h261_reorder_mb_index(s
);
2153 xy
= s
->mb_y
*s
->mb_stride
+ s
->mb_x
;
2154 mb_type
= s
->mb_type
[xy
];
2157 /* write gob / video packet header */
2159 int current_packet_size
, is_gob_start
;
2161 current_packet_size
= ((put_bits_count(&s
->pb
)+7)>>3) - (s
->ptr_lastgob
- s
->pb
.buf
);
2163 is_gob_start
= s
->avctx
->rtp_payload_size
&& current_packet_size
>= s
->avctx
->rtp_payload_size
&& mb_y
+ mb_x
>0;
2165 if(s
->start_mb_y
== mb_y
&& mb_y
> 0 && mb_x
==0) is_gob_start
=1;
2167 switch(s
->codec_id
){
2169 case CODEC_ID_H263P
:
2170 if(!s
->h263_slice_structured
)
2171 if(s
->mb_x
|| s
->mb_y
%s
->gob_index
) is_gob_start
=0;
2173 case CODEC_ID_MPEG2VIDEO
:
2174 if(s
->mb_x
==0 && s
->mb_y
!=0) is_gob_start
=1;
2175 case CODEC_ID_MPEG1VIDEO
:
2176 if(s
->mb_skip_run
) is_gob_start
=0;
2181 if(s
->start_mb_y
!= mb_y
|| mb_x
!=0){
2184 if(CONFIG_MPEG4_ENCODER
&& s
->codec_id
==CODEC_ID_MPEG4
&& s
->partitioned_frame
){
2185 ff_mpeg4_init_partitions(s
);
2189 assert((put_bits_count(&s
->pb
)&7) == 0);
2190 current_packet_size
= put_bits_ptr(&s
->pb
) - s
->ptr_lastgob
;
2192 if(s
->avctx
->error_rate
&& s
->resync_mb_x
+ s
->resync_mb_y
> 0){
2193 int r
= put_bits_count(&s
->pb
)/8 + s
->picture_number
+ 16 + s
->mb_x
+ s
->mb_y
;
2194 int d
= 100 / s
->avctx
->error_rate
;
2196 current_packet_size
=0;
2197 s
->pb
.buf_ptr
= s
->ptr_lastgob
;
2198 assert(put_bits_ptr(&s
->pb
) == s
->ptr_lastgob
);
2202 if (s
->avctx
->rtp_callback
){
2203 int number_mb
= (mb_y
- s
->resync_mb_y
)*s
->mb_width
+ mb_x
- s
->resync_mb_x
;
2204 s
->avctx
->rtp_callback(s
->avctx
, s
->ptr_lastgob
, current_packet_size
, number_mb
);
2207 switch(s
->codec_id
){
2208 case CODEC_ID_MPEG4
:
2209 if (CONFIG_MPEG4_ENCODER
) {
2210 ff_mpeg4_encode_video_packet_header(s
);
2211 ff_mpeg4_clean_buffers(s
);
2214 case CODEC_ID_MPEG1VIDEO
:
2215 case CODEC_ID_MPEG2VIDEO
:
2216 if (CONFIG_MPEG1VIDEO_ENCODER
|| CONFIG_MPEG2VIDEO_ENCODER
) {
2217 ff_mpeg1_encode_slice_header(s
);
2218 ff_mpeg1_clean_buffers(s
);
2222 case CODEC_ID_H263P
:
2223 if (CONFIG_H263_ENCODER
)
2224 h263_encode_gob_header(s
, mb_y
);
2228 if(s
->flags
&CODEC_FLAG_PASS1
){
2229 int bits
= put_bits_count(&s
->pb
);
2230 s
->misc_bits
+= bits
- s
->last_bits
;
2234 s
->ptr_lastgob
+= current_packet_size
;
2235 s
->first_slice_line
=1;
2236 s
->resync_mb_x
=mb_x
;
2237 s
->resync_mb_y
=mb_y
;
2241 if( (s
->resync_mb_x
== s
->mb_x
)
2242 && s
->resync_mb_y
+1 == s
->mb_y
){
2243 s
->first_slice_line
=0;
2247 s
->dquant
=0; //only for QP_RD
2249 if(mb_type
& (mb_type
-1) || (s
->flags
& CODEC_FLAG_QP_RD
)){ // more than 1 MB type possible or CODEC_FLAG_QP_RD
2251 int pb_bits_count
, pb2_bits_count
, tex_pb_bits_count
;
2253 copy_context_before_encode(&backup_s
, s
, -1);
2255 best_s
.data_partitioning
= s
->data_partitioning
;
2256 best_s
.partitioned_frame
= s
->partitioned_frame
;
2257 if(s
->data_partitioning
){
2258 backup_s
.pb2
= s
->pb2
;
2259 backup_s
.tex_pb
= s
->tex_pb
;
2262 if(mb_type
&CANDIDATE_MB_TYPE_INTER
){
2263 s
->mv_dir
= MV_DIR_FORWARD
;
2264 s
->mv_type
= MV_TYPE_16X16
;
2266 s
->mv
[0][0][0] = s
->p_mv_table
[xy
][0];
2267 s
->mv
[0][0][1] = s
->p_mv_table
[xy
][1];
2268 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_INTER
, pb
, pb2
, tex_pb
,
2269 &dmin
, &next_block
, s
->mv
[0][0][0], s
->mv
[0][0][1]);
2271 if(mb_type
&CANDIDATE_MB_TYPE_INTER_I
){
2272 s
->mv_dir
= MV_DIR_FORWARD
;
2273 s
->mv_type
= MV_TYPE_FIELD
;
2276 j
= s
->field_select
[0][i
] = s
->p_field_select_table
[i
][xy
];
2277 s
->mv
[0][i
][0] = s
->p_field_mv_table
[i
][j
][xy
][0];
2278 s
->mv
[0][i
][1] = s
->p_field_mv_table
[i
][j
][xy
][1];
2280 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_INTER_I
, pb
, pb2
, tex_pb
,
2281 &dmin
, &next_block
, 0, 0);
2283 if(mb_type
&CANDIDATE_MB_TYPE_SKIPPED
){
2284 s
->mv_dir
= MV_DIR_FORWARD
;
2285 s
->mv_type
= MV_TYPE_16X16
;
2289 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_SKIPPED
, pb
, pb2
, tex_pb
,
2290 &dmin
, &next_block
, s
->mv
[0][0][0], s
->mv
[0][0][1]);
2292 if(mb_type
&CANDIDATE_MB_TYPE_INTER4V
){
2293 s
->mv_dir
= MV_DIR_FORWARD
;
2294 s
->mv_type
= MV_TYPE_8X8
;
2297 s
->mv
[0][i
][0] = s
->current_picture
.f
.motion_val
[0][s
->block_index
[i
]][0];
2298 s
->mv
[0][i
][1] = s
->current_picture
.f
.motion_val
[0][s
->block_index
[i
]][1];
2300 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_INTER4V
, pb
, pb2
, tex_pb
,
2301 &dmin
, &next_block
, 0, 0);
2303 if(mb_type
&CANDIDATE_MB_TYPE_FORWARD
){
2304 s
->mv_dir
= MV_DIR_FORWARD
;
2305 s
->mv_type
= MV_TYPE_16X16
;
2307 s
->mv
[0][0][0] = s
->b_forw_mv_table
[xy
][0];
2308 s
->mv
[0][0][1] = s
->b_forw_mv_table
[xy
][1];
2309 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_FORWARD
, pb
, pb2
, tex_pb
,
2310 &dmin
, &next_block
, s
->mv
[0][0][0], s
->mv
[0][0][1]);
2312 if(mb_type
&CANDIDATE_MB_TYPE_BACKWARD
){
2313 s
->mv_dir
= MV_DIR_BACKWARD
;
2314 s
->mv_type
= MV_TYPE_16X16
;
2316 s
->mv
[1][0][0] = s
->b_back_mv_table
[xy
][0];
2317 s
->mv
[1][0][1] = s
->b_back_mv_table
[xy
][1];
2318 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_BACKWARD
, pb
, pb2
, tex_pb
,
2319 &dmin
, &next_block
, s
->mv
[1][0][0], s
->mv
[1][0][1]);
2321 if(mb_type
&CANDIDATE_MB_TYPE_BIDIR
){
2322 s
->mv_dir
= MV_DIR_FORWARD
| MV_DIR_BACKWARD
;
2323 s
->mv_type
= MV_TYPE_16X16
;
2325 s
->mv
[0][0][0] = s
->b_bidir_forw_mv_table
[xy
][0];
2326 s
->mv
[0][0][1] = s
->b_bidir_forw_mv_table
[xy
][1];
2327 s
->mv
[1][0][0] = s
->b_bidir_back_mv_table
[xy
][0];
2328 s
->mv
[1][0][1] = s
->b_bidir_back_mv_table
[xy
][1];
2329 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_BIDIR
, pb
, pb2
, tex_pb
,
2330 &dmin
, &next_block
, 0, 0);
2332 if(mb_type
&CANDIDATE_MB_TYPE_FORWARD_I
){
2333 s
->mv_dir
= MV_DIR_FORWARD
;
2334 s
->mv_type
= MV_TYPE_FIELD
;
2337 j
= s
->field_select
[0][i
] = s
->b_field_select_table
[0][i
][xy
];
2338 s
->mv
[0][i
][0] = s
->b_field_mv_table
[0][i
][j
][xy
][0];
2339 s
->mv
[0][i
][1] = s
->b_field_mv_table
[0][i
][j
][xy
][1];
2341 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_FORWARD_I
, pb
, pb2
, tex_pb
,
2342 &dmin
, &next_block
, 0, 0);
2344 if(mb_type
&CANDIDATE_MB_TYPE_BACKWARD_I
){
2345 s
->mv_dir
= MV_DIR_BACKWARD
;
2346 s
->mv_type
= MV_TYPE_FIELD
;
2349 j
= s
->field_select
[1][i
] = s
->b_field_select_table
[1][i
][xy
];
2350 s
->mv
[1][i
][0] = s
->b_field_mv_table
[1][i
][j
][xy
][0];
2351 s
->mv
[1][i
][1] = s
->b_field_mv_table
[1][i
][j
][xy
][1];
2353 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_BACKWARD_I
, pb
, pb2
, tex_pb
,
2354 &dmin
, &next_block
, 0, 0);
2356 if(mb_type
&CANDIDATE_MB_TYPE_BIDIR_I
){
2357 s
->mv_dir
= MV_DIR_FORWARD
| MV_DIR_BACKWARD
;
2358 s
->mv_type
= MV_TYPE_FIELD
;
2360 for(dir
=0; dir
<2; dir
++){
2362 j
= s
->field_select
[dir
][i
] = s
->b_field_select_table
[dir
][i
][xy
];
2363 s
->mv
[dir
][i
][0] = s
->b_field_mv_table
[dir
][i
][j
][xy
][0];
2364 s
->mv
[dir
][i
][1] = s
->b_field_mv_table
[dir
][i
][j
][xy
][1];
2367 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_BIDIR_I
, pb
, pb2
, tex_pb
,
2368 &dmin
, &next_block
, 0, 0);
2370 if(mb_type
&CANDIDATE_MB_TYPE_INTRA
){
2372 s
->mv_type
= MV_TYPE_16X16
;
2376 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_INTRA
, pb
, pb2
, tex_pb
,
2377 &dmin
, &next_block
, 0, 0);
2378 if(s
->h263_pred
|| s
->h263_aic
){
2380 s
->mbintra_table
[mb_x
+ mb_y
*s
->mb_stride
]=1;
2382 ff_clean_intra_table_entries(s
); //old mode?
2386 if((s
->flags
& CODEC_FLAG_QP_RD
) && dmin
< INT_MAX
){
2387 if(best_s
.mv_type
==MV_TYPE_16X16
){ //FIXME move 4mv after QPRD
2388 const int last_qp
= backup_s
.qscale
;
2391 const int mvdir
= (best_s
.mv_dir
&MV_DIR_BACKWARD
) ?
1 : 0;
2392 static const int dquant_tab
[4]={-1,1,-2,2};
2394 assert(backup_s
.dquant
== 0);
2397 s
->mv_dir
= best_s
.mv_dir
;
2398 s
->mv_type
= MV_TYPE_16X16
;
2399 s
->mb_intra
= best_s
.mb_intra
;
2400 s
->mv
[0][0][0] = best_s
.mv
[0][0][0];
2401 s
->mv
[0][0][1] = best_s
.mv
[0][0][1];
2402 s
->mv
[1][0][0] = best_s
.mv
[1][0][0];
2403 s
->mv
[1][0][1] = best_s
.mv
[1][0][1];
2405 qpi
= s
->pict_type
== AV_PICTURE_TYPE_B ?
2 : 0;
2406 for(; qpi
<4; qpi
++){
2407 int dquant
= dquant_tab
[qpi
];
2408 qp
= last_qp
+ dquant
;
2409 if(qp
< s
->avctx
->qmin
|| qp
> s
->avctx
->qmax
)
2411 backup_s
.dquant
= dquant
;
2412 if(s
->mb_intra
&& s
->dc_val
[0]){
2414 dc
[i
]= s
->dc_val
[0][ s
->block_index
[i
] ];
2415 memcpy(ac
[i
], s
->ac_val
[0][s
->block_index
[i
]], sizeof(DCTELEM
)*16);
2419 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_INTER
/* wrong but unused */, pb
, pb2
, tex_pb
,
2420 &dmin
, &next_block
, s
->mv
[mvdir
][0][0], s
->mv
[mvdir
][0][1]);
2421 if(best_s
.qscale
!= qp
){
2422 if(s
->mb_intra
&& s
->dc_val
[0]){
2424 s
->dc_val
[0][ s
->block_index
[i
] ]= dc
[i
];
2425 memcpy(s
->ac_val
[0][s
->block_index
[i
]], ac
[i
], sizeof(DCTELEM
)*16);
2432 if(CONFIG_MPEG4_ENCODER
&& mb_type
&CANDIDATE_MB_TYPE_DIRECT
){
2433 int mx
= s
->b_direct_mv_table
[xy
][0];
2434 int my
= s
->b_direct_mv_table
[xy
][1];
2436 backup_s
.dquant
= 0;
2437 s
->mv_dir
= MV_DIR_FORWARD
| MV_DIR_BACKWARD
| MV_DIRECT
;
2439 ff_mpeg4_set_direct_mv(s
, mx
, my
);
2440 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_DIRECT
, pb
, pb2
, tex_pb
,
2441 &dmin
, &next_block
, mx
, my
);
2443 if(CONFIG_MPEG4_ENCODER
&& mb_type
&CANDIDATE_MB_TYPE_DIRECT0
){
2444 backup_s
.dquant
= 0;
2445 s
->mv_dir
= MV_DIR_FORWARD
| MV_DIR_BACKWARD
| MV_DIRECT
;
2447 ff_mpeg4_set_direct_mv(s
, 0, 0);
2448 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_DIRECT
, pb
, pb2
, tex_pb
,
2449 &dmin
, &next_block
, 0, 0);
2451 if(!best_s
.mb_intra
&& s
->flags2
&CODEC_FLAG2_SKIP_RD
){
2454 coded
|= s
->block_last_index
[i
];
2457 memcpy(s
->mv
, best_s
.mv
, sizeof(s
->mv
));
2458 if(CONFIG_MPEG4_ENCODER
&& best_s
.mv_dir
& MV_DIRECT
){
2459 mx
=my
=0; //FIXME find the one we actually used
2460 ff_mpeg4_set_direct_mv(s
, mx
, my
);
2461 }else if(best_s
.mv_dir
&MV_DIR_BACKWARD
){
2469 s
->mv_dir
= best_s
.mv_dir
;
2470 s
->mv_type
= best_s
.mv_type
;
2472 /* s->mv[0][0][0] = best_s.mv[0][0][0];
2473 s->mv[0][0][1] = best_s.mv[0][0][1];
2474 s->mv[1][0][0] = best_s.mv[1][0][0];
2475 s->mv[1][0][1] = best_s.mv[1][0][1];*/
2478 encode_mb_hq(s
, &backup_s
, &best_s
, CANDIDATE_MB_TYPE_INTER
/* wrong but unused */, pb
, pb2
, tex_pb
,
2479 &dmin
, &next_block
, mx
, my
);
2484 s
->current_picture
.f
.qscale_table
[xy
] = best_s
.qscale
;
2486 copy_context_after_encode(s
, &best_s
, -1);
2488 pb_bits_count
= put_bits_count(&s
->pb
);
2489 flush_put_bits(&s
->pb
);
2490 avpriv_copy_bits(&backup_s
.pb
, bit_buf
[next_block
^1], pb_bits_count
);
2493 if(s
->data_partitioning
){
2494 pb2_bits_count
= put_bits_count(&s
->pb2
);
2495 flush_put_bits(&s
->pb2
);
2496 avpriv_copy_bits(&backup_s
.pb2
, bit_buf2
[next_block
^1], pb2_bits_count
);
2497 s
->pb2
= backup_s
.pb2
;
2499 tex_pb_bits_count
= put_bits_count(&s
->tex_pb
);
2500 flush_put_bits(&s
->tex_pb
);
2501 avpriv_copy_bits(&backup_s
.tex_pb
, bit_buf_tex
[next_block
^1], tex_pb_bits_count
);
2502 s
->tex_pb
= backup_s
.tex_pb
;
2504 s
->last_bits
= put_bits_count(&s
->pb
);
2506 if (CONFIG_H263_ENCODER
&&
2507 s
->out_format
== FMT_H263
&& s
->pict_type
!=AV_PICTURE_TYPE_B
)
2508 ff_h263_update_motion_val(s
);
2510 if(next_block
==0){ //FIXME 16 vs linesize16
2511 s
->dsp
.put_pixels_tab
[0][0](s
->dest
[0], s
->rd_scratchpad
, s
->linesize
,16);
2512 s
->dsp
.put_pixels_tab
[1][0](s
->dest
[1], s
->rd_scratchpad
+ 16*s
->linesize
, s
->uvlinesize
, 8);
2513 s
->dsp
.put_pixels_tab
[1][0](s
->dest
[2], s
->rd_scratchpad
+ 16*s
->linesize
+ 8, s
->uvlinesize
, 8);
2516 if(s
->avctx
->mb_decision
== FF_MB_DECISION_BITS
)
2517 MPV_decode_mb(s
, s
->block
);
2519 int motion_x
= 0, motion_y
= 0;
2520 s
->mv_type
=MV_TYPE_16X16
;
2521 // only one MB-Type possible
2524 case CANDIDATE_MB_TYPE_INTRA
:
2527 motion_x
= s
->mv
[0][0][0] = 0;
2528 motion_y
= s
->mv
[0][0][1] = 0;
2530 case CANDIDATE_MB_TYPE_INTER
:
2531 s
->mv_dir
= MV_DIR_FORWARD
;
2533 motion_x
= s
->mv
[0][0][0] = s
->p_mv_table
[xy
][0];
2534 motion_y
= s
->mv
[0][0][1] = s
->p_mv_table
[xy
][1];
2536 case CANDIDATE_MB_TYPE_INTER_I
:
2537 s
->mv_dir
= MV_DIR_FORWARD
;
2538 s
->mv_type
= MV_TYPE_FIELD
;
2541 j
= s
->field_select
[0][i
] = s
->p_field_select_table
[i
][xy
];
2542 s
->mv
[0][i
][0] = s
->p_field_mv_table
[i
][j
][xy
][0];
2543 s
->mv
[0][i
][1] = s
->p_field_mv_table
[i
][j
][xy
][1];
2546 case CANDIDATE_MB_TYPE_INTER4V
:
2547 s
->mv_dir
= MV_DIR_FORWARD
;
2548 s
->mv_type
= MV_TYPE_8X8
;
2551 s
->mv
[0][i
][0] = s
->current_picture
.f
.motion_val
[0][s
->block_index
[i
]][0];
2552 s
->mv
[0][i
][1] = s
->current_picture
.f
.motion_val
[0][s
->block_index
[i
]][1];
2555 case CANDIDATE_MB_TYPE_DIRECT
:
2556 if (CONFIG_MPEG4_ENCODER
) {
2557 s
->mv_dir
= MV_DIR_FORWARD
|MV_DIR_BACKWARD
|MV_DIRECT
;
2559 motion_x
=s
->b_direct_mv_table
[xy
][0];
2560 motion_y
=s
->b_direct_mv_table
[xy
][1];
2561 ff_mpeg4_set_direct_mv(s
, motion_x
, motion_y
);
2564 case CANDIDATE_MB_TYPE_DIRECT0
:
2565 if (CONFIG_MPEG4_ENCODER
) {
2566 s
->mv_dir
= MV_DIR_FORWARD
|MV_DIR_BACKWARD
|MV_DIRECT
;
2568 ff_mpeg4_set_direct_mv(s
, 0, 0);
2571 case CANDIDATE_MB_TYPE_BIDIR
:
2572 s
->mv_dir
= MV_DIR_FORWARD
| MV_DIR_BACKWARD
;
2574 s
->mv
[0][0][0] = s
->b_bidir_forw_mv_table
[xy
][0];
2575 s
->mv
[0][0][1] = s
->b_bidir_forw_mv_table
[xy
][1];
2576 s
->mv
[1][0][0] = s
->b_bidir_back_mv_table
[xy
][0];
2577 s
->mv
[1][0][1] = s
->b_bidir_back_mv_table
[xy
][1];
2579 case CANDIDATE_MB_TYPE_BACKWARD
:
2580 s
->mv_dir
= MV_DIR_BACKWARD
;
2582 motion_x
= s
->mv
[1][0][0] = s
->b_back_mv_table
[xy
][0];
2583 motion_y
= s
->mv
[1][0][1] = s
->b_back_mv_table
[xy
][1];
2585 case CANDIDATE_MB_TYPE_FORWARD
:
2586 s
->mv_dir
= MV_DIR_FORWARD
;
2588 motion_x
= s
->mv
[0][0][0] = s
->b_forw_mv_table
[xy
][0];
2589 motion_y
= s
->mv
[0][0][1] = s
->b_forw_mv_table
[xy
][1];
2590 // printf(" %d %d ", motion_x, motion_y);
2592 case CANDIDATE_MB_TYPE_FORWARD_I
:
2593 s
->mv_dir
= MV_DIR_FORWARD
;
2594 s
->mv_type
= MV_TYPE_FIELD
;
2597 j
= s
->field_select
[0][i
] = s
->b_field_select_table
[0][i
][xy
];
2598 s
->mv
[0][i
][0] = s
->b_field_mv_table
[0][i
][j
][xy
][0];
2599 s
->mv
[0][i
][1] = s
->b_field_mv_table
[0][i
][j
][xy
][1];
2602 case CANDIDATE_MB_TYPE_BACKWARD_I
:
2603 s
->mv_dir
= MV_DIR_BACKWARD
;
2604 s
->mv_type
= MV_TYPE_FIELD
;
2607 j
= s
->field_select
[1][i
] = s
->b_field_select_table
[1][i
][xy
];
2608 s
->mv
[1][i
][0] = s
->b_field_mv_table
[1][i
][j
][xy
][0];
2609 s
->mv
[1][i
][1] = s
->b_field_mv_table
[1][i
][j
][xy
][1];
2612 case CANDIDATE_MB_TYPE_BIDIR_I
:
2613 s
->mv_dir
= MV_DIR_FORWARD
| MV_DIR_BACKWARD
;
2614 s
->mv_type
= MV_TYPE_FIELD
;
2616 for(dir
=0; dir
<2; dir
++){
2618 j
= s
->field_select
[dir
][i
] = s
->b_field_select_table
[dir
][i
][xy
];
2619 s
->mv
[dir
][i
][0] = s
->b_field_mv_table
[dir
][i
][j
][xy
][0];
2620 s
->mv
[dir
][i
][1] = s
->b_field_mv_table
[dir
][i
][j
][xy
][1];
2625 av_log(s
->avctx
, AV_LOG_ERROR
, "illegal MB type\n");
2628 encode_mb(s
, motion_x
, motion_y
);
2630 // RAL: Update last macroblock type
2631 s
->last_mv_dir
= s
->mv_dir
;
2633 if (CONFIG_H263_ENCODER
&&
2634 s
->out_format
== FMT_H263
&& s
->pict_type
!=AV_PICTURE_TYPE_B
)
2635 ff_h263_update_motion_val(s
);
2637 MPV_decode_mb(s
, s
->block
);
2640 /* clean the MV table in IPS frames for direct mode in B frames */
2641 if(s
->mb_intra
/* && I,P,S_TYPE */){
2642 s
->p_mv_table
[xy
][0]=0;
2643 s
->p_mv_table
[xy
][1]=0;
2646 if(s
->flags
&CODEC_FLAG_PSNR
){
2650 if(s
->mb_x
*16 + 16 > s
->width
) w
= s
->width
- s
->mb_x
*16;
2651 if(s
->mb_y
*16 + 16 > s
->height
) h
= s
->height
- s
->mb_y
*16;
2653 s
->current_picture
.f
.error
[0] += sse(
2654 s
, s
->new_picture
.f
.data
[0] + s
->mb_x
*16 + s
->mb_y
*s
->linesize
*16,
2655 s
->dest
[0], w
, h
, s
->linesize
);
2656 s
->current_picture
.f
.error
[1] += sse(
2657 s
, s
->new_picture
.f
.data
[1] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*chr_h
,
2658 s
->dest
[1], w
>>1, h
>>s
->chroma_y_shift
, s
->uvlinesize
);
2659 s
->current_picture
.f
.error
[2] += sse(
2660 s
, s
->new_picture
.f
.data
[2] + s
->mb_x
*8 + s
->mb_y
*s
->uvlinesize
*chr_h
,
2661 s
->dest
[2], w
>>1, h
>>s
->chroma_y_shift
, s
->uvlinesize
);
2664 if(CONFIG_H263_ENCODER
&& s
->out_format
== FMT_H263
)
2665 ff_h263_loop_filter(s
);
2667 //printf("MB %d %d bits\n", s->mb_x+s->mb_y*s->mb_stride, put_bits_count(&s->pb));
2671 //not beautiful here but we must write it before flushing so it has to be here
2672 if (CONFIG_MSMPEG4_ENCODER
&& s
->msmpeg4_version
&& s
->msmpeg4_version
<4 && s
->pict_type
== AV_PICTURE_TYPE_I
)
2673 msmpeg4_encode_ext_header(s
);
2677 /* Send the last GOB if RTP */
2678 if (s
->avctx
->rtp_callback
) {
2679 int number_mb
= (mb_y
- s
->resync_mb_y
)*s
->mb_width
- s
->resync_mb_x
;
2680 pdif
= put_bits_ptr(&s
->pb
) - s
->ptr_lastgob
;
2681 /* Call the RTP callback to send the last GOB */
2683 s
->avctx
->rtp_callback(s
->avctx
, s
->ptr_lastgob
, pdif
, number_mb
);
2689 #define MERGE(field) dst->field += src->field; src->field=0
2690 static void merge_context_after_me(MpegEncContext
*dst
, MpegEncContext
*src
){
2691 MERGE(me
.scene_change_score
);
2692 MERGE(me
.mc_mb_var_sum_temp
);
2693 MERGE(me
.mb_var_sum_temp
);
2696 static void merge_context_after_encode(MpegEncContext
*dst
, MpegEncContext
*src
){
2699 MERGE(dct_count
[0]); //note, the other dct vars are not part of the context
2700 MERGE(dct_count
[1]);
2710 MERGE(padding_bug_score
);
2711 MERGE(current_picture
.f
.error
[0]);
2712 MERGE(current_picture
.f
.error
[1]);
2713 MERGE(current_picture
.f
.error
[2]);
2715 if(dst
->avctx
->noise_reduction
){
2716 for(i
=0; i
<64; i
++){
2717 MERGE(dct_error_sum
[0][i
]);
2718 MERGE(dct_error_sum
[1][i
]);
2722 assert(put_bits_count(&src
->pb
) % 8 ==0);