comparison amr.c @ 1332:7474cc6383d4 libavformat

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 996ce2a68147
children 0899bfe4105c
comparison
equal deleted inserted replaced
1331:d5d90b6f384c 1332:7474cc6383d4
23 Only mono files are supported. 23 Only mono files are supported.
24 24
25 */ 25 */
26 #include "avformat.h" 26 #include "avformat.h"
27 27
28 static const unsigned char AMR_header [] = "#!AMR\n"; 28 static const char AMR_header [] = "#!AMR\n";
29 static const unsigned char AMRWB_header [] = "#!AMR-WB\n"; 29 static const char AMRWB_header [] = "#!AMR-WB\n";
30 30
31 #ifdef CONFIG_MUXERS 31 #ifdef CONFIG_MUXERS
32 static int amr_write_header(AVFormatContext *s) 32 static int amr_write_header(AVFormatContext *s)
33 { 33 {
34 ByteIOContext *pb = &s->pb; 34 ByteIOContext *pb = &s->pb;