fix unused variable warning
authornu774 <honeycomb77@gmail.com>
Tue, 29 Oct 2013 10:35:57 +0000 (19:35 +0900)
committernu774 <honeycomb77@gmail.com>
Tue, 29 Oct 2013 10:36:22 +0000 (19:36 +0900)
src/m4af.c

index 261ce7192969aa1c6374ac70197b530268f84483..bdcae5f68912dc81abf7a440dbd02ab6a65e968e 100644 (file)
@@ -864,7 +864,6 @@ void m4af_write_sbgp_box(m4af_ctx_t *ctx, uint32_t track_idx)
 static
 void m4af_write_sgpd_box(m4af_ctx_t *ctx, uint32_t track_idx)
 {
-    m4af_track_t *track = &ctx->track[track_idx];
     m4af_write(ctx,
                "\0\0\0\026"  /* size: 22           */
                "sgpd"        /* type               */
@@ -1050,7 +1049,6 @@ void m4af_write_elst_box(m4af_ctx_t *ctx, uint32_t track_idx)
 static
 void m4af_write_edts_box(m4af_ctx_t *ctx, uint32_t track_idx)
 {
-    m4af_track_t *track = &ctx->track[track_idx];
     int64_t pos = m4af_tell(ctx);
     m4af_write(ctx, "\0\0\0\0edts", 8);
     m4af_write_elst_box(ctx, track_idx);
This page took 0.010523 seconds and 4 git commands to generate.