1
0
mirror of https://github.com/nu774/fdkaac.git synced 2025-06-05 23:29:14 +02:00

2 Commits

Author SHA1 Message Date
bd8c9a5d15 bump version 2013-10-22 19:50:35 +09:00
91ef87b610 fixed bogus sgpd written on --gapless-mode=1 and 2 2013-10-22 19:49:01 +09:00
3 changed files with 12 additions and 7 deletions

View File

@ -1,7 +1,13 @@
2013-10-21 nu774 <honeycomb77@gmail.com> 2013-10-22 nu774 <honeycomb77@gmail.com>
* bump version [HEAD] * bump version [HEAD]
* fixed bogus sgpd written on --gapless-mode=1 and 2
2013-10-21 nu774 <honeycomb77@gmail.com>
* bump version [v0.3.2]
2013-10-20 nu774 <honeycomb77@gmail.com> 2013-10-20 nu774 <honeycomb77@gmail.com>
* reimplement int16 conversion as pcm_reader * reimplement int16 conversion as pcm_reader
@ -12,7 +18,7 @@
2013-10-19 nu774 <honeycomb77@gmail.com> 2013-10-19 nu774 <honeycomb77@gmail.com>
* update ChangeLog and git2changelog.py [origin/master] * update ChangeLog and git2changelog.py
2013-10-18 nu774 <honeycomb77@gmail.com> 2013-10-18 nu774 <honeycomb77@gmail.com>

View File

@ -866,15 +866,14 @@ void m4af_write_sgpd_box(m4af_ctx_t *ctx, uint32_t track_idx)
{ {
m4af_track_t *track = &ctx->track[track_idx]; m4af_track_t *track = &ctx->track[track_idx];
m4af_write(ctx, m4af_write(ctx,
"\0\0\0\032" /* size */ "\0\0\0\026" /* size: 22 */
"sgpd" /* type */ "sgpd" /* type */
"\001" /* version */ "\0" /* version */
"\0\0\0" /* flags */ "\0\0\0" /* flags */
"roll" /* grouping_type */ "roll" /* grouping_type */
"\0\0\0\002" /* default_length: 2 */
"\0\0\0\001" /* entry_count: 1 */ "\0\0\0\001" /* entry_count: 1 */
"\377\377" /* payload_data: -1 */ "\377\377" /* payload_data: -1 */
, 26); , 22);
} }
static static

View File

@ -1,4 +1,4 @@
#ifndef VERSION_H #ifndef VERSION_H
#define VERSION_H #define VERSION_H
const char *fdkaac_version = "0.3.2"; const char *fdkaac_version = "0.3.3";
#endif #endif