Browse Source

id3v2: remove pointless casts

tags/n0.9
Anton Khirnov 14 years ago
parent
commit
60df6b0048
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavformat/id3v2.c

+ 3
- 3
libavformat/id3v2.c View File

@@ -111,7 +111,7 @@ static int decode_str(AVFormatContext *s, AVIOContext *pb, int encoding,
case ID3v2_ENCODING_UTF16BOM: case ID3v2_ENCODING_UTF16BOM:
if ((left -= 2) < 0) { if ((left -= 2) < 0) {
av_log(s, AV_LOG_ERROR, "Cannot read BOM value, input too short\n"); av_log(s, AV_LOG_ERROR, "Cannot read BOM value, input too short\n");
avio_close_dyn_buf(dynbuf, (uint8_t **)dst);
avio_close_dyn_buf(dynbuf, dst);
av_freep(dst); av_freep(dst);
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
@@ -122,7 +122,7 @@ static int decode_str(AVFormatContext *s, AVIOContext *pb, int encoding,
break; break;
default: default:
av_log(s, AV_LOG_ERROR, "Incorrect BOM value\n"); av_log(s, AV_LOG_ERROR, "Incorrect BOM value\n");
avio_close_dyn_buf(dynbuf, (uint8_t **)dst);
avio_close_dyn_buf(dynbuf, dst);
av_freep(dst); av_freep(dst);
*maxread = left; *maxread = left;
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
@@ -152,7 +152,7 @@ static int decode_str(AVFormatContext *s, AVIOContext *pb, int encoding,
if (ch) if (ch)
avio_w8(dynbuf, 0); avio_w8(dynbuf, 0);


avio_close_dyn_buf(dynbuf, (uint8_t **)dst);
avio_close_dyn_buf(dynbuf, dst);
*maxread = left; *maxread = left;


return 0; return 0;


Loading…
Cancel
Save