2011/7/8 Måns Rullgård <[email protected]>

> Alex Converse <[email protected]> writes:
>
> > +        version          = AV_RL32(p + 28);
> > +        //header_size      = AV_RL32(p + 32);
> > +        sample_rate      = AV_RL32(p + 36);
> > +        nb_channels      = AV_RL32(p + 40);
> > +        frame_size       = AV_RL32(p + 44);
> > +        overlap          = AV_RL32(p + 48);
> > +        //bytes_per_packet = AV_RL32(p + 52);
> > +        extra_headers    = AV_RL32(p + 56);
>
> What's with the commented out lines?
>

They are fields we don't need to read. Other options: completely remove
them, add av_unused vars to read them.

Personally, I like having them documented.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to