~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/dca.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#ifndef AVCODEC_DCA_H
26
26
#define AVCODEC_DCA_H
27
27
 
 
28
#include <stdint.h>
 
29
#include "libavutil/internal.h"
 
30
 
28
31
/** DCA syncwords, also used for bitstream type detection */
29
32
#define DCA_MARKER_RAW_BE 0x7FFE8001
30
33
#define DCA_MARKER_RAW_LE 0xFE7F0180
34
37
/** DCA-HD specific block starts with this marker. */
35
38
#define DCA_HD_MARKER     0x64582025
36
39
 
 
40
extern av_export const uint32_t avpriv_dca_sample_rates[16];
 
41
 
37
42
#endif /* AVCODEC_DCA_H */