mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-06 12:56:17 +00:00
FS-7519: cleanup on mod_avformat
This commit is contained in:
parent
1cbc3c58a5
commit
026ae6945e
@ -1119,12 +1119,15 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa
|
|||||||
|
|
||||||
switch_set_string(file, path);
|
switch_set_string(file, path);
|
||||||
|
|
||||||
|
if (switch_test_flag(handle, SWITCH_FILE_FLAG_READ)) {
|
||||||
|
return SWITCH_STATUS_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
if ((ext = strrchr((char *)path, '.')) == 0) {
|
if ((ext = strrchr((char *)path, '.')) == 0) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Format\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Format\n");
|
||||||
return SWITCH_STATUS_GENERR;
|
return SWITCH_STATUS_GENERR;
|
||||||
} else if (handle->stream_name && (!strcasecmp(handle->stream_name, "rtmp") || !strcasecmp(handle->stream_name, "youtube"))) {
|
} else if (handle->stream_name && (!strcasecmp(handle->stream_name, "rtmp") || !strcasecmp(handle->stream_name, "youtube"))) {
|
||||||
format = "flv";
|
format = "flv";
|
||||||
handle->samplerate = 44100;
|
|
||||||
switch_snprintf(file, sizeof(file), "rtmp://%s", path);
|
switch_snprintf(file, sizeof(file), "rtmp://%s", path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1158,7 +1161,7 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa
|
|||||||
flags |= SWITCH_FOPEN_READ;
|
flags |= SWITCH_FOPEN_READ;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_buffer_create_dynamic(&context->audio_buffer, 512, 512, 1024000);
|
switch_buffer_create_dynamic(&context->audio_buffer, 512, 512, 0);
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "sample rate: %d, channels: %d\n", handle->samplerate, handle->channels);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "sample rate: %d, channels: %d\n", handle->samplerate, handle->channels);
|
||||||
|
|
||||||
@ -1183,6 +1186,14 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa
|
|||||||
avformat_network_init();
|
avformat_network_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (handle->mm.samplerate) {
|
||||||
|
handle->mm.samplerate = handle->samplerate;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!handle->mm.ab) {
|
||||||
|
handle->mm.ab = 128;
|
||||||
|
}
|
||||||
|
|
||||||
if (fmt->video_codec != AV_CODEC_ID_NONE) {
|
if (fmt->video_codec != AV_CODEC_ID_NONE) {
|
||||||
const AVCodecDescriptor *desc;
|
const AVCodecDescriptor *desc;
|
||||||
|
|
||||||
@ -1196,6 +1207,7 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
handle->mm.samplerate = 44100;
|
handle->mm.samplerate = 44100;
|
||||||
handle->mm.ab = 128;
|
handle->mm.ab = 128;
|
||||||
|
|
||||||
@ -1356,7 +1368,7 @@ static switch_status_t av_file_write(switch_file_handle_t *handle, void *data, s
|
|||||||
//inuse = switch_buffer_inuse(context->audio_buffer);
|
//inuse = switch_buffer_inuse(context->audio_buffer);
|
||||||
//switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "inuse: %d samples: %d bytes: %d\n", inuse, context->audio_st.frame->nb_samples, bytes);
|
//switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "inuse: %d samples: %d bytes: %d\n", inuse, context->audio_st.frame->nb_samples, bytes);
|
||||||
|
|
||||||
while ((inuse = switch_buffer_inuse(context->audio_buffer)) >= bytes) {
|
while ((inuse = switch_buffer_inuse(context->audio_buffer)) >= bytes * 5) {
|
||||||
AVPacket pkt = { 0 };
|
AVPacket pkt = { 0 };
|
||||||
int got_packet = 0;
|
int got_packet = 0;
|
||||||
int ret;
|
int ret;
|
||||||
@ -1407,6 +1419,8 @@ static switch_status_t av_file_write(switch_file_handle_t *handle, void *data, s
|
|||||||
switch_goto_status(SWITCH_STATUS_FALSE, end);
|
switch_goto_status(SWITCH_STATUS_FALSE, end);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user