Mercurial > libavformat.hg
comparison soxdec.c @ 6445:4aaed59641ff libavformat
move pcm demuxers to their own file
| author | aurel |
|---|---|
| date | Mon, 30 Aug 2010 21:17:34 +0000 |
| parents | 178de7695c6c |
| children |
comparison
equal
deleted
inserted
replaced
| 6444:505f0bb17a5d | 6445:4aaed59641ff |
|---|---|
| 29 * @sa http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format | 29 * @sa http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #include "libavutil/intreadwrite.h" | 32 #include "libavutil/intreadwrite.h" |
| 33 #include "avformat.h" | 33 #include "avformat.h" |
| 34 #include "raw.h" | 34 #include "pcm.h" |
| 35 #include "sox.h" | 35 #include "sox.h" |
| 36 | 36 |
| 37 static int sox_probe(AVProbeData *p) | 37 static int sox_probe(AVProbeData *p) |
| 38 { | 38 { |
| 39 if (AV_RL32(p->buf) == SOX_TAG || AV_RB32(p->buf) == SOX_TAG) | 39 if (AV_RL32(p->buf) == SOX_TAG || AV_RB32(p->buf) == SOX_TAG) |
