当前位置:   article > 正文

AVIO自定义读写

AVIO自定义读写
  • AVIO自定义读写模式
    传统的从FLV文件中读取H264、AAC包都直接采用av_read_frame进行单个包读取,按H264或AAC的编码规则。假如我并不关心到来的数据是不是逐个包,只要是连续的就可以,读取到的数据也可以是非整个包。
    AVIO正是起这样一个作用,不需要保证每次发来的数据一定要是完整的数据压缩包,数据只需要是连续的就可以。他是这样做的:
format_ctx->pb = avio_ctx;通过在媒体流上下文中指定AVIO上下文,在AVIO上下文中指定回调函数。当打开媒体流并调用av_read_frame就会调用read_packet。
  • 1

完整代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <libavutil/frame.h>
#include <libavutil/mem.h>

#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>

#define AVIO_BUF_SIZE 20480

static void print_sample_format(const AVFrame* frame)
{
    printf("samplerate:%uHz\n",frame->sample_rate);
    printf("channel:%u\n",frame->channels);
    printf("format:%u\n",frame->format);
}

static int read_packet(void* opaque,uint8_t* buf,int buf_size)
{
    FILE* in_file = (FILE*)opaque;
    int read_size = fread(buf,1,buf_size,in_file);
    printf("read packet size is:%u,buf_size is:%u\n",read_size,buf_size);
}

static void Decode(AVCodecContext *decode_ctx, AVPacket *packet, AVFrame *frame, FILE *outfile)
{
    int result = avcodec_send_packet(decode_ctx,packet);
    while(result >= 0)
    {
        avcodec_receive_frame(decode_ctx,frame);
        int data_size = av_get_bytes_per_sample(decode_ctx->sample_fmt);

        for(int i = 0; i < frame->nb_samples; i++)
        {
            for(int ch = 0; ch < decode_ctx->channels; ch++)
            {
                fwrite(frame->data[ch] + data_size *i, 1, data_size, outfile);
            }
        }
    }
}

int main()
{
    printf("Hello World!\n");
    const char *in_file_name = "/home/yx/media_file/believe.mp4";
    const char *out_file_name = "/home/yx/media_file/believe.aac";
    FILE *in_file = NULL;
    FILE *out_file = NULL;

    in_file = fopen(in_file_name, "rb");
    out_file = fopen(out_file_name, "wb");

    uint8_t *io_buffer = av_malloc(AVIO_BUF_SIZE);
    AVIOContext *avio_ctx = avio_alloc_context(io_buffer, AVIO_BUF_SIZE, 0, (void *)in_file, read_packet, NULL, NULL);
    AVFormatContext *format_ctx = avformat_alloc_context();
    format_ctx->pb = avio_ctx;                              // 回调函数
    avformat_open_input(&format_ctx, NULL, NULL, NULL);

    AVCodec *codec = avcodec_find_decoder(AV_CODEC_ID_AAC);
    AVCodecContext *codec_ctx = avcodec_alloc_context3(codec);
    avcodec_open2(codec_ctx, codec, NULL);
    AVPacket *packet = av_packet_alloc();
    AVFrame *frame = av_frame_alloc();

    while (1)
    {
        if(av_read_frame(format_ctx, packet) < 0)           // read_packet作为回调函数会触发
            break;
        Decode(codec_ctx, packet, frame, out_file);         // 不用添加ADTS头部,直接写到输出文件
    }

    printf("read file finish\n");
    Decode(codec_ctx, NULL, frame, out_file);

    fclose(in_file);
    fclose(out_file);

    av_free(io_buffer);
    av_frame_free(frame);
    av_packet_free(packet);

    avformat_close_input(&format_ctx);
    avcodec_free_context(&codec_ctx);

    printf("main finish\n");
    return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/796741
推荐阅读
相关标签
  

闽ICP备14008679号