Go to the documentation of this file.
48 static void gray16(uint8_t *
dst,
const uint8_t *
src, ptrdiff_t linesize,
int h)
51 memset(
dst +
h*linesize, 128, 16);
54 static void gray8(uint8_t *
dst,
const uint8_t *
src, ptrdiff_t linesize,
int h)
57 memset(
dst +
h*linesize, 128, 8);
70 s->hdsp.avg_pixels_tab[0][
i] =
gray16;
71 s->hdsp.put_pixels_tab[0][
i] =
gray16;
72 s->hdsp.put_no_rnd_pixels_tab[0][
i] =
gray16;
74 s->hdsp.avg_pixels_tab[1][
i] =
gray8;
75 s->hdsp.put_pixels_tab[1][
i] =
gray8;
76 s->hdsp.put_no_rnd_pixels_tab[1][
i] =
gray8;
82 const uint8_t *src_scantable)
86 for (
int i = 0, end = -1;
i < 64;
i++) {
87 int j = src_scantable[
i];
89 if (permutation[j] > end)
98 s->idsp.mpeg4_studio_profile =
s->studio_profile;
104 if (
s->alternate_scan) {
112 s->idsp.idct_permutation);
114 s->idsp.idct_permutation);
121 s->block =
s->blocks[0];
124 int mb_height =
s->msmpeg4_version == MSMP4_VC1 ?
126 int y_size =
s->b8_stride * (2 * mb_height + 1);
127 int c_size =
s->mb_stride * (mb_height + 1);
128 int yc_size = y_size + 2 * c_size;
132 s->ac_val[0] =
s->ac_val_base +
s->b8_stride + 1;
133 s->ac_val[1] =
s->ac_val_base + y_size +
s->mb_stride + 1;
134 s->ac_val[2] =
s->ac_val[1] + c_size;
142 int nb_slices =
s->slice_context_count,
ret;
143 size_t slice_size =
s->slice_ctx_size ?
s->slice_ctx_size :
sizeof(*s);
150 for (
int i = 1;
i < nb_slices;
i++) {
152 if (!
s->thread_context[
i])
156 s->thread_context[
i]->start_mb_y =
157 (
s->mb_height * (
i ) + nb_slices / 2) / nb_slices;
158 s->thread_context[
i]->end_mb_y =
159 (
s->mb_height * (
i + 1) + nb_slices / 2) / nb_slices;
162 s->end_mb_y = nb_slices > 1 ? (
s->mb_height + nb_slices / 2) / nb_slices
174 s->sc.obmc_scratchpad =
NULL;
184 for (
int i = 1;
i <
s->slice_context_count;
i++) {
193 #define COPY(a) bak->a = src->a
218 "scratch buffers.\n");
233 s->progressive_frame = 1;
234 s->progressive_sequence = 1;
237 s->picture_number = 0;
239 s->slice_context_count = 1;
255 int y_size, c_size, yc_size,
i, mb_array_size, mv_table_size, x, y;
259 s->mb_height = (
s->height + 31) / 32 * 2;
261 s->mb_height = (
s->height + 15) / 16;
266 mb_height =
s->msmpeg4_version == MSMP4_VC1 ?
269 s->mb_width = (
s->width + 15) / 16;
270 s->mb_stride =
s->mb_width + 1;
271 s->b8_stride =
s->mb_width * 2 + 1;
272 mb_array_size = mb_height *
s->mb_stride;
273 mv_table_size = (mb_height + 2) *
s->mb_stride + 1;
277 s->h_edge_pos =
s->mb_width * 16;
278 s->v_edge_pos =
s->mb_height * 16;
280 s->mb_num =
s->mb_width *
s->mb_height;
285 s->block_wrap[3] =
s->b8_stride;
287 s->block_wrap[5] =
s->mb_stride;
289 y_size =
s->b8_stride * (2 * mb_height + 1);
290 c_size =
s->mb_stride * (mb_height + 1);
291 yc_size = y_size + 2 * c_size;
295 for (y = 0; y <
s->mb_height; y++)
296 for (x = 0; x <
s->mb_width; x++)
297 s->mb_index2xy[x + y *
s->mb_width] = x + y *
s->mb_stride;
299 s->mb_index2xy[
s->mb_height *
s->mb_width] = (
s->mb_height - 1) *
s->mb_stride +
s->mb_width;
301 #define ALLOC_POOL(name, size, flags) do { \
302 pools->name ##_pool = av_refstruct_pool_alloc((size), (flags)); \
303 if (!pools->name ##_pool) \
304 return AVERROR(ENOMEM); \
313 s->p_field_mv_table_base =
tmp;
314 tmp +=
s->mb_stride + 1;
315 for (
int i = 0;
i < 2;
i++) {
316 for (
int j = 0; j < 2; j++) {
317 s->p_field_mv_table[
i][j] =
tmp;
318 tmp += mv_table_size;
333 if (
s->msmpeg4_version >= MSMP4_V3) {
335 if (!
s->coded_block_base)
337 s->coded_block =
s->coded_block_base +
s->b8_stride + 1;
340 if (
s->h263_pred ||
s->h263_plus || !
s->encoding) {
345 s->dc_val[0] =
s->dc_val_base +
s->b8_stride + 1;
346 s->dc_val[1] =
s->dc_val_base + y_size +
s->mb_stride + 1;
347 s->dc_val[2] =
s->dc_val[1] + c_size;
348 for (
i = 0;
i < yc_size;
i++)
349 s->dc_val_base[
i] = 1024;
353 if (!(
s->mbskip_table =
av_mallocz(mb_array_size + 2)) ||
355 !(
s->mbintra_table =
av_malloc(mb_array_size)))
357 memset(
s->mbintra_table, 1, mb_array_size);
360 ALLOC_POOL(mb_type, mv_table_size *
sizeof(uint32_t), 0);
362 if (
s->out_format ==
FMT_H263 ||
s->encoding ||
364 const int b8_array_size =
s->b8_stride * mb_height * 2;
365 int mv_size = 2 * (b8_array_size + 4) *
sizeof(int16_t);
366 int ref_index_size = 4 * mb_array_size;
384 memset(&
s->buffer_pools, 0,
sizeof(
s->buffer_pools));
385 memset(&
s->next_pic, 0,
sizeof(
s->next_pic));
386 memset(&
s->last_pic, 0,
sizeof(
s->last_pic));
387 memset(&
s->cur_pic, 0,
sizeof(
s->cur_pic));
389 memset(
s->thread_context, 0,
sizeof(
s->thread_context));
393 s->ac_val_base =
NULL;
397 memset(&
s->sc, 0,
sizeof(
s->sc));
400 s->p_field_mv_table_base =
NULL;
401 for (
int i = 0;
i < 2;
i++)
402 for (
int j = 0; j < 2; j++)
403 s->p_field_mv_table[
i][j] =
NULL;
405 s->dc_val_base =
NULL;
406 s->coded_block_base =
NULL;
407 s->mbintra_table =
NULL;
409 s->pred_dir_table =
NULL;
411 s->mbskip_table =
NULL;
413 s->er.error_status_table =
NULL;
414 s->er.er_temp_buffer =
NULL;
415 s->mb_index2xy =
NULL;
424 int nb_slices = (HAVE_THREADS &&
426 s->avctx->thread_count : 1;
431 if (
s->encoding &&
s->avctx->slices)
432 nb_slices =
s->avctx->slices;
436 "decoding to AV_PIX_FMT_NONE is not supported.\n");
440 if ((
s->width ||
s->height) &&
456 if (nb_slices >
MAX_THREADS || (nb_slices >
s->mb_height &&
s->mb_height)) {
463 " reducing to %d\n", nb_slices, max_slices);
464 nb_slices = max_slices;
467 s->context_initialized = 1;
468 memset(
s->thread_context, 0,
sizeof(
s->thread_context));
469 s->thread_context[0] =
s;
470 s->slice_context_count = nb_slices;
490 for (
int i = 0;
i < 2;
i++)
491 for (
int j = 0; j < 2; j++)
492 s->p_field_mv_table[
i][j] =
NULL;
506 s->linesize =
s->uvlinesize = 0;
512 if (
s->slice_context_count > 1)
513 s->slice_context_count = 1;
519 s->context_initialized = 0;
520 s->context_reinit = 0;
521 s->linesize =
s->uvlinesize = 0;
530 int wrap =
s->b8_stride;
531 int xy =
s->block_index[0];
534 s->dc_val[0][xy + 1 ] =
535 s->dc_val[0][xy +
wrap] =
536 s->dc_val[0][xy + 1 +
wrap] = 1024;
538 memset(
s->ac_val[0][xy ], 0, 32 *
sizeof(int16_t));
539 memset(
s->ac_val[0][xy +
wrap], 0, 32 *
sizeof(int16_t));
542 xy =
s->mb_x +
s->mb_y *
wrap;
544 s->dc_val[2][xy] = 1024;
546 memset(
s->ac_val[1][xy], 0, 16 *
sizeof(int16_t));
547 memset(
s->ac_val[2][xy], 0, 16 *
sizeof(int16_t));
549 s->mbintra_table[xy]= 0;
553 const int linesize =
s->cur_pic.linesize[0];
554 const int uvlinesize =
s->cur_pic.linesize[1];
555 const int width_of_mb = (4 + (
s->avctx->bits_per_raw_sample > 8)) -
s->avctx->lowres;
556 const int height_of_mb = 4 -
s->avctx->lowres;
558 s->block_index[0]=
s->b8_stride*(
s->mb_y*2 ) - 2 +
s->mb_x*2;
559 s->block_index[1]=
s->b8_stride*(
s->mb_y*2 ) - 1 +
s->mb_x*2;
560 s->block_index[2]=
s->b8_stride*(
s->mb_y*2 + 1) - 2 +
s->mb_x*2;
561 s->block_index[3]=
s->b8_stride*(
s->mb_y*2 + 1) - 1 +
s->mb_x*2;
562 s->block_index[4]=
s->mb_stride*(
s->mb_y + 1) +
s->b8_stride*
s->mb_height*2 +
s->mb_x - 1;
563 s->block_index[5]=
s->mb_stride*(
s->mb_y +
s->mb_height + 2) +
s->b8_stride*
s->mb_height*2 +
s->mb_x - 1;
566 s->dest[0] =
s->cur_pic.data[0] + (int)((
s->mb_x - 1
U) << width_of_mb);
567 s->dest[1] =
s->cur_pic.data[1] + (int)((
s->mb_x - 1
U) << (width_of_mb -
s->chroma_x_shift));
568 s->dest[2] =
s->cur_pic.data[2] + (int)((
s->mb_x - 1
U) << (width_of_mb -
s->chroma_x_shift));
571 s->dest[0] +=
s->mb_y * linesize << height_of_mb;
572 s->dest[1] +=
s->mb_y * uvlinesize << (height_of_mb -
s->chroma_y_shift);
573 s->dest[2] +=
s->mb_y * uvlinesize << (height_of_mb -
s->chroma_y_shift);
575 s->dest[0] += (
s->mb_y>>1) * linesize << height_of_mb;
576 s->dest[1] += (
s->mb_y>>1) * uvlinesize << (height_of_mb -
s->chroma_y_shift);
577 s->dest[2] += (
s->mb_y>>1) * uvlinesize << (height_of_mb -
s->chroma_y_shift);
589 else if (qscale > 31)
593 s->chroma_qscale=
s->chroma_qscale_table[qscale];
595 s->y_dc_scale=
s->y_dc_scale_table[ qscale ];
596 s->c_dc_scale=
s->c_dc_scale_table[
s->chroma_qscale ];
#define FF_ALLOCZ_TYPED_ARRAY(p, nelem)
av_cold int ff_mpv_common_init(MpegEncContext *s)
init common structure for both encoder and decoder.
#define AV_LOG_WARNING
Something somehow does not look correct.
struct AVRefStructPool * ref_index_pool
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
struct AVRefStructPool * mbskip_table_pool
av_cold int ff_mpv_init_duplicate_contexts(MpegEncContext *s)
Initialize an MpegEncContext's thread contexts.
static void backup_duplicate_context(MpegEncContext *bak, MpegEncContext *src)
int ff_update_duplicate_context(MpegEncContext *dst, const MpegEncContext *src)
void ff_clean_intra_table_entries(MpegEncContext *s)
Clean dc, ac for the current non-intra MB.
#define PICT_BOTTOM_FIELD
void ff_init_block_index(MpegEncContext *s)
#define AV_CODEC_FLAG_INTERLACED_ME
interlaced motion estimation
av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx)
void * av_memdup(const void *p, size_t size)
Duplicate a buffer with av_malloc().
av_cold void ff_permute_scantable(uint8_t dst[64], const uint8_t src[64], const uint8_t permutation[64])
#define AV_REFSTRUCT_POOL_FLAG_ZERO_EVERY_TIME
If this flag is set, the entries will be zeroed before being returned to the user (after the init or ...
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
av_cold void ff_videodsp_init(VideoDSPContext *ctx, int bpc)
int alloc_mb_stride
mb_stride used to allocate tables
av_cold int ff_mpv_init_context_frame(MpegEncContext *s)
Initialize and allocates MpegEncContext fields dependent on the resolution.
static void gray16(uint8_t *dst, const uint8_t *src, ptrdiff_t linesize, int h)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static av_cold void free_buffer_pools(BufferPoolContext *pools)
av_cold void ff_blockdsp_init(BlockDSPContext *c)
int ff_mpv_framesize_alloc(AVCodecContext *avctx, ScratchpadContext *sc, int linesize)
struct AVRefStructPool * mb_type_pool
#define ALLOC_POOL(name, size, flags)
const uint8_t * scantable
static av_cold void free_duplicate_contexts(MpegEncContext *s)
int alloc_mb_height
mb_height used to allocate tables
av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags)
av_cold void ff_mpv_common_end(MpegEncContext *s)
void ff_mpv_unref_picture(MPVWorkPicture *pic)
av_cold void ff_mpv_idct_init(MpegEncContext *s)
av_cold void ff_mpv_common_defaults(MpegEncContext *s)
Set the given MpegEncContext to common defaults (same for encoding and decoding).
void ff_set_qscale(MpegEncContext *s, int qscale)
set qscale and update qscale dependent variables.
const uint8_t ff_alternate_horizontal_scan[64]
static av_cold void free_duplicate_context(MpegEncContext *s)
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
int ff_mpeg_er_init(MpegEncContext *s)
static av_cold int init_duplicate_context(MpegEncContext *s)
#define FF_THREAD_SLICE
Decode more than one part of a single frame at once.
struct AVRefStructPool * qscale_table_pool
static void clear_context(MpegEncContext *s)
av_cold void ff_init_scantable(const uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable)
#define i(width, name, range_min, range_max)
const uint8_t ff_alternate_vertical_scan[64]
static av_cold void dsp_init(MpegEncContext *s)
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
void * av_calloc(size_t nmemb, size_t size)
const uint8_t ff_zigzag_direct[64]
struct AVRefStructPool * motion_val_pool
const uint8_t ff_default_chroma_qscale_table[32]
#define AV_CODEC_EXPORT_DATA_MVS
Export motion vectors through frame side data.
static void av_refstruct_pool_uninit(AVRefStructPool **poolp)
Mark the pool as being available for freeing.
The exact code depends on how similar the blocks are and how related they are to the block
av_cold void ff_mpv_free_context_frame(MpegEncContext *s)
Frees and resets MpegEncContext fields depending on the resolution as well as the slice thread contex...
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
int alloc_mb_width
mb_width used to allocate tables
@ AV_CODEC_ID_MPEG2VIDEO
preferred ID for MPEG-1/2 video decoding
static void gray8(uint8_t *dst, const uint8_t *src, ptrdiff_t linesize, int h)