mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-07 11:13:41 +02:00
bcf08c1171
Frame threading in the FFV1 decoder works in a very unusual way - the state that needs to be propagated from the previous frame is not decoded pixels(¹), but each slice's entropy coder state after decoding the slice. For that purpose, the decoder's update_thread_context() callback stores a pointer to the previous frame thread's private data. Then, when decoding each slice, the frame thread uses the standard progress mechanism to wait for the corresponding slice in the previous frame to be completed, then copies the entropy coder state from the previously-stored pointer. This approach is highly dubious, as update_thread_context() should be the only point where frame-thread contexts come into direct contact. There are no guarantees that the stored pointer will be valid at all, or will contain any particular data after update_thread_context() finishes. More specifically, this code can break due to the fact that keyframes reset entropy coder state and thus do not need to wait for the previous frame. As an example, consider a decoder process with 2 frame threads - thread 0 with its context 0, and thread 1 with context 1 - decoding a previous frame P, current frame F, followed by a keyframe K. Then consider concurrent execution consistent with the following sequence of events: * thread 0 starts decoding P * thread 0 reads P's slice header, then calls ff_thread_finish_setup() allowing next frame thread to start * main thread calls update_thread_context() to transfer state from context 0 to context 1; context 1 stores a pointer to context 0's private data * thread 1 starts decoding F * thread 1 reads F's slice header, then calls ff_thread_finish_setup() allowing the next frame thread to start decoding * thread 0 finishes decoding P * thread 0 starts decoding K; since K is a keyframe, it does not wait for F and reallocates the arrays holding entropy coder state * thread 0 finishes decoding K * thread 1 reads entropy coder state from its stored pointer to context 0, however it finds state from K rather than from P This execution is currently prevented by special-casing FFV1 in the generic frame threading code, however that is supremely ugly. It also involves unnecessary copies of the state arrays, when in fact they can only be used by one thread at a time. This commit addresses these deficiencies by changing the array of PlaneContext (each of which contains the allocated state arrays) embedded in FFV1SliceContext into a RefStruct object. This object can then be propagated across frame threads in standard manner. Since the code structure guarantees only one thread accesses it at a time, no copies are necessary. It is also re-created for keyframes, solving the above issue cleanly. Special-casing of FFV1 in the generic frame threading code will be removed in a later commit. (¹) except in the case of a damaged slice, when previous frame's pixels are used directly
202 lines
4.8 KiB
C
202 lines
4.8 KiB
C
/*
|
|
* FFV1 codec for libavcodec
|
|
*
|
|
* Copyright (c) 2003-2012 Michael Niedermayer <michaelni@gmx.at>
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef AVCODEC_FFV1_H
|
|
#define AVCODEC_FFV1_H
|
|
|
|
/**
|
|
* @file
|
|
* FF Video Codec 1 (a lossless codec)
|
|
*/
|
|
|
|
#include "avcodec.h"
|
|
#include "get_bits.h"
|
|
#include "mathops.h"
|
|
#include "progressframe.h"
|
|
#include "put_bits.h"
|
|
#include "rangecoder.h"
|
|
|
|
#ifdef __INTEL_COMPILER
|
|
#undef av_flatten
|
|
#define av_flatten
|
|
#endif
|
|
|
|
#define MAX_PLANES 4
|
|
#define CONTEXT_SIZE 32
|
|
|
|
#define MAX_QUANT_TABLES 8
|
|
#define MAX_CONTEXT_INPUTS 5
|
|
|
|
#define AC_GOLOMB_RICE 0
|
|
#define AC_RANGE_DEFAULT_TAB 1
|
|
#define AC_RANGE_CUSTOM_TAB 2
|
|
#define AC_RANGE_DEFAULT_TAB_FORCE -2
|
|
|
|
typedef struct VlcState {
|
|
int16_t drift;
|
|
uint16_t error_sum;
|
|
int8_t bias;
|
|
uint8_t count;
|
|
} VlcState;
|
|
|
|
typedef struct PlaneContext {
|
|
int quant_table_index;
|
|
int context_count;
|
|
uint8_t (*state)[CONTEXT_SIZE];
|
|
VlcState *vlc_state;
|
|
} PlaneContext;
|
|
|
|
#define MAX_SLICES 1024
|
|
|
|
typedef struct FFV1SliceContext {
|
|
int16_t *sample_buffer;
|
|
int32_t *sample_buffer32;
|
|
|
|
int slice_width;
|
|
int slice_height;
|
|
int slice_x;
|
|
int slice_y;
|
|
|
|
int run_index;
|
|
int slice_coding_mode;
|
|
int slice_rct_by_coef;
|
|
int slice_rct_ry_coef;
|
|
|
|
// RefStruct reference, array of MAX_PLANES elements
|
|
PlaneContext *plane;
|
|
PutBitContext pb;
|
|
RangeCoder c;
|
|
|
|
int ac_byte_count; ///< number of bytes used for AC coding
|
|
|
|
union {
|
|
// decoder-only
|
|
struct {
|
|
int slice_reset_contexts;
|
|
int slice_damaged;
|
|
};
|
|
|
|
// encoder-only
|
|
struct {
|
|
uint64_t rc_stat[256][2];
|
|
uint64_t (*rc_stat2[MAX_QUANT_TABLES])[32][2];
|
|
};
|
|
};
|
|
} FFV1SliceContext;
|
|
|
|
typedef struct FFV1Context {
|
|
AVClass *class;
|
|
AVCodecContext *avctx;
|
|
uint64_t rc_stat[256][2];
|
|
uint64_t (*rc_stat2[MAX_QUANT_TABLES])[32][2];
|
|
int version;
|
|
int micro_version;
|
|
int width, height;
|
|
int chroma_planes;
|
|
int chroma_h_shift, chroma_v_shift;
|
|
int transparency;
|
|
int flags;
|
|
int64_t picture_number;
|
|
int key_frame;
|
|
ProgressFrame picture, last_picture;
|
|
struct FFV1Context *fsrc;
|
|
|
|
const AVFrame *cur_enc_frame;
|
|
int plane_count;
|
|
int ac; ///< 1=range coder <-> 0=golomb rice
|
|
int16_t quant_tables[MAX_QUANT_TABLES][MAX_CONTEXT_INPUTS][256];
|
|
int context_count[MAX_QUANT_TABLES];
|
|
uint8_t state_transition[256];
|
|
uint8_t (*initial_states[MAX_QUANT_TABLES])[32];
|
|
int colorspace;
|
|
|
|
int use32bit;
|
|
|
|
int ec;
|
|
int intra;
|
|
int key_frame_ok;
|
|
int context_model;
|
|
|
|
int bits_per_raw_sample;
|
|
int packed_at_lsb;
|
|
|
|
int gob_count;
|
|
int quant_table_count;
|
|
|
|
int slice_count;
|
|
int max_slice_count;
|
|
int num_v_slices;
|
|
int num_h_slices;
|
|
|
|
FFV1SliceContext *slices;
|
|
} FFV1Context;
|
|
|
|
int ff_ffv1_common_init(AVCodecContext *avctx);
|
|
int ff_ffv1_init_slice_state(const FFV1Context *f, FFV1SliceContext *sc);
|
|
int ff_ffv1_init_slices_state(FFV1Context *f);
|
|
int ff_ffv1_init_slice_contexts(FFV1Context *f);
|
|
PlaneContext *ff_ffv1_planes_alloc(void);
|
|
int ff_ffv1_allocate_initial_states(FFV1Context *f);
|
|
void ff_ffv1_clear_slice_state(const FFV1Context *f, FFV1SliceContext *sc);
|
|
int ff_ffv1_close(AVCodecContext *avctx);
|
|
|
|
static av_always_inline int fold(int diff, int bits)
|
|
{
|
|
if (bits == 8)
|
|
diff = (int8_t)diff;
|
|
else {
|
|
diff = sign_extend(diff, bits);
|
|
}
|
|
|
|
return diff;
|
|
}
|
|
|
|
static inline void update_vlc_state(VlcState *const state, const int v)
|
|
{
|
|
int drift = state->drift;
|
|
int count = state->count;
|
|
state->error_sum += FFABS(v);
|
|
drift += v;
|
|
|
|
if (count == 128) { // FIXME: variable
|
|
count >>= 1;
|
|
drift >>= 1;
|
|
state->error_sum >>= 1;
|
|
}
|
|
count++;
|
|
|
|
if (drift <= -count) {
|
|
state->bias = FFMAX(state->bias - 1, -128);
|
|
|
|
drift = FFMAX(drift + count, -count + 1);
|
|
} else if (drift > 0) {
|
|
state->bias = FFMIN(state->bias + 1, 127);
|
|
|
|
drift = FFMIN(drift - count, 0);
|
|
}
|
|
|
|
state->drift = drift;
|
|
state->count = count;
|
|
}
|
|
|
|
#endif /* AVCODEC_FFV1_H */
|