[FFmpeg-cvslog] r25531 - trunk/libavformat/img2.c

Ramiro Polla ramiro.polla
Thu Oct 21 03:44:40 CEST 2010


On Wed, Oct 20, 2010 at 10:57 PM, skal <subversion at mplayerhq.hu> wrote:
[...]
> @@ -413,56 +413,51 @@ static int img_write_packet(AVFormatCont
> ?/* input */
> ?#if CONFIG_IMAGE2_DEMUXER
> ?AVInputFormat image2_demuxer = {
> - ? ?"image2",
> - ? ?NULL_IF_CONFIG_SMALL("image2 sequence"),
> - ? ?sizeof(VideoData),
> - ? ?image_probe,
> - ? ?img_read_header,
> - ? ?img_read_packet,
> - ? ?NULL,
> - ? ?NULL,
> - ? ?NULL,
> - ? ?AVFMT_NOFILE,
> + ? ?.name = "image2",
> + ? ?.long_name = NULL_IF_CONFIG_SMALL("image2 sequence"),
> + ? ?.priv_data_size = sizeof(VideoData),
> + ? ?.read_probe = read_probe,
> + ? ?.read_header = read_header,
> + ? ?.read_packet = read_packet,
> + ? ?.flags = AVFMT_NOFILE,
> ?};

Sorry for not commenting earlier, but it's quite handy while debugging
to have a more descriptive name (img2_read_header for example).
Otherwise you'll get only "read_header" which could be from many other
demuxers.



More information about the ffmpeg-cvslog mailing list