aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ac3dec.c
diff options
context:
space:
mode:
authorBartlomiej Wolowiec <bartek.wolowiec@gmail.com>2008-03-28 20:42:55 +0000
committerBartlomiej Wolowiec <bartek.wolowiec@gmail.com>2008-03-28 20:42:55 +0000
commit79b25a27b823f8ca7c21b00e5ec381507a3ba4a0 (patch)
tree55d3b1ef9e90cc59314727e3aa4ec0957cfc408c /libavcodec/ac3dec.c
parentbe1e2a2bfa592ff14355c6b97e90c530e2c0fcc0 (diff)
downloadffmpeg-79b25a27b823f8ca7c21b00e5ec381507a3ba4a0.tar.gz
change name from stream type to frame type in AC3 code
Originally committed as revision 12623 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r--libavcodec/ac3dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index a1bbef256c..fc12f347fb 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -1169,8 +1169,8 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
case AC3_PARSE_ERROR_FRAME_SIZE:
av_log(avctx, AV_LOG_ERROR, "invalid frame size\n");
break;
- case AC3_PARSE_ERROR_STREAM_TYPE:
- av_log(avctx, AV_LOG_ERROR, "invalid stream type\n");
+ case AC3_PARSE_ERROR_FRAME_TYPE:
+ av_log(avctx, AV_LOG_ERROR, "invalid frame type\n");
break;
default:
av_log(avctx, AV_LOG_ERROR, "invalid header\n");