comparison diracdec.c @ 6448:4775a49a6045 libavformat

split raw.c into rawdec.c and rawenc.c
author aurel
date Mon, 30 Aug 2010 23:16:35 +0000
parents 2facedc9f9d7
children
comparison
equal deleted inserted replaced
6447:ef0ad6df55b2 6448:4775a49a6045
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #include "libavutil/intreadwrite.h" 22 #include "libavutil/intreadwrite.h"
23 #include "avformat.h" 23 #include "avformat.h"
24 #include "raw.h" 24 #include "rawdec.h"
25 25
26 static int dirac_probe(AVProbeData *p) 26 static int dirac_probe(AVProbeData *p)
27 { 27 {
28 if (AV_RL32(p->buf) == MKTAG('B', 'B', 'C', 'D')) 28 if (AV_RL32(p->buf) == MKTAG('B', 'B', 'C', 'D'))
29 return AVPROBE_SCORE_MAX; 29 return AVPROBE_SCORE_MAX;