On 15/04/14 17:07, Vittorio Giovara wrote: I'd name it differently.
> --- > libavformat/Makefile | 1 + > libavformat/dumputils.c | 284 > ++++++++++++++++++++++++++++++++++++++++++++++++ > libavformat/utils.c | 247 ----------------------------------------- > 3 files changed, 285 insertions(+), 247 deletions(-) > create mode 100644 libavformat/dumputils.c > > diff --git a/libavformat/Makefile b/libavformat/Makefile > index a7f03f9..0bd1d4e 100644 > --- a/libavformat/Makefile > +++ b/libavformat/Makefile > @@ -9,6 +9,7 @@ OBJS = allformats.o \ > avio.o \ > aviobuf.o \ > cutils.o \ > + dumputils.o \ dump.o or prettyprint.o > format.o \ > id3v1.o \ > id3v2.o \ > diff --git a/libavformat/dumputils.c b/libavformat/dumputils.c > new file mode 100644 > index 0000000..9762d2a > --- /dev/null > +++ b/libavformat/dumputils.c > @@ -0,0 +1,284 @@ > +/* > + * various utility functions for use within Libav Various pretty-printing functions > + * > + * This file is part of Libav. > + * > + * Libav is free software; you can redistribute it and/or > + * modify it under the terms of the GNU Lesser General Public > + * License as published by the Free Software Foundation; either > + * version 2.1 of the License, or (at your option) any later version. > + * > + * Libav is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > + * Lesser General Public License for more details. > + * > + * You should have received a copy of the GNU Lesser General Public > + * License along with Libav; if not, write to the Free Software > + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 > USA > + */ > + The rest seems an harmless codemove. lu _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
