Browse Source

Fix info packet type, found by oded as well as the new pedantic const

warnings.

Originally committed as revision 11843 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
0fca8bc835
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavformat/nutdec.c

+ 3
- 2
libavformat/nutdec.c View File

@@ -360,7 +360,7 @@ static int decode_info_header(NUTContext *nut){
int chapter_id, i; int chapter_id, i;
int64_t value, end; int64_t value, end;
char name[256], str_value[1024], type_str[256]; char name[256], str_value[1024], type_str[256];
const char *type= type_str;
const char *type;


end= get_packetheader(nut, bc, 1, INFO_STARTCODE); end= get_packetheader(nut, bc, 1, INFO_STARTCODE);
end += url_ftell(bc); end += url_ftell(bc);
@@ -377,7 +377,8 @@ static int decode_info_header(NUTContext *nut){
type= "UTF-8"; type= "UTF-8";
get_str(bc, str_value, sizeof(str_value)); get_str(bc, str_value, sizeof(str_value));
}else if(value == -2){ }else if(value == -2){
get_str(bc, type, sizeof(type));
get_str(bc, type_str, sizeof(type_str));
type= type_str;
get_str(bc, str_value, sizeof(str_value)); get_str(bc, str_value, sizeof(str_value));
}else if(value == -3){ }else if(value == -3){
type= "s"; type= "s";


Loading…
Cancel
Save