~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/mpegaudiodecheader.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
/* header decoding. MUST check the header before because no
51
51
   consistency check is done there. Return 1 if free format found and
52
52
   that the frame size must be computed externally */
53
 
int ff_mpegaudio_decode_header(MPADecodeHeader *s, uint32_t header);
 
53
int avpriv_mpegaudio_decode_header(MPADecodeHeader *s, uint32_t header);
54
54
 
55
55
/* useful helper to get mpeg audio stream infos. Return -1 if error in
56
56
   header, otherwise the coded frame size in bytes */
57
 
int ff_mpa_decode_header(AVCodecContext *avctx, uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bitrate);
 
57
int avpriv_mpa_decode_header(AVCodecContext *avctx, uint32_t head, int *sample_rate, int *channels, int *frame_size, int *bitrate);
58
58
 
59
59
/* fast header check for resync */
60
60
static inline int ff_mpa_check_header(uint32_t header){