1 /* readpic.c, read source pictures */
3 /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
6 * Disclaimer of Warranty
8 * These software programs are available to the user without any license fee or
9 * royalty on an "as is" basis. The MPEG Software Simulation Group disclaims
10 * any and all warranties, whether express, implied, or statuary, including any
11 * implied warranties or merchantability or of fitness for a particular
12 * purpose. In no event shall the copyright-holder be liable for any
13 * incidental, punitive, or consequential damages of any kind whatsoever
14 * arising from the use of these programs.
16 * This disclaimer of warranty extends to the user of these programs and user's
17 * customers, employees, agents, transferees, successors, and assigns.
19 * The MPEG Software Simulation Group does not represent or warrant that the
20 * programs furnished hereunder are free of infringement of any third-party
23 * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
24 * are subject to royalty fees to patent holders. Many of these patents are
25 * general enough such that they are unavoidable regardless of implementation
37 static void read_mpeg(long number, unsigned char *frame[])
41 // Normalize frame_rate
42 real_number = (long)((double)mpeg3_frame_rate(mpeg_file, 0) /
47 while(mpeg3_get_frame(mpeg_file, 0) <= real_number)
48 mpeg3_read_yuvframe(mpeg_file,
57 /* Terminate encoding after processing this frame */
58 if(mpeg3_end_of_video(mpeg_file, 0)) frames_scaled = 1;
61 static void read_stdin(long number, unsigned char *frame[])
63 int chroma_denominator = 1;
64 unsigned char data[5];
67 if(chroma_format == 1) chroma_denominator = 2;
69 fread(data, 4, 1, stdin_fd);
71 // Terminate encoding before processing this frame
72 if(data[0] == 0xff && data[1] == 0xff && data[2] == 0xff && data[3] == 0xff)
78 fread(frame[0], width * height, 1, stdin_fd);
79 fread(frame[1], width / 2 * height / chroma_denominator, 1, stdin_fd);
80 fread(frame[2], width / 2 * height / chroma_denominator, 1, stdin_fd);
83 static void read_buffers(long number, unsigned char *frame[])
85 int chroma_denominator = 1;
87 if(chroma_format == 1) chroma_denominator = 2;
89 pthread_mutex_lock(&input_lock);
94 pthread_mutex_unlock(©_lock);
95 pthread_mutex_unlock(&output_lock);
99 memcpy(frame[0], input_buffer_y, width * height);
100 memcpy(frame[1], input_buffer_u, width / 2 * height / chroma_denominator);
101 memcpy(frame[2], input_buffer_v, width / 2 * height / chroma_denominator);
102 pthread_mutex_unlock(©_lock);
103 pthread_mutex_unlock(&output_lock);
106 void readframe(int frame_num, uint8_t *frame[])
109 n = frame_num % (2 * READ_LOOK_AHEAD);
111 frame[0] = frame_buffers[n][0];
112 frame[1] = frame_buffers[n][1];
113 frame[2] = frame_buffers[n][2];
119 read_mpeg(frame_num, frame);
122 read_stdin(frame_num, frame);
125 read_buffers(frame_num, frame);