mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Removing dead code, fixes CID4 RUN2.
Originally committed as revision 13507 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
408f43cb36
commit
e88b67de6c
@ -253,11 +253,9 @@ static int str_read_packet(AVFormatContext *s,
|
||||
StrDemuxContext *str = s->priv_data;
|
||||
unsigned char sector[RAW_CD_SECTOR_SIZE];
|
||||
int channel;
|
||||
int packet_read = 0;
|
||||
int ret = 0;
|
||||
AVPacket *pkt;
|
||||
|
||||
while (!packet_read) {
|
||||
while (1) {
|
||||
|
||||
if (get_buffer(pb, sector, RAW_CD_SECTOR_SIZE) != RAW_CD_SECTOR_SIZE)
|
||||
return AVERROR(EIO);
|
||||
@ -340,8 +338,6 @@ printf (" dropping other sector\n");
|
||||
if (url_feof(pb))
|
||||
return AVERROR(EIO);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int str_read_close(AVFormatContext *s)
|
||||
|
Loading…
Reference in New Issue
Block a user