mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-14 03:11:20 +00:00
avcodec/flashsvenc: Remove unnecessary or unused variable
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
61d28ee0e4
commit
c8e9cc8d20
@ -65,8 +65,6 @@ typedef struct FlashSVContext {
|
|||||||
AVBufferRef *prev_frame_buf;
|
AVBufferRef *prev_frame_buf;
|
||||||
int image_width, image_height;
|
int image_width, image_height;
|
||||||
unsigned packet_size;
|
unsigned packet_size;
|
||||||
int block_width, block_height;
|
|
||||||
int block_size;
|
|
||||||
int last_key_frame;
|
int last_key_frame;
|
||||||
uint8_t tmpblock[3 * 256 * 256];
|
uint8_t tmpblock[3 * 256 * 256];
|
||||||
} FlashSVContext;
|
} FlashSVContext;
|
||||||
@ -204,7 +202,6 @@ static int flashsv_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||||||
const AVFrame *pict, int *got_packet)
|
const AVFrame *pict, int *got_packet)
|
||||||
{
|
{
|
||||||
FlashSVContext * const s = avctx->priv_data;
|
FlashSVContext * const s = avctx->priv_data;
|
||||||
const AVFrame * const p = pict;
|
|
||||||
const uint8_t *prev_frame = s->previous_frame;
|
const uint8_t *prev_frame = s->previous_frame;
|
||||||
int res;
|
int res;
|
||||||
int I_frame = 0;
|
int I_frame = 0;
|
||||||
@ -226,7 +223,8 @@ static int flashsv_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||||||
if (res < 0)
|
if (res < 0)
|
||||||
return res;
|
return res;
|
||||||
|
|
||||||
pkt->size = encode_bitstream(s, p, pkt->data, pkt->size, opt_w * 16, opt_h * 16,
|
pkt->size = encode_bitstream(s, pict, pkt->data, pkt->size,
|
||||||
|
opt_w * 16, opt_h * 16,
|
||||||
prev_frame, &I_frame);
|
prev_frame, &I_frame);
|
||||||
|
|
||||||
//mark the frame type so the muxer can mux it correctly
|
//mark the frame type so the muxer can mux it correctly
|
||||||
|
Loading…
Reference in New Issue
Block a user