decoder/ffpmeg: make variables more local
This commit is contained in:
parent
7c8038e2da
commit
aea99a1222
@ -323,11 +323,8 @@ ffmpeg_send_packet(Decoder &decoder, InputStream &is,
|
|||||||
|
|
||||||
AVPacket packet2 = *packet;
|
AVPacket packet2 = *packet;
|
||||||
|
|
||||||
uint8_t *output_buffer;
|
|
||||||
|
|
||||||
DecoderCommand cmd = DecoderCommand::NONE;
|
DecoderCommand cmd = DecoderCommand::NONE;
|
||||||
while (packet2.size > 0 && cmd == DecoderCommand::NONE) {
|
while (packet2.size > 0 && cmd == DecoderCommand::NONE) {
|
||||||
int audio_size = 0;
|
|
||||||
int got_frame = 0;
|
int got_frame = 0;
|
||||||
int len = avcodec_decode_audio4(codec_context,
|
int len = avcodec_decode_audio4(codec_context,
|
||||||
frame, &got_frame,
|
frame, &got_frame,
|
||||||
@ -339,6 +336,8 @@ ffmpeg_send_packet(Decoder &decoder, InputStream &is,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint8_t *output_buffer;
|
||||||
|
int audio_size = 0;
|
||||||
if (got_frame) {
|
if (got_frame) {
|
||||||
audio_size = copy_interleave_frame(codec_context,
|
audio_size = copy_interleave_frame(codec_context,
|
||||||
frame,
|
frame,
|
||||||
|
Loading…
Reference in New Issue
Block a user