Displaying 2 results from an estimated 2 matches for "colorformat".
Did you mean:
color_format
2004 Nov 20
0
ffmpeg2theora start and end time support - patch
...printf("\nTime to break\n");
+ break;
+ }
+ }
ret = av_read_frame(this->context,&pkt);
if(ret<0){
e_o_s=1;
@@ -449,6 +467,9 @@
//FIXME: move image resize/deinterlace/colorformat transformation
// into seperate function
if(got_picture){
+ //For audio only files command line option"-e" will not work
+ //as we donot increment frame_number in...
2004 Nov 20
0
ffmpeg2theora start and end time support
...{
fprintf (stderr, "no frame available\n");
}
while(e_o_s || len > 0){
if(len >0 &&
(len1 = avcodec_decode_video(&vstream->codec,
frame,&got_picture, ptr, len))>0) {
//FIXME: move image resize/deinterlace/colorformat transformation
// into seperate function
if(got_picture){
frame_number++;
//For audio only files command line option "-e" will not work
//as we donot increment frame_number in audio section.
//FIXME: better colorformat transformation to YUV420P...