Browse Source

Correctly map ADTS profile_ObjectType to MPEG-4 AOT

Patch by Alex Converse ( alex converse gmail com )

Originally committed as revision 17196 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alex Converse Robert Swain 17 years ago
parent
commit
4eb311d01c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/aac_parser.c

+ 1
- 1
libavcodec/aac_parser.c View File

@@ -62,7 +62,7 @@ int ff_aac_parse_header(GetBitContext *gbc, AACADTSHeaderInfo *hdr)
skip_bits(gbc, 11); /* adts_buffer_fullness */
rdb = get_bits(gbc, 2); /* number_of_raw_data_blocks_in_frame */

hdr->object_type = aot;
hdr->object_type = aot + 1;
hdr->chan_config = ch;
hdr->crc_absent = crc_abs;
hdr->num_aac_frames = rdb + 1;


Loading…
Cancel
Save