mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
ffplay: simplify audio decoding
Also use negative stream_index for signaling obsolete audio packets. Using the size alone is not enough, because size is 0 for null packets as well. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
74561680cd
commit
782e06e292
20
ffplay.c
20
ffplay.c
@ -2128,8 +2128,6 @@ static int audio_decode_frame(VideoState *is)
|
|||||||
int64_t dec_channel_layout;
|
int64_t dec_channel_layout;
|
||||||
int got_frame;
|
int got_frame;
|
||||||
av_unused double audio_clock0;
|
av_unused double audio_clock0;
|
||||||
int new_packet = 0;
|
|
||||||
int flush_complete = 0;
|
|
||||||
int wanted_nb_samples;
|
int wanted_nb_samples;
|
||||||
AVRational tb;
|
AVRational tb;
|
||||||
int ret;
|
int ret;
|
||||||
@ -2137,7 +2135,7 @@ static int audio_decode_frame(VideoState *is)
|
|||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
/* NOTE: the audio packet can contain several frames */
|
/* NOTE: the audio packet can contain several frames */
|
||||||
while (pkt_temp->size > 0 || (!pkt_temp->data && new_packet) || is->audio_buf_frames_pending) {
|
while (pkt_temp->stream_index != -1 || is->audio_buf_frames_pending) {
|
||||||
if (!is->frame) {
|
if (!is->frame) {
|
||||||
if (!(is->frame = avcodec_alloc_frame()))
|
if (!(is->frame = avcodec_alloc_frame()))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
@ -2153,9 +2151,6 @@ static int audio_decode_frame(VideoState *is)
|
|||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (!is->audio_buf_frames_pending) {
|
if (!is->audio_buf_frames_pending) {
|
||||||
if (flush_complete)
|
|
||||||
break;
|
|
||||||
new_packet = 0;
|
|
||||||
len1 = avcodec_decode_audio4(dec, is->frame, &got_frame, pkt_temp);
|
len1 = avcodec_decode_audio4(dec, is->frame, &got_frame, pkt_temp);
|
||||||
if (len1 < 0) {
|
if (len1 < 0) {
|
||||||
/* if error, we skip the frame */
|
/* if error, we skip the frame */
|
||||||
@ -2165,13 +2160,11 @@ static int audio_decode_frame(VideoState *is)
|
|||||||
|
|
||||||
pkt_temp->data += len1;
|
pkt_temp->data += len1;
|
||||||
pkt_temp->size -= len1;
|
pkt_temp->size -= len1;
|
||||||
|
if (pkt_temp->data && pkt_temp->size <= 0 || !pkt_temp->data && !got_frame)
|
||||||
|
pkt_temp->stream_index = -1;
|
||||||
|
|
||||||
if (!got_frame) {
|
if (!got_frame)
|
||||||
/* stop sending empty packets if the decoder is finished */
|
|
||||||
if (!pkt_temp->data && dec->codec->capabilities & CODEC_CAP_DELAY)
|
|
||||||
flush_complete = 1;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
|
|
||||||
tb = (AVRational){1, is->frame->sample_rate};
|
tb = (AVRational){1, is->frame->sample_rate};
|
||||||
if (is->frame->pts != AV_NOPTS_VALUE)
|
if (is->frame->pts != AV_NOPTS_VALUE)
|
||||||
@ -2317,6 +2310,7 @@ static int audio_decode_frame(VideoState *is)
|
|||||||
if (pkt->data)
|
if (pkt->data)
|
||||||
av_free_packet(pkt);
|
av_free_packet(pkt);
|
||||||
memset(pkt_temp, 0, sizeof(*pkt_temp));
|
memset(pkt_temp, 0, sizeof(*pkt_temp));
|
||||||
|
pkt_temp->stream_index = -1;
|
||||||
|
|
||||||
if (is->audioq.abort_request) {
|
if (is->audioq.abort_request) {
|
||||||
return -1;
|
return -1;
|
||||||
@ -2326,12 +2320,11 @@ static int audio_decode_frame(VideoState *is)
|
|||||||
SDL_CondSignal(is->continue_read_thread);
|
SDL_CondSignal(is->continue_read_thread);
|
||||||
|
|
||||||
/* read next packet */
|
/* read next packet */
|
||||||
if ((new_packet = packet_queue_get(&is->audioq, pkt, 1, &is->audio_pkt_temp_serial)) < 0)
|
if ((packet_queue_get(&is->audioq, pkt, 1, &is->audio_pkt_temp_serial)) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (pkt->data == flush_pkt.data) {
|
if (pkt->data == flush_pkt.data) {
|
||||||
avcodec_flush_buffers(dec);
|
avcodec_flush_buffers(dec);
|
||||||
flush_complete = 0;
|
|
||||||
is->audio_buf_frames_pending = 0;
|
is->audio_buf_frames_pending = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2541,6 +2534,7 @@ static int stream_component_open(VideoState *is, int stream_index)
|
|||||||
|
|
||||||
memset(&is->audio_pkt, 0, sizeof(is->audio_pkt));
|
memset(&is->audio_pkt, 0, sizeof(is->audio_pkt));
|
||||||
memset(&is->audio_pkt_temp, 0, sizeof(is->audio_pkt_temp));
|
memset(&is->audio_pkt_temp, 0, sizeof(is->audio_pkt_temp));
|
||||||
|
is->audio_pkt_temp.stream_index = -1;
|
||||||
|
|
||||||
is->audio_stream = stream_index;
|
is->audio_stream = stream_index;
|
||||||
is->audio_st = ic->streams[stream_index];
|
is->audio_st = ic->streams[stream_index];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user