#include <stdio.h>
#include <SDL_types.h>
#include "SDL.h"
#include "libswresample/swresample.h"
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
static Uint8 *audio_chunk;
static Uint32 audio_len;
static Uint8 *audio_pos;
#define MAX_AUDIO_FRAME_SIZE 19200
//音频设备需要更多数据的时候会调用该回调函数
void read_audio_data(void *udata, Uint8 *stream, int len) {
fprintf(stderr, "stream addr:%p, audio_len:%d, len:%d\n",
stream,
audio_len,
len);
//首先使用SDL_memset()将stream中的数据设置为0
SDL_memset(stream, 0, len);
if (audio_len == 0)
return;
len = (len > audio_len ? audio_len : len);
SDL_MixAudio(stream, audio_pos, len, SDL_MIX_MAXVOLUME);
audio_pos += len;
audio_len -= len;
}
int WinMain(int argc, char *argv[]) {
char *file = "C:\\Users\\lenovo\\Desktop\\IMG_5950.mp4";
AVFormatContext *pFormatCtx = NULL; //for opening multi-media file
int i, audioStream = -1;
AVCodecParameters *pCodecParameters = NULL; //codec context
AVCodecContext *pCodecCtx = NULL;
AVCodec *pCodec = NULL; // the codecer
AVFrame *pFrame = NULL;
AVPacket *packet;
uint8_t *out_buffer;
int64_t in_channel_layout;
struct SwrContext *au_convert_ctx;
if (avformat_open_input(&pFormatCtx, file, NULL, NULL) != 0) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Failed to open video file!");
return -1; // Couldn't open file
}
audioStream = av_find_best_stream(pFormatCtx, AVMEDIA_TYPE_AUDIO, -1, -1, NULL, 0);
if (audioStream == -1) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Din't find a video stream!");
return -1;// Didn't find a video stream
}
// Get a pointer to the codec context for the video stream
pCodecParameters = pFormatCtx->streams[audioStream]->codecpar;
// Find the decoder for the video stream
pCodec = avcodec_find_decoder(pCodecParameters->codec_id);
if (pCodec == NULL) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Unsupported codec!\n");
return -1; // Codec not found
}
// Copy context
pCodecCtx = avcodec_alloc_context3(pCodec);
if (avcodec_parameters_to_context(pCodecCtx, pCodecParameters) != 0) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't copy codec context");
return -1;// Error copying codec context
}
// Open codec
if (avcodec_open2(pCodecCtx, pCodec, NULL) < 0) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Failed to open decoder!\n");
return -1; // Could not open codec
}
packet = (AVPacket *) av_malloc(sizeof(AVPacket));
av_init_packet(packet);
pFrame = av_frame_alloc();
uint64_t out_channel_layout = AV_CH_LAYOUT_STEREO;//输出声道
int out_nb_samples = 1024;
enum AVSampleFormat out_sample_fmt = AV_SAMPLE_FMT_S16;//输出格式S16
int out_sample_rate = 44100;
int out_channels = av_get_channel_layout_nb_channels(out_channel_layout);
int out_buffer_size = av_samples_get_buffer_size(NULL, out_channels, out_nb_samples, out_sample_fmt, 1);
out_buffer = (uint8_t *) av_malloc(MAX_AUDIO_FRAME_SIZE * 2);
//Init
if (SDL_Init(SDL_INIT_AUDIO | SDL_INIT_TIMER)) {
printf("Could not initialize SDL - %s\n", SDL_GetError());
return -1;
}
SDL_AudioSpec spec;
spec.freq = out_sample_rate;
spec.format = AUDIO_S16SYS;
spec.channels = out_channels;
spec.silence = 0;
spec.samples = out_nb_samples;
spec.callback = read_audio_data;
spec.userdata = pCodecCtx;
if (SDL_OpenAudio(&spec, NULL) < 0) {
printf("can't open audio.\n");
return -1;
}
in_channel_layout = av_get_default_channel_layout(pCodecCtx->channels);
printf("in_channel_layout --->%d\n", in_channel_layout);
au_convert_ctx = swr_alloc();
au_convert_ctx = swr_alloc_set_opts(au_convert_ctx, out_channel_layout, out_sample_fmt, out_sample_rate,
in_channel_layout, pCodecCtx->sample_fmt, pCodecCtx->sample_rate, 0, NULL);
swr_init(au_convert_ctx);
SDL_PauseAudio(0);
while (av_read_frame(pFormatCtx, packet) >= 0) {
if (packet->stream_index == audioStream) {
avcodec_send_packet(pCodecCtx, packet);
while (avcodec_receive_frame(pCodecCtx, pFrame) == 0) {
swr_convert(au_convert_ctx, &out_buffer, MAX_AUDIO_FRAME_SIZE, (const uint8_t **) pFrame->data,
pFrame->nb_samples); // 转换音频
}
audio_chunk = (Uint8 *) out_buffer;
audio_len = out_buffer_size;
audio_pos = audio_chunk;
while (audio_len > 0) {
SDL_Delay(1);//延迟播放
}
}
av_packet_unref(packet);
}
swr_free(&au_convert_ctx);
SDL_Quit();
return 0;
}
我给插件提问,让它给这段代码添加注释,然后它缓慢地回答,最后提示超时了,但怎么都没法输出后面剩余代码的注释了,输出一部分就超时了。
// 打开解码器
if (avcodec_open2(pCodecCtx, pCodec, NULL) < 0) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Failed to open
...Answer timeout, please wait a minute and retry
输出到这就莫得了。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。