Changeset 7e4e010b in ffmpeg
- Timestamp:
- Jan 9, 2015, 2:44:31 PM (10 years ago)
- Branches:
- master
- Children:
- 1cf0f27, 51da7d02
- Parents:
- 2dbd35b0
- git-author:
- Anton Khirnov <anton@khirnov.net> (01/01/15 16:56:56)
- git-committer:
- Anton Khirnov <anton@khirnov.net> (01/09/15 14:44:31)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libavcodec/mpeg4audio.c
r2dbd35b0 r7e4e010b 81 81 { 82 82 GetBitContext gb; 83 int specific_config_bitindex ;83 int specific_config_bitindex, ret; 84 84 85 init_get_bits(&gb, buf, bit_size); 85 ret = init_get_bits(&gb, buf, bit_size); 86 if (ret < 0) 87 return ret; 86 88 c->object_type = get_object_type(&gb); 87 89 c->sample_rate = get_sample_rate(&gb, &c->sampling_index);
Note:
See TracChangeset
for help on using the changeset viewer.