summaryrefslogtreecommitdiff
path: root/libavcodec/aac_parser.c
diff options
context:
space:
mode:
authorBartlomiej Wolowiec <bartek.wolowiec@gmail.com>2008-03-24 22:21:22 +0000
committerBartlomiej Wolowiec <bartek.wolowiec@gmail.com>2008-03-24 22:21:22 +0000
commit6808a8eaf2796ac64df1a760e928664d32a994e2 (patch)
tree6ad2bbf54c6c199a3a6a6ceb2831164a9f666743 /libavcodec/aac_parser.c
parent4e6eeaf01968a22748e27590d29f343323cca9c6 (diff)
using EAC3_STREAM_TYPE_* instead of numbers
Originally committed as revision 12571 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac_parser.c')
-rw-r--r--libavcodec/aac_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac_parser.c b/libavcodec/aac_parser.c
index 4e8ddc1dfb..7e6678d189 100644
--- a/libavcodec/aac_parser.c
+++ b/libavcodec/aac_parser.c
@@ -83,7 +83,7 @@ static int aac_sync(AACAC3ParseContext *hdr_info)
static av_cold int aac_parse_init(AVCodecParserContext *s1)
{
AACAC3ParseContext *s = s1->priv_data;
- s->stream_type = 0;
+ s->stream_type = EAC3_STREAM_TYPE_INDEPENDENT;
s->inbuf_ptr = s->inbuf;
s->header_size = AAC_HEADER_SIZE;
s->sync = aac_sync;