comparison sierravmd.c @ 1441:ad3b03b7b142 libavformat

reindentation, patch by From: Steve Lhomme, slhomme divxcorp com
author diego
date Wed, 01 Nov 2006 21:09:14 +0000
parents 0899bfe4105c
children deaec052eec4
comparison
equal deleted inserted replaced
1440:7687091df65e 1441:ad3b03b7b142
300 pkt->pts /= vmd->audio_channels; 300 pkt->pts /= vmd->audio_channels;
301 vmd->audio_sample_counter += vmd_calculate_audio_duration( 301 vmd->audio_sample_counter += vmd_calculate_audio_duration(
302 pkt->data, pkt->size, vmd->audio_block_align); 302 pkt->data, pkt->size, vmd->audio_block_align);
303 303
304 } 304 }
305 av_log(NULL, AV_LOG_INFO, " dispatching %s frame with %d bytes and pts %"PRId64" (%0.1f sec)\n", 305 av_log(NULL, AV_LOG_INFO, " dispatching %s frame with %d bytes and pts %"PRId64" (%0.1f sec)\n",
306 (frame->frame_record[0] == 0x02) ? "video" : "audio", 306 (frame->frame_record[0] == 0x02) ? "video" : "audio",
307 frame->frame_size + BYTES_PER_FRAME_RECORD, 307 frame->frame_size + BYTES_PER_FRAME_RECORD,
308 pkt->pts, (float)(pkt->pts / 90000.0)); 308 pkt->pts, (float)(pkt->pts / 90000.0));
309 309
310 vmd->current_frame++; 310 vmd->current_frame++;
311 311
312 return ret; 312 return ret;
313 } 313 }