Commit 2b90e4ec authored by tmmm's avatar tmmm

send the chunk preamble bytes to the respective decoders; Id RoQ demuxer

now works correctly


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2303 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c1714564
......@@ -174,8 +174,6 @@ static int roq_read_header(AVFormatContext *s,
st->codec.bits_per_sample;
st->codec.block_align = st->codec.channels * st->codec.bits_per_sample;
}
printf (" video is %d x %d, audio is %d channels\n",
roq->width, roq->height, roq->audio_channels);
return 0;
}
......@@ -261,7 +259,8 @@ static int roq_read_packet(AVFormatContext *s,
roq->audio_frame_count += (chunk_size / roq->audio_channels);
}
ret = get_buffer(pb, pkt->data, chunk_size);
ret = get_buffer(pb, pkt->data + RoQ_CHUNK_PREAMBLE_SIZE,
chunk_size);
if (ret != chunk_size)
ret = -EIO;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment