libavformat/avs.c
26376701
 /*
  * AVS demuxer.
  * Copyright (c) 2006  Aurelien Jacobs <aurel@gnuage.org>
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
26376701
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
26376701
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
26376701
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
e5a389a1
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26376701
  */
 
 #include "avformat.h"
 #include "voc.h"
 
 
 typedef struct avs_format {
e998ba4f
     VocDecContext voc;
26376701
     AVStream *st_video;
     AVStream *st_audio;
     int width;
     int height;
     int bits_per_sample;
     int fps;
     int nb_frames;
     int remaining_frame_size;
     int remaining_audio_size;
e998ba4f
 } AvsFormat;
26376701
 
 typedef enum avs_block_type {
696c3068
     AVS_NONE      = 0x00,
26376701
     AVS_VIDEO     = 0x01,
     AVS_AUDIO     = 0x02,
     AVS_PALETTE   = 0x03,
     AVS_GAME_DATA = 0x04,
e998ba4f
 } AvsBlockType;
26376701
 
 static int avs_probe(AVProbeData * p)
 {
     const uint8_t *d;
 
     d = p->buf;
     if (d[0] == 'w' && d[1] == 'W' && d[2] == 0x10 && d[3] == 0)
         return 50;
 
     return 0;
 }
 
6e9651d1
 static int avs_read_header(AVFormatContext * s)
26376701
 {
e998ba4f
     AvsFormat *avs = s->priv_data;
26376701
 
     s->ctx_flags |= AVFMTCTX_NOHEADER;
 
45a8a02a
     avio_skip(s->pb, 4);
b7effd4e
     avs->width = avio_rl16(s->pb);
     avs->height = avio_rl16(s->pb);
     avs->bits_per_sample = avio_rl16(s->pb);
     avs->fps = avio_rl16(s->pb);
     avs->nb_frames = avio_rl32(s->pb);
26376701
     avs->remaining_frame_size = 0;
     avs->remaining_audio_size = 0;
 
     avs->st_video = avs->st_audio = NULL;
 
     if (avs->width != 318 || avs->height != 198)
         av_log(s, AV_LOG_ERROR, "This avs pretend to be %dx%d "
                "when the avs format is supposed to be 318x198 only.\n",
                avs->width, avs->height);
 
     return 0;
 }
 
 static int
 avs_read_video_packet(AVFormatContext * s, AVPacket * pkt,
e998ba4f
                       AvsBlockType type, int sub_type, int size,
26376701
                       uint8_t * palette, int palette_size)
 {
e998ba4f
     AvsFormat *avs = s->priv_data;
26376701
     int ret;
 
     ret = av_new_packet(pkt, size + palette_size);
     if (ret < 0)
         return ret;
 
     if (palette_size) {
         pkt->data[0] = 0x00;
         pkt->data[1] = 0x03;
         pkt->data[2] = palette_size & 0xFF;
         pkt->data[3] = (palette_size >> 8) & 0xFF;
         memcpy(pkt->data + 4, palette, palette_size - 4);
     }
 
     pkt->data[palette_size + 0] = sub_type;
     pkt->data[palette_size + 1] = type;
     pkt->data[palette_size + 2] = size & 0xFF;
     pkt->data[palette_size + 3] = (size >> 8) & 0xFF;
b7effd4e
     ret = avio_read(s->pb, pkt->data + palette_size + 4, size - 4) + 4;
26376701
     if (ret < size) {
         av_free_packet(pkt);
6f3e0b21
         return AVERROR(EIO);
26376701
     }
 
     pkt->size = ret + palette_size;
     pkt->stream_index = avs->st_video->index;
     if (sub_type == 0)
cc947f04
         pkt->flags |= AV_PKT_FLAG_KEY;
26376701
 
     return 0;
 }
 
 static int avs_read_audio_packet(AVFormatContext * s, AVPacket * pkt)
 {
e998ba4f
     AvsFormat *avs = s->priv_data;
26376701
     int ret, size;
 
a2704c97
     size = avio_tell(s->pb);
167f3b8d
     ret = ff_voc_get_packet(s, pkt, avs->st_audio, avs->remaining_audio_size);
a2704c97
     size = avio_tell(s->pb) - size;
26376701
     avs->remaining_audio_size -= size;
 
6f3e0b21
     if (ret == AVERROR(EIO))
26376701
         return 0;    /* this indicate EOS */
     if (ret < 0)
         return ret;
 
     pkt->stream_index = avs->st_audio->index;
cc947f04
     pkt->flags |= AV_PKT_FLAG_KEY;
26376701
 
     return size;
 }
 
 static int avs_read_packet(AVFormatContext * s, AVPacket * pkt)
 {
e998ba4f
     AvsFormat *avs = s->priv_data;
26376701
     int sub_type = 0, size = 0;
e998ba4f
     AvsBlockType type = AVS_NONE;
26376701
     int palette_size = 0;
     uint8_t palette[4 + 3 * 256];
     int ret;
 
     if (avs->remaining_audio_size > 0)
         if (avs_read_audio_packet(s, pkt) > 0)
             return 0;
 
     while (1) {
         if (avs->remaining_frame_size <= 0) {
b7effd4e
             if (!avio_rl16(s->pb))    /* found EOF */
6f3e0b21
                 return AVERROR(EIO);
b7effd4e
             avs->remaining_frame_size = avio_rl16(s->pb) - 4;
26376701
         }
 
         while (avs->remaining_frame_size > 0) {
b7effd4e
             sub_type = avio_r8(s->pb);
             type = avio_r8(s->pb);
             size = avio_rl16(s->pb);
1cce7def
             if (size < 4)
                 return AVERROR_INVALIDDATA;
26376701
             avs->remaining_frame_size -= size;
 
             switch (type) {
             case AVS_PALETTE:
5d44c061
                 if (size - 4 > sizeof(palette))
                     return AVERROR_INVALIDDATA;
b7effd4e
                 ret = avio_read(s->pb, palette, size - 4);
26376701
                 if (ret < size - 4)
6f3e0b21
                     return AVERROR(EIO);
26376701
                 palette_size = size;
                 break;
 
             case AVS_VIDEO:
                 if (!avs->st_video) {
84ad31ff
                     avs->st_video = avformat_new_stream(s, NULL);
26376701
                     if (avs->st_video == NULL)
769e10f0
                         return AVERROR(ENOMEM);
72415b2a
                     avs->st_video->codec->codec_type = AVMEDIA_TYPE_VIDEO;
36ef5369
                     avs->st_video->codec->codec_id = AV_CODEC_ID_AVS;
26376701
                     avs->st_video->codec->width = avs->width;
                     avs->st_video->codec->height = avs->height;
dd1c8f3e
                     avs->st_video->codec->bits_per_coded_sample=avs->bits_per_sample;
26376701
                     avs->st_video->nb_frames = avs->nb_frames;
aba232cf
 #if FF_API_R_FRAME_RATE
                     avs->st_video->r_frame_rate =
 #endif
                     avs->st_video->avg_frame_rate = (AVRational){avs->fps, 1};
26376701
                 }
                 return avs_read_video_packet(s, pkt, type, sub_type, size,
                                              palette, palette_size);
 
             case AVS_AUDIO:
                 if (!avs->st_audio) {
84ad31ff
                     avs->st_audio = avformat_new_stream(s, NULL);
26376701
                     if (avs->st_audio == NULL)
769e10f0
                         return AVERROR(ENOMEM);
72415b2a
                     avs->st_audio->codec->codec_type = AVMEDIA_TYPE_AUDIO;
26376701
                 }
                 avs->remaining_audio_size = size - 4;
                 size = avs_read_audio_packet(s, pkt);
                 if (size != 0)
                     return size;
                 break;
 
             default:
45a8a02a
                 avio_skip(s->pb, size - 4);
26376701
             }
         }
     }
 }
 
 static int avs_read_close(AVFormatContext * s)
 {
     return 0;
 }
 
c6610a21
 AVInputFormat ff_avs_demuxer = {
dfc2c4d9
     .name           = "avs",
6774247a
     .long_name      = NULL_IF_CONFIG_SMALL("AVS"),
dfc2c4d9
     .priv_data_size = sizeof(AvsFormat),
     .read_probe     = avs_probe,
     .read_header    = avs_read_header,
     .read_packet    = avs_read_packet,
     .read_close     = avs_read_close,
26376701
 };