~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/libvorbisenc.c

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
typedef struct OggVorbisEncContext {
43
43
    AVClass *av_class;                  /**< class for AVOptions            */
44
 
    AVFrame frame;
45
44
    vorbis_info vi;                     /**< vorbis_info used during init   */
46
45
    vorbis_dsp_state vd;                /**< DSP state used for analysis    */
47
46
    vorbis_block vb;                    /**< vorbis_block used for analysis */