]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/electronicarts.c
mov fourccs for handling FCP files by (Baptiste COUDURIER )(baptiste.coudurier smartj...
[ffmpeg] / libavformat / electronicarts.c
index 7101652dc04ede6e837de97ed1e4c599d6db3609..df41bbba940e93ba6de380f6f98e0f25e507c204 100644 (file)
@@ -13,7 +13,7 @@
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
@@ -191,7 +191,7 @@ static int ea_read_header(AVFormatContext *s,
     st->codec->codec_type = CODEC_TYPE_VIDEO;
     st->codec->codec_id = CODEC_ID_EA_MJPEG;
     st->codec->codec_tag = 0;  /* no fourcc */
-#endif    
+#endif
 
     /* initialize the audio decoder stream */
     st = av_new_stream(s, 0);
@@ -243,7 +243,7 @@ static int ea_read_packet(AVFormatContext *s,
                     pkt->pts *= ea->audio_frame_counter;
                     pkt->pts /= EA_SAMPLE_RATE;
 
-                    /* 2 samples/byte, 1 or 2 samples per frame depending 
+                    /* 2 samples/byte, 1 or 2 samples per frame depending
                      * on stereo; chunk also has 12-byte header */
                     ea->audio_frame_counter += ((chunk_size - 12) * 2) /
                         ea->num_channels;