]> granicus.if.org Git - openjpeg/commitdiff
remove deprecated v1 style function jp2_write_ftyp
authorMickael Savinaud <savmickael@users.noreply.github.com>
Mon, 13 Aug 2012 09:36:53 +0000 (09:36 +0000)
committerMickael Savinaud <savmickael@users.noreply.github.com>
Mon, 13 Aug 2012 09:36:53 +0000 (09:36 +0000)
libopenjpeg/jp2.c

index 89543f0957a2cd35325e34d727061d6b730f50f1..ebbc419adc58d44d9c77adb5009ecfe9bc9e126b 100644 (file)
@@ -109,14 +109,6 @@ static opj_bool opj_jp2_read_cdef( opj_jp2_v2_t * jp2,
 static OPJ_BYTE * opj_jp2_write_colr(   opj_jp2_v2_t *jp2, 
                                                                            OPJ_UINT32 * p_nb_bytes_written );
 
-/**
-Write the FTYP box - File type box
-@param jp2 JP2 handle
-@param cio Output buffer stream
-*/
-static void jp2_write_ftyp(opj_jp2_t *jp2, opj_cio_t *cio);
-
-
 /**
  * Writes a FTYP box - File type box
  *
@@ -1368,27 +1360,6 @@ opj_bool opj_jp2_write_jp2h(opj_jp2_v2_t *jp2,
        return l_result;
 }
 
-static void jp2_write_ftyp(opj_jp2_t *jp2, opj_cio_t *cio) {
-       unsigned int i;
-       opj_jp2_box_t box;
-
-       box.init_pos = cio_tell(cio);
-       cio_skip(cio, 4);
-       cio_write(cio, JP2_FTYP, 4);            /* FTYP */
-
-       cio_write(cio, jp2->brand, 4);          /* BR */
-       cio_write(cio, jp2->minversion, 4);     /* MinV */
-
-       for (i = 0; i < jp2->numcl; i++) {
-               cio_write(cio, jp2->cl[i], 4);  /* CL */
-       }
-
-       box.length = cio_tell(cio) - box.init_pos;
-       cio_seek(cio, box.init_pos);
-       cio_write(cio, box.length, 4);  /* L */
-       cio_seek(cio, box.init_pos + box.length);
-}
-
 /**
  * Writes a FTYP box - File type box
  *