goto到标签中间,不能有初始化的动作
错误
AVPacket* packet = av_packet_alloc();
正确
AVPacket* packet;
packet = av_packet_alloc();