Make g729dec.c:decode_frame() return AVERROR_INVALIDDATA rather than

AVERROR_NOFMT in case of invalid / unknown packet size.

Originally committed as revision 22624 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2010-03-21 16:34:01 +00:00
parent e99f8d32e2
commit e4445e9c78
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
av_log(avctx, AV_LOG_DEBUG, "Packet type: %s\n", "G.729D @ 6.4kbit/s");
} else {
av_log(avctx, AV_LOG_ERROR, "Packet size %d is unknown.\n", buf_size);
return (AVERROR_NOFMT);
return AVERROR_INVALIDDATA;
}
for (i=0; i < buf_size; i++)